Felipinho

Untitled

Mar 3rd, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. local msg = {
  3.     msg1 = "Parabens, voce obteve double exp!.",
  4.     msg2 = "Desculpe, voce nao obteve double exp!."
  5. }
  6. local rates = 2
  7. -- End Configs --
  8. function onUse(cid, item, frompos, item2, topos)
  9. if isPremium(cid) and doPlayerRemoveMoney(cid, 2000) == TRUE then
  10.     doPlayerSetMagicRate(cid, rates * 60)
  11.     doPlayerPopupFYI(cid, msg.msg1)
  12.     end
  13. else
  14.     doPlayerPopupFYI(cid, msg.msg2)
  15.   end
  16. return TRUE
  17. end
Advertisement
Add Comment
Please, Sign In to add comment