Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function onLogin(cid)
- if isPremium(cid) then
- setPlayerStorageValue(cid, 9898, 1)
- if (isInArray({5, 6, 7, 8}, getPlayerVocation(cid))) then
- doPlayerSetVocation(cid,getPlayerVocation(cid)+4)
- end
- elseif getPlayerStorageValue(cid, 9898) == 1 and not isPremium(cid) then
- if (isInArray({9, 10, 11, 12}, getPlayerVocation(cid))) then
- doPlayerSetVocation(cid,getPlayerVocation(cid)-4)
- end
- doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid)))
- doPlayerPopupFYI(cid, "Sua Premium Account acabou.")
- setPlayerStorageValue(cid, 9898, -1)
- end
- return true
- end
Add Comment
Please, Sign In to add comment