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