JMAP
Jun 17 2011, 04:26 PM
Is there a way to (in the text box) display the amount of a variable? I've worked out a system where I'm using various variables as levels for certain skills and I'd like to be able to. For example I want to be able to type out "Your fishing level is ___" and have the blank be whatever I set the variable to at the time. Thanks.
Amy Pond
Jun 18 2011, 12:19 AM
In a message:
\v[1]
Where "1" is the number of the variable.
For example, "Hello, your fishing level is \v[1]."
In a script string:
"string string string #{$game_variables[1]} string string"
Where "1" is the number of the variable.