Advertisement
RoksasNunes

Scriptsay

Apr 21st, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. local cfg = {
  2.     time = 30, -- Minutes to say
  3.     text = "Nossa este servidor eh massa!",
  4. }
  5.  
  6. function onLogin(cid)
  7.  
  8.     if isPlayer(cid) then
  9.         addEvent(doCreatureSay, cfg.time*60*1000, cfg.text, TALKTYPE_YELL)
  10.     end
  11.         return true
  12.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement