function commitSuicide ( sourcePlayer )
-- kill the player and make him responsible for it
killPed ( sourcePlayer, sourcePlayer )
-- shows the kill msg
outputChatBox (theTarget .. "has suicided.", getRootElement(), 255, 255, 255, true )
end
-- attach our handler to the "kill" command
addCommandHandler ( "kill", commitSuicide )
is this right to show the output chatbox of the person who has used the command?