Hello guys,
I typed in “Learning Javascript Forum” and this what I came up with. Hopefully I’m in the right place.
I have some questions from an absolute beginner. I’ve tried to read some books but they tend to get too complex too quick and I get lost very early on.
I’m working on making my own game. I’m an artist so programming doesn’t come easy to me.
I need to use JavaScript in order for my character to move a certain way. I want my character to move like a chess piece. The character moves from one tile to another basically, a 48*48 pixel tile.
So I need to use a script call in order to do this as it’s not supported in the software I’m using. I have found a list of all possible script call here:
So here’s my question. Where do all of those script calls come from? I mean, for instance you have:
<!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}-->choices = []; params = [];
$gameMessage.setChoices(choices, 0)
choices.push("I love you1");choices.push("I love you2");
choices.push("I love you3");choices.push("I love you4");
choices.push("I love you5");choices.push("I love you6");
choices.push("I love you7");choices.push("I love you8");
params.push()
Where does $gameMessage come from? Are they built-in the engine?
I don’t understand where all of those functions come from. Could someone explain it to me please?
Thank you for reading!