• 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 Command /bc, and globalevents broadcast script do not WORK !

Nothing, also i got problem with command /bc because it dosnt show the first text, i have to write this so the text will be displayed example : /bc test, Hello players next 2 hours, double exp !



Also thats my script:


PHP:
local messages = {
    "Write !buylist for the list of buyable items with killpoints!",
    "Use !buy to buy an item with killpoints!",
    "Use !killpoints to see how many kills you've got."
}

local i = 0
function onThink(interval, lastExecution)
    local message = messages[(i % #messages) + 1]
    doBroadcastMessage("Information: " .. message,22)
    i = i + 1
    return TRUE
end
 
Why not just use /b? Read the documentation for proper usage of the /bc command. I believe toy cant use a ',' because it is a separator.
 
Back
Top