Hey guys, I just wanted to know if there was a way to show a variable in a hud through Script...?
self.contents.draw_text(384, 16, 120, 32, $game_variables[0012])
That code doesn't work, so help would be very good. :)
2 mistakes. It should be
self.contents.draw_text(384, 16, 120, 32, $game_variables[12].to_s)
.to_s converts values into strings.
And leading zeroes can cause bugs.
Thnaks for that, works great! :)