Server.Items.Silver.GetDropSound C# (CSharp) Méthode

GetDropSound() public méthode

public GetDropSound ( ) : int
Résultat int
		public override int GetDropSound()
		{
			if ( Amount <= 1 )
				return 0x2E4;
			else if ( Amount <= 5 )
				return 0x2E5;
			else
				return 0x2E6;
		}