• 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 Globalevents no send and message on console. !help

samuel157

/root
Joined
Mar 19, 2010
Messages
447
Solutions
3
Reaction score
49
Location
São Paulo, Brazil
GitHub
Samuel10M
ERRO on Console:
Lua:
[19/04/2022 13:52:03] [Error - LuaScriptInterface::loadFile] data/globalevents/scripts/lembrei.lua:2: ']' expected near 'Uteis'
[19/04/2022 13:52:03] [Warning - Event::loadScript] Cannot load script (data/globalevents/scripts/lembrei.lua)
[19/04/2022 13:52:04] data/globalevents/scripts/lembrei.lua:2: ']' expected near 'Uteis'
Code:

Script:
Lua:
function onThink(interval, lastExecution)
local mensagens = {[Comandos Uteis] ---> !ricos, !rankfrags !bp, !bless, !autoloot, !go, !all, !eventos, !elfbot, !deathlist, !changesex e !whatsapp."}
function onThink(interval, lastExecution)
return doBroadcastMessage(mensagens[math.random(#mensagens)], MESSAGE_STATUS_CONSOLE_RED)
end
 
Solution
change
Lua:
local mensagens = {[Comandos Uteis] ---> !ricos, !rankfrags !bp, !bless, !autoloot, !go, !all, !eventos, !elfbot, !deathlist, !changesex e !whatsapp."}
to
Lua:
local mensagens = {"[Comandos Uteis] ---> !ricos, !rankfrags !bp, !bless, !autoloot, !go, !all, !eventos, !elfbot, !deathlist, !changesex e !whatsapp."}

and remove the extra onThink from line 1
Lua:
function onThink(interval, lastExecution)
change
Lua:
local mensagens = {[Comandos Uteis] ---> !ricos, !rankfrags !bp, !bless, !autoloot, !go, !all, !eventos, !elfbot, !deathlist, !changesex e !whatsapp."}
to
Lua:
local mensagens = {"[Comandos Uteis] ---> !ricos, !rankfrags !bp, !bless, !autoloot, !go, !all, !eventos, !elfbot, !deathlist, !changesex e !whatsapp."}

and remove the extra onThink from line 1
Lua:
function onThink(interval, lastExecution)
 
Solution

Similar threads

Back
Top