11aefe731b
Fixed bunch of includes and a warnings Added ip addresses for admins to status KnifeAlert prints to everyone now if someone gets infected due to a knifed zombie Fixed WeaponCleaner not registering weapons if somebody disconnects Refactored custom-chatcolors to new syntax, added autoreplace and some fixes Added GFLClan.ru support to immunityreservedslots added nominate_removemap to mapchooser_extended and fixed a bug for recently played maps
31 lines
673 B
SourcePawn
31 lines
673 B
SourcePawn
#if defined _GFLClanru_Included
|
|
#endinput
|
|
#endif
|
|
#define _GFLClanru_Included
|
|
|
|
typeset AsyncHasSteamIDReservedSlotCallbackFunc
|
|
{
|
|
function void (const char[] sSteam32ID, int Result);
|
|
function void (const char[] sSteam32ID, int Result, any Data);
|
|
};
|
|
|
|
native void AsyncHasSteamIDReservedSlot(const char[] sSteam32ID, AsyncHasSteamIDReservedSlotCallbackFunc Callback, any Data = 0);
|
|
|
|
public SharedPlugin __pl_GFLClanru =
|
|
{
|
|
name = "GFLClanru",
|
|
file = "GFLClanru.smx",
|
|
#if defined REQUIRE_PLUGIN
|
|
required = 1,
|
|
#else
|
|
required = 0,
|
|
#endif
|
|
};
|
|
|
|
#if !defined REQUIRE_PLUGIN
|
|
public __pl_GFLClanru_SetNTVOptional()
|
|
{
|
|
MarkNativeAsOptional("AsyncHasSteamIDReservedSlot");
|
|
}
|
|
#endif
|