• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Broadcasting !!

emzee

New Member
Joined
Jun 23, 2011
Messages
42
Reaction score
0
i would like to make a script that broadcasts a fixed message ex.an advertisement every fixed interval of time .. displayed in that white text or red text just like the raids messages !! how can i do that ?! and what if i want to change the color of that script ?! :) thank u for ur time :)
 
Code:
function repeatingBroadcastMessage(text, class, seconds)
   broadcastMessage(text, class)
   return addEvent(repeatingBroadcastMessage, seconds, text, class, seconds)
end

to use it, just call this function anywhere and pass the params to it :)

Rep+ if helped :D
 
Back
Top