Advertisement
AngryPacman

Thing.

Dec 11th, 2011
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.29 KB | None | 0 0
  1. def draw_actor_level(actor, x, y)
  2.   return if EXEMPT_LEVEL_EXP.include?(actor.id)
  3.   self.contents.font.color = system_color
  4.   self.contents.draw_text(x, y, 32, WLH, Vocab::level_a)
  5.   self.contents.font.color = normal_color
  6.   self.contents.draw_text(x + 32, y, 24, WLH, actor.level, 2)
  7. end
  8.  
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement