- Joined
- Dec 24, 2014
- Messages
- 133
- Reaction score
- 1
- First Language
- English
- Primarily Uses
Do I keep them in <= or should it be >=?reverse the order (highest rank upgrades first) and exit event processing after the first successfull upgrade to prevent the other, lower upgrades.
Ok so create a custom script and essentially create an array that stores all the strings. How do you call that variable using the default message editor?Variables only store numbers. But you can use them to access Strings defined in RGSS. So for example:
module TEST TEXT = [ "abc", "def", "ghi" ]end TEST::TEXT[$game_variables[1]]would give you the nth value of TEST::TEXT, where n is defined in variable #1.
Note that the first element has the index 0, not 1.
I don't understand what you're saying here.To input a string in the default "Control Variables" command, you just need to type
"string"into the script operand (where the word string is the text you want). Then you just call the variable as usual.
