Posted by Spyder 208.240.196.133 using Mozilla/4.0 (compatible; MSIE 5.0; Windows 95; DigExt) on March 11, 2000 at 11:48:09:
In Reply to: RPGCODE posted by ???? on March 11, 2000 at 06:49:17:
Have you read the RPGCode Command Reference in the Help section of the Toolkit? If not, I highly recommend it. It will tell you what every command does. One of the commands is #Method which will let you create your own commands.
To double a characters strength.
Lets say the characters name is Hal.
#Hal[fight]!=Hal[fight]!*2 (takes Hal's FP and multiplies it by 2)
To create a program that does this.
#Method DoubleFP(Hal[fight]!)
{
#Hal[fight]!=Hal[fight]!*2
}
To see some more RPGCode including custom commands, download my Menu program at my website.