Guest User

Untitled

a guest
Oct 22nd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function ex_change_echo()
  2. if not tonumber(gmcp.Char.Vitals.nl) == lastXP then
  3. if tonumber(gmcp.Char.Vitals.nl) > lastXP then
  4. echo("\n"..
  5. tonumber(gmcp.Char.Vitals.nl) - lastXP .."experience gained!")
  6. else
  7. echo("\n"..lastXP - tonumber(gmcp.Char.Vitals.nl).."experience lost!")
  8. end
  9. end
  10. end
  11.  
  12.  
  13. lastXP = tonumber(gmcp.Char.Vitals.nl)
Add Comment
Please, Sign In to add comment