mirror of
https://github.com/Resxt/Plutonium-T6-Scripts.git
synced 2025-04-19 13:42:54 +00:00
15 lines
207 B
Plaintext
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();
|
|
} |