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
		
			
				
	
	
		
			27 lines
		
	
	
		
			543 B
		
	
	
	
		
			SourcePawn
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			543 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_AdvancedTargeting_SetNTVOptional()
 | 
						|
{
 | 
						|
	MarkNativeAsOptional("IsClientFriend");
 | 
						|
	MarkNativeAsOptional("ReadClientFriends");
 | 
						|
}
 | 
						|
#endif
 |