Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

JordonFadesBack

3
Posts
1
Followers
A member registered Nov 30, 2020

Recent community posts

Oh that makes sense. Thanks again for making this, it's an awesome engine!

Thank you very much for the reply, I really appreciate it. Hey what generation of Pokemon would this be like, Gen 2?

Hey, can I ask what you changed inside of  tsprintf, for  your 2.3x fix please?   I had to import an older version in.  This is what I currently have, thank you: 

///tsprintf(format,...)

function tsprintf() {

//Trivial String Print Format

//Replaces each % percent sign with an argument, then returns the string.

//Inteded to make writing debug printouts less painful.

var c;

for(c = 1;c < argument_count;c++){

    argument[0] = string_replace(argument[0],"%",string(argument[c]));

}

return argument[0];

}