A2S: Zuff's allmighty OCD fixing.

This commit is contained in:
zaCade
2019-06-13 14:43:07 +02:00
parent f166ca9f6c
commit 8c808be870
3 changed files with 78 additions and 29 deletions
+37
View File
@@ -0,0 +1,37 @@
#if defined _A2SFixes_included
#endinput
#endif
#define _A2SFixes_included
/**
* Check if clients usertype is legit.
*
* @param count The amount of fakes to set.
*
* @return Always true.
*/
native bool A2S_SetFakePlayerCount(int count);
public Extension __ext_A2SFixes =
{
name = "A2SFixes",
file = "A2SFixes.ext",
#if defined AUTOLOAD_EXTENSIONS
autoload = 1,
#else
autoload = 0,
#endif
#if defined REQUIRE_EXTENSIONS
required = 1,
#else
required = 0,
#endif
};
#if !defined REQUIRE_EXTENSIONS
public __ext_A2SFixes_SetNTVOptional()
{
MarkNativeAsOptional("A2S_SetFakePlayerCount");
}
#endif