• 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 8.60 TALKACTIONS SEND MESSAGE ON BROADCAST AND CONSOLE GREEN HELP

samuel157

/root
Joined
Mar 19, 2010
Messages
447
Solutions
3
Reaction score
49
Location
São Paulo, Brazil
GitHub
Samuel10M
8.60 TALKACTIONS SEND MESSAGE ON BROADCAST AND CONSOLE GREEN HELP

Lua:
function onSay(cid, words, param, channel)
    if(param == "") then
        return doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Please type a message for broadcast.") and true
    end
    if not (exhaustion.check(cid, 1000)) then
        exhaustion.set(cid, 1000, 60)
        broadcastMessage("[/all] --> "..getPlayerName(cid) .." [".. getPlayerLevel(cid) .. "]: " .. param, MESSAGE_STATUS_SMALL, 20)
    else
        doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Please wait "..exhaustion.get(cid, 1000).." second"..(exhaustion.get(cid, 1000) > 1 and "s" or "").." to broadcast again.")
    end
    return true
end
 
Solution
change line 7 to this
Lua:
broadcastMessage("[/all] --> " ..getCreatureName(cid) .. " [" .. getPlayerLevel(cid) .. "]: " .. param, 25)
change line 7 to this
Lua:
broadcastMessage("[/all] --> " ..getCreatureName(cid) .. " [" .. getPlayerLevel(cid) .. "]: " .. param, 25)
 
Solution
Back
Top