Guest User

Untitled

a guest
Feb 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. function onUse(cid, item, fromPosition, itemEx, toPosition)
  2.     if isPlayer(cid) then
  3.         if math.min(365) then
  4.             doPlayerAddVipDays(cid, 30)
  5.             doSendMagicEffect(getThingPos(cid), CONST_ME_FIREWORKS_RED)
  6.             doPlayerSendTextMessage(cid, STATUS_CONSOLE_BLUE, "30 VIP days have added to your account.")
  7.             doRemoveItem(cid, item.uid)
  8.         else
  9.             doPlayerSendTextMessage(cid, STATUS_CONSOLE_BLUE, "You may only have 1 year of VIP access in total!")
  10.             doSendMagicEffect(getThingPos(cid), CONST_ME_POOF)
  11.         end
  12.     end
  13.     return true
  14. end
Add Comment
Please, Sign In to add comment