chat_command_suicide 1.0.0

This commit is contained in:
Resxt
2023-02-16 03:46:11 +01:00
parent 113424553d
commit f1d6ce7c20
2 changed files with 22 additions and 0 deletions

View File

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