Quote:
Originally Posted by Grytolle
Let's go for the IRC-commandish way instead, so they can be used in game like (*presses "T"* /kill Chiyu "Server killed you, becasue he wanted to.").
|
Code:
trigger KEY_PRESS {
if(KEY_ID==116) {
$allow_respawn = true
Chiyu.kill($allow_respawn)
Chiyu.send("Server killed you, because he wanted to")
}
}
|