Plutonium-IW5-Scripts/chat_commands/chat_command_suicide.gsc
2023-06-17 11:10:02 +02:00

15 lines
218 B
Plaintext

#include scripts\chat_commands;
Init()
{
CreateCommand(level.chat_commands["ports"], "suicide", "function", ::SuicideCommand, 1, [], ["s"]);
}
/* Command section */
SuicideCommand(args)
{
self Suicide();
}