Plutonium-T6-Scripts/chat_commands/mp/chat_command_suicide.gsc
2023-03-24 14:55:51 +01:00

15 lines
207 B
Plaintext

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