beeki

Vocações VIP

May 28th, 2012
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.56 KB | None | 0 0
  1. function onLogin(cid)
  2. if isPremium(cid) then
  3. setPlayerStorageValue(cid, 9898, 1)
  4. if (isInArray({5, 6, 7, 8}, getPlayerVocation(cid))) then
  5. doPlayerSetVocation(cid,getPlayerVocation(cid)+4)
  6. end
  7. elseif getPlayerStorageValue(cid, 9898) == 1 and not isPremium(cid) then
  8. if (isInArray({9, 10, 11, 12}, getPlayerVocation(cid))) then
  9. doPlayerSetVocation(cid,getPlayerVocation(cid)-4)
  10. end
  11. doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid)))
  12. doPlayerPopupFYI(cid, "Sua Premium Account acabou.")
  13. setPlayerStorageValue(cid, 9898, -1)
  14. end
  15. return true
  16. end
Add Comment
Please, Sign In to add comment