Aura.Channel.Network.Sending.Send.SimpleAcquireInfo C# (CSharp) Метод

SimpleAcquireInfo() публичный статический Метод

Sends AcquireInfo to creature's client.
Used on level up, for the green stats, floating besides the char. type can be any string, that string will be used as the name: "type +value"
public static SimpleAcquireInfo ( Creature creature, string type, float value ) : void
creature Creature
type string
value float
Результат void
		public static void SimpleAcquireInfo(Creature creature, string type, float value)
		{
			var packet = new Packet(Op.AcquireInfo, creature.EntityId);
			packet.PutString("<xml type='{0}' value='{1}' simple='true' onlyLog='false' />", type, Math.Round(value));
			packet.PutInt(3000);

			creature.Client.Send(packet);
		}
Send