summaryrefslogtreecommitdiff
path: root/sourcemod/scripting/include/gokz/chat.inc
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/include/gokz/chat.inc
parent341db13a008dc12bb22ceb50452d93d01476308c (diff)
move source stuff to its own folder
Diffstat (limited to 'sourcemod/scripting/include/gokz/chat.inc')
-rw-r--r--sourcemod/scripting/include/gokz/chat.inc45
1 files changed, 0 insertions, 45 deletions
diff --git a/sourcemod/scripting/include/gokz/chat.inc b/sourcemod/scripting/include/gokz/chat.inc
deleted file mode 100644
index 0264a57..0000000
--- a/sourcemod/scripting/include/gokz/chat.inc
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- gokz-chat Plugin Include
-
- Website: https://bitbucket.org/kztimerglobalteam/gokz
-*/
-
-#if defined _gokz_chat_included_
-#endinput
-#endif
-#define _gokz_chat_included_
-
-
-
-// =====[ NATIVES ]=====
-
-/**
- * Gets whether a mode is loaded.
- *
- * @param client Client.
- * @param tag Tag to prepend to the player name in chat.
- * @param color Color to use for the tag.
- */
-native void GOKZ_CH_SetChatTag(int client, const char[] tag, const char[] color);
-
-
-
-// =====[ DEPENDENCY ]=====
-
-public SharedPlugin __pl_gokz_chat =
-{
- name = "gokz-chat",
- file = "gokz-chat.smx",
- #if defined REQUIRE_PLUGIN
- required = 1,
- #else
- required = 0,
- #endif
-};
-
-#if !defined REQUIRE_PLUGIN
-public void __pl_gokz_chat_SetNTVOptional()
-{
- MarkNativeAsOptional("GOKZ_CH_SetChatTag");
-}
-#endif \ No newline at end of file