Advertisement
alamiku

World

Sep 28th, 2011
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. function World_AutoAnnounce()
  2. RandomAnnounce=math.random(1,5) -- Change it if you gonna add more.
  3. if RandomAnnounce==1 then
  4. SendWorldMessage("|cff00ccff Welcome To Your Server 5", 2) -- Add your message here. 2 is Chatbox, if you want WideScreen, use 1.
  5. end
  6. if RandomAnnounce==2 then
  7. SendWorldMessage("|cff00ccff + your message ", 2) -- Add your message here. 2 is Chatbox, if you want WideScreen, use 1.
  8. end
  9. if RandomAnnounce==3 then
  10. SendWorldMessage("|cff00ccff + your message ", 2)
  11. end
  12. if RandomAnnounce==4 then
  13. SendWorldMessage("|cff00ccff + your message", 2)
  14. end
  15. if RandomAnnounce==5 then
  16. SendWorldMessage("|cff00ccff + your message", 2)
  17. end
  18. end
  19.  
  20. RegisterTimedEvent("World_AutoAnnounce", 120000, 0) -- 60000 means 1 minute, it's in miliseconds. You can change it
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement