05-15-2010, 04:09 AM
The Game_Variables class is the class that holds your variables, much like Game_Switches is for the switches...
print $game_variables[3]
Would print the value of the 3rd variable (0003).
So I guess...
Where you know the variable id (var_id)
print $game_variables[3]
Would print the value of the 3rd variable (0003).
So I guess...
Code:
self.contents.draw_text(540,0,120,32,$game_variables[var_id])