Tony_PlySon

[Talkaction] Like System (Facebook)

Apr 19th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function onSay(cid, param)
  2. pid = getPlayerByName(param)
  3.  
  4. if getPlayerStorageValue(cid, 16612) < os.time() then
  5. doPlayerSendCancel(cid, "Voce nao pode curtir agora.")
  6. return true
  7. end
  8.  
  9. if not pid then
  10. doPlayerSendCancel(cid, "Esse jogador nao existe ou nao está online.")
  11. return true
  12. end
  13.  
  14. setPlayerStorageValue(cid, 16612, os.time() + 1000 * 60 * 60)
  15. doPlayerSendTextMessage(pid, cid.." curtiu o seu feito.")
  16. return true
  17. end
Advertisement
Add Comment
Please, Sign In to add comment