Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. function createscoreBox()
  2. createMiniConsole("scorebox",155,795,350,170)
  3. setBackgroundColor("scorebox",0,0,0,0)
  4. setFgColor("scorebox",255,255,0);
  5. setWindowWrap("scorebox", scorePluginWordWrap)
  6. setMiniConsoleFontSize("scorebox", scorePluginFontSize)
  7. moveWindow("scorebox", scorePluginMove_X,scorePluginMove_Y)
  8. resizeWindow("scorebox", scorePluginSize_X,scorePluginSize_Y)
  9. end
  10.  
  11. function updateScoreBox()
  12. clearWindow("scorebox")
  13. cecho("scorebox", " <white>"..gmcp.Char.Status.name.." ")
  14. cecho("scorebox", "<white>"..gmcp.Char.Status.level.." ")
  15. cecho("scorebox", "<white>Race:<gold>"..gmcp.Char.Status.race.." ")
  16. cecho("scorebox", "<white>Class:<gold>"..gmcp.Char.Status.class.." ")
  17. cecho("scorebox", "<white>Gold:<gold>"..gmcp.Char.Status.gold.." ")
  18. cecho("scorebox", "<white>Unbound Credits:<gold>"..gmcp.Char.Status.unboundcredits.." ")
  19. cecho("scorebox", "<white>Bound Credits:<gold>"..gmcp.Char.Status.boundcredits.." ")
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement