Page 1 of 1

A Few Questions

PostPosted: Thu Sep 30, 2010 11:19 pm
by kesigon
Can you make an individual character level up separate from the 2-D stages? Can characters learn special abilities? and can characters change classes?

Re: A Few Questions

PostPosted: Fri Oct 01, 2010 1:13 am
by DST
they can do anything you want them to. All the questions you asked are simply VARIABLES.

Use the 'variables' tab in any script editor window to create a new one.

level=1;

level++;

char class[32]="rogue";

class="cleric";

Variables are whatever you tell them to be.

health=10+(level*10);

Re: A Few Questions

PostPosted: Fri Oct 01, 2010 1:34 am
by kesigon
Thanks. I'm really knew to this. I'm not making the game per say. I'm writing it and my friend is making it. I'll the info on. Thank you very much!