2016-01-06 02:11:56 +01:00
|
|
|
#if defined _AdvancedTargeting_Included
|
|
|
|
#endinput
|
|
|
|
#endif
|
|
|
|
#define _AdvancedTargeting_Included
|
|
|
|
|
|
|
|
native int IsClientFriend(int client, int friend);
|
|
|
|
native int ReadClientFriends(int client);
|
|
|
|
|
2016-04-26 12:36:03 +02:00
|
|
|
public SharedPlugin __pl_AdvancedTargeting =
|
2016-01-06 02:11:56 +01:00
|
|
|
{
|
|
|
|
name = "AdvancedTargeting",
|
|
|
|
file = "AdvancedTargeting.smx",
|
|
|
|
#if defined REQUIRE_PLUGIN
|
|
|
|
required = 1,
|
|
|
|
#else
|
|
|
|
required = 0,
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
#if !defined REQUIRE_PLUGIN
|
2016-04-26 12:36:03 +02:00
|
|
|
public __pl_AdvancedTargeting_SetNTVOptional()
|
2016-01-06 02:11:56 +01:00
|
|
|
{
|
|
|
|
MarkNativeAsOptional("IsClientFriend");
|
2016-01-28 01:18:10 +01:00
|
|
|
MarkNativeAsOptional("ReadClientFriends");
|
2016-01-06 02:11:56 +01:00
|
|
|
}
|
|
|
|
#endif
|