mirror of
https://github.com/Resxt/Plutonium-IW5-Scripts.git
synced 2025-04-19 20:52:54 +00:00
Added permission level to CreateCommand following chat_commands 1.3.0 update [Refactor] changed level scoped ports variable following chat_commands 1.3.0 update
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();
|
|
} |