Advertisement
Guest User

Untitled

a guest
Mar 8th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. if getPlayerGroupId(cid) >= 3 and isPlayer(cid) then
  2. local tempo = 0.3 --- de quanto em quanto segundos ele solta o efeito
  3. function loop (cid)
  4. local thalles = getCreaturePosition(cid) -- Thalles é a variável.
  5. doSendAnimatedText(thalles, "coloca o texto aqui", 215)
  6. addEvent(function()
  7. if isCreature(cid) then
  8. loop(cid)
  9. end
  10. end, 1000 * tempo)
  11. return true
  12. end
  13. loop(cid)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement