• 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!

Global message?

Backer

New Member
Joined
May 18, 2010
Messages
83
Reaction score
3
Location
okey
I need a script to get a global mesagge 10 min like "to see highschores, tip !highscores bla bla bla ". Can you guys give me?
 
Lua:
local message = {
    "to see highschores, tip !highscores bla bla bla",
    }
local i = 0
function onThink(interval, lastExecution)
local message = message[(i % #message) + 1]
    doBroadcastMessage("Information: " .. message .. "", MESSAGE_STATUS_CONSOLE_ORANGE)
    i = i + 1
    return TRUE
end

globalevents.xml
XML:
<globalevent name="brodcast" interval="TIME" event="script" value="brodcast.lua"/>
interval="TIME" is time to brodcast
 
Back
Top