Server.VendorGenerator.IsArcheryWeapon C# (CSharp) Méthode

IsArcheryWeapon() private static méthode

private static IsArcheryWeapon ( int itemID ) : bool
itemID int
Résultat bool
		private static bool IsArcheryWeapon( int itemID )
		{
			if ( itemID >= 0xF4F && itemID <= 0xF50 )
				return true;

			if ( itemID >= 0x13B1 && itemID <= 0x13B2 )
				return true;

			if ( itemID >= 0x13FC && itemID <= 0x13FD )
				return true;

			return false;
		}