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

Lua BroadCast MSG HELP

Mystic Mapper

Dev++Unzialish BETA
Joined
Mar 6, 2010
Messages
333
Reaction score
4
Location
Earth
Hello.I want an broadcast message,that will say text in TALKTYPE_RED,and later,it will be told again,and again...For some time..
 
/talkactions/scripts/autobroadcast.lua

Lua:
local text = {
        [1] = "text here",
        [2] = "text here",
        }
function onThink(interval, lastExecution)
doBroadcastMessage("Your text: "..text[math.random(1,2)])
        return TRUE
end

/talkactions/talkactions.xml

Lua:
<talkaction words="/start broadcast" event="script" value="autobroadcast.lua"/>

interval = Time
60 = 1 minute
 
Last edited:
In globalevents...

XML:
 <globalevent name="message" interval="60000" event="script" value="message.lua"/>


Message.lua
Lua:
function onThink(interval)
	doBroadcastMessage("LA LA LA LA LA ! _ARTHUR IS BEST ! ! !")
	return true
end
 
LOL


[06/11/2010 18:26:21] [Error - GlobalEvent Interface]
[06/11/2010 18:26:21] data/globalevents/scripts/autobroadcast.lua:eek:nThink
[06/11/2010 18:26:21] Description:
[06/11/2010 18:26:21] data/globalevents/scripts/autobroadcast.lua:8: wrong number of arguments
[06/11/2010 18:26:21] stack traceback:
[06/11/2010 18:26:21] [C]: in function 'random'
[06/11/2010 18:26:21] data/globalevents/scripts/autobroadcast.lua:8: in function <data/globalevents/scripts/autobroadcast.lua:7>
[06/11/2010 18:26:21] [Error - GlobalEvents::think] Couldn't execute event: reklama
 
LOL


[06/11/2010 18:26:21] [Error - GlobalEvent Interface]
[06/11/2010 18:26:21] data/globalevents/scripts/autobroadcast.lua:eek:nThink
[06/11/2010 18:26:21] Description:
[06/11/2010 18:26:21] data/globalevents/scripts/autobroadcast.lua:8: wrong number of arguments
[06/11/2010 18:26:21] stack traceback:
[06/11/2010 18:26:21] [C]: in function 'random'
[06/11/2010 18:26:21] data/globalevents/scripts/autobroadcast.lua:8: in function <data/globalevents/scripts/autobroadcast.lua:7>
[06/11/2010 18:26:21] [Error - GlobalEvents::think] Couldn't execute event: reklama

LOL. use mine? XDD
 
Back
Top