Talk:Making an RPG with AGS

From Adventure Game Studio | Wiki
Revision as of 18:37, 3 December 2005 by Gord10 (talk | contribs)
Jump to navigation Jump to search
''GiveScore(7); //Health. You can also use GlobalInt for this.''

''SetGlobalInt(2,8); //Mana''<br>

''SetGlobalInt(3,0); //Exp-weapons.''

could be:

 GiveScore(7); //Health. You can also use GlobalInt for this.
 SetGlobalInt(2,8); //Mana
 SetGlobalInt(3,0); //Exp-weapons.

so it'd look like:

GiveScore(7); //Health. You can also use GlobalInt for this.
SetGlobalInt(2,8); //Mana
SetGlobalInt(3,0); //Exp-weapons.

Yeah, you are right. This is the first time I create an article on Wiki; so I didn't know about that.