Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function onSay(cid, words, param, channel)
  2. local moeda = {id = 6527, gnt = 4 } --- moeda de compra
  3. local outfit = {id = 13088, gnt = 1} -- storage e quantidade
  4.  
  5. if doPlayerRemoveItem(cid,moeda.id,moeda.gnt) then
  6. setPlayerStorageValue(cid, outfit.id, outfit.qnt)
  7. doPlayerSendTextMessage(cid,4, "[LOJA]: Você comprou uma Outfit!.") -- edita aqui
  8.  
  9. else
  10. doPlayerSendTextMessage(cid,4, "[LOJA]: Você precisa de 4 moedas vip para comprar esse item.")
  11.  
  12. end
  13. return TRUE
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement