nominations_extended: fixed nominate_addmap menu ExtraCommands: fixed "no matching client was found" message AdvancedTargeting: fixed missing MarkNativeAsOptional in include
27 lines
532 B
SourcePawn
27 lines
532 B
SourcePawn
#if defined _AdvancedTargeting_Included
|
|
#endinput
|
|
#endif
|
|
#define _AdvancedTargeting_Included
|
|
|
|
native int IsClientFriend(int client, int friend);
|
|
native int ReadClientFriends(int client);
|
|
|
|
public SharedPlugin:__pl_AdvancedTargeting =
|
|
{
|
|
name = "AdvancedTargeting",
|
|
file = "AdvancedTargeting.smx",
|
|
#if defined REQUIRE_PLUGIN
|
|
required = 1,
|
|
#else
|
|
required = 0,
|
|
#endif
|
|
};
|
|
|
|
#if !defined REQUIRE_PLUGIN
|
|
public __pl_myfile_SetNTVOptional()
|
|
{
|
|
MarkNativeAsOptional("IsClientFriend");
|
|
MarkNativeAsOptional("ReadClientFriends");
|
|
}
|
|
#endif
|