Plutonium-IW5-Scripts/chat_commands/chat_command_suicide.gsc
2023-02-16 03:46:11 +01:00

15 lines
194 B
Plaintext

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