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

kill boardcast

matti450

Member
Joined
Apr 13, 2008
Messages
507
Reaction score
24
Hello im looking for a pvp boardcast to my pvp E server, when someone kill another it will type in red
 
Creaturescripts, TFS 1.0+
PHP:
function onKill(cid, target)
    local targetPlayer = Player(target)
    if not targetPlayer then
        return true
    end

    local player = Player(cid)
    if not player then
        return true
    end
    Game.broadcastMessage(player:getName() .. " has killed " .. targetPlayer:getName() .. ".", MESSAGE_STATUS_WARNING)
    return true
end
 
Back
Top