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

GlobalEvent Auto Broadcaster Script!

Oldschool'er

Tibia since 1998'
Joined
Dec 14, 2010
Messages
2,201
Reaction score
148
Location
United States
I take no credit for this script, Only adding onto here for refresh!


This script goe's in Data/Globelevents/Name of Script File.lua
Code:
local messages = {
	"Type message here!",
}

local i = 0
function onThink(interval, lastExecution)
local message = messages[(i % #messages) + 1]
    doBroadcastMessage("Information: " .. message .. "", MESSAGE_STATUS_CONSOLE_ORANGE)
    i = i + 1
    return TRUE
end

Data/Globalevents/Script's/Name of Script File.lua
Code:
<globalevent name="effecttile" interval="3" script="effectile.lua"/>

i take 0% CREDIT
 
how to add more mensages & how to add mensages like
Hello
How
Are
You? (more lines per mensage)
 
how to add more mensages & how to add mensages like
Hello
How
Are
You? (more lines per mensage)

Code:
local messages = {
	"Hello",
        "How",
        "Are",   
        "You",
}

local i = 0
function onThink(interval, lastExecution)
local message = messages[(i % #messages) + 1]
    doBroadcastMessage("Information: " .. message .. "", MESSAGE_STATUS_CONSOLE_ORANGE)
    i = i + 1
    return TRUE
end
 
More proper version :>
Lua:
local messages = {
	"Hello",
        "How",
        "Are",
        "You"
}

local i = 0
function onThink(interval, lastExecution)
local message = messages[(i % #messages) + 1]
    doBroadcastMessage("Information: " .. message .. "", MESSAGE_STATUS_CONSOLE_ORANGE)
    i = i + 1
    return TRUE
end
 
More proper version :>
Lua:
local messages = {
	"Hello",
        "How",
        "Are",
        "You"
}

local i = 0
function onThink(interval, lastExecution)
local message = messages[(i % #messages) + 1]
    doBroadcastMessage("Information: " .. message .. "", MESSAGE_STATUS_CONSOLE_ORANGE)
    i = i + 1
    return TRUE
end

My ot had just one line.. and for some reason I couldn't figure out that a table was needed. Lol.
Stupid me.
 
Back
Top