self.contents.clear
self.contents.draw_text(0, 0, contents.width, 32, $game_variables[variable_id])
self.contents.draw_text(0, 32, contents.width, 32, $game_variables[variable_id])
$game_variables[variable_id] = 'This is line 1 of your text'
$game_variables[variable_id] = 'This is line 2 of your text'
self.contents.clear
self.contents.draw_text(0, 0, contents.width, 32, 'Variable 2:')
self.contents.draw_text(0, 0, contents.width, 32, $game_variables[2].to_s, 2)
self.contents.draw_text(0, 32, contents.width, 32, 'Variable 3:')
self.contents.draw_text(0, 32, contents.width, 32, $game_variables[3].to_s, 2)