ikos Member 87 Aug 25, 2008 #1 Or kind of... converting \v[999] into rgss2? I want to take in in game variable and place in in my menu, any suggestions? :\
Or kind of... converting \v[999] into rgss2? I want to take in in game variable and place in in my menu, any suggestions? :\
e Sponsor 405 Aug 25, 2008 #2 Game variables are accessed through the global object: Code: $game_variables They're accessed as an array, such as: Code: v = $game_variables[0] v999 = $game_variables[999] And so forth. I think the maximum number of variables stored in the Array is 5000 (at least in RMVX). Upvote 0 Downvote
Game variables are accessed through the global object: Code: $game_variables They're accessed as an array, such as: Code: v = $game_variables[0] v999 = $game_variables[999] And so forth. I think the maximum number of variables stored in the Array is 5000 (at least in RMVX).