mirror of
https://github.com/Resxt/Plutonium-IW5-Scripts.git
synced 2025-04-20 21:15:43 +00:00
15 lines
218 B
Plaintext
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();
|
|
} |