diff --git a/plugins/l4d2_extraplayeritems.smx b/plugins/l4d2_extraplayeritems.smx index 6a67ceb..c90dfe3 100644 Binary files a/plugins/l4d2_extraplayeritems.smx and b/plugins/l4d2_extraplayeritems.smx differ diff --git a/scripting/l4d2_extraplayeritems.sp b/scripting/l4d2_extraplayeritems.sp index 7710ed1..e85fbb5 100644 --- a/scripting/l4d2_extraplayeritems.sp +++ b/scripting/l4d2_extraplayeritems.sp @@ -13,7 +13,7 @@ #pragma semicolon 1 #pragma newdecls required -#define DEBUG 0 +//#define DEBUG 0 #define PLUGIN_VERSION "1.0" #define MAX_ENTITY_LIMIT 2000 @@ -110,10 +110,6 @@ public void OnPluginStart() { } -public Action Event_Debug(Event event, const char[] name, bool dontBroadcast) { - PrintToChatAll("EVENT | %s", name); -} - ///////////////////////////////////// /// COMMANDS //////////////////////////////////// @@ -559,13 +555,6 @@ stock bool UseExtraKit(int client) { return false; } -stock void GiveKit(int client) { - int flags = GetCommandFlags("give"); - SetCommandFlags("give", flags & ~FCVAR_CHEAT); - FakeClientCommand(client, "give first_aid_kit"); - SetCommandFlags("give", flags); -} - stock void PrintDebug(const char[] format, any ... ) { char buffer[256]; VFormat(buffer, sizeof(buffer), format, 2);