summaryrefslogtreecommitdiff
path: root/sourcemod/scripting/gokz-racing/commands.sp
diff options
context:
space:
mode:
authoraura <nw@moneybot.cc>2026-02-17 23:42:09 +0100
committeraura <nw@moneybot.cc>2026-02-17 23:42:09 +0100
commit5e2eb7d67ae933b7566f1944d0bb7744da03d586 (patch)
tree054acff1113270a9cd07933df760f3768c1b6853 /sourcemod/scripting/gokz-racing/commands.sp
parent341db13a008dc12bb22ceb50452d93d01476308c (diff)
move source stuff to its own folder
Diffstat (limited to 'sourcemod/scripting/gokz-racing/commands.sp')
-rw-r--r--sourcemod/scripting/gokz-racing/commands.sp47
1 files changed, 0 insertions, 47 deletions
diff --git a/sourcemod/scripting/gokz-racing/commands.sp b/sourcemod/scripting/gokz-racing/commands.sp
deleted file mode 100644
index 9fbd7ab..0000000
--- a/sourcemod/scripting/gokz-racing/commands.sp
+++ /dev/null
@@ -1,47 +0,0 @@
-void RegisterCommands()
-{
- RegConsoleCmd("sm_accept", CommandAccept, "[KZ] Accept an incoming race request.");
- RegConsoleCmd("sm_decline", CommandDecline, "[KZ] Decline an incoming race request.");
- RegConsoleCmd("sm_surrender", CommandSurrender, "[KZ] Surrender your race.");
- RegConsoleCmd("sm_duel", CommandDuel, "[KZ] Open the duel menu.");
- RegConsoleCmd("sm_challenge", CommandDuel, "[KZ] Open the duel menu.");
- RegConsoleCmd("sm_abort", CommandAbort, "[KZ] Abort the race you are hosting.");
-
- RegAdminCmd("sm_race", CommandRace, ADMFLAG_RESERVATION, "[KZ] Open the race hosting menu.");
-}
-
-public Action CommandAccept(int client, int args)
-{
- AcceptRequest(client);
- return Plugin_Handled;
-}
-
-public Action CommandDecline(int client, int args)
-{
- DeclineRequest(client);
- return Plugin_Handled;
-}
-
-public Action CommandSurrender(int client, int args)
-{
- SurrenderRacer(client);
- return Plugin_Handled;
-}
-
-public Action CommandDuel(int client, int args)
-{
- DisplayDuelMenu(client);
- return Plugin_Handled;
-}
-
-public Action CommandAbort(int client, int args)
-{
- AbortHostedRace(client);
- return Plugin_Handled;
-}
-
-public Action CommandRace(int client, int args)
-{
- DisplayRaceMenu(client);
- return Plugin_Handled;
-} \ No newline at end of file