Aura.Channel.Network.Sending.Send.GuildCreateGuildRobeUpdate C# (CSharp) Méthode

GuildCreateGuildRobeUpdate() public static méthode

Sends GuildCreateGuildRobeUpdate to creature's client.
public static GuildCreateGuildRobeUpdate ( Creature creature, byte emblemMark, byte emblemOutline, byte stripes, uint robeColor, byte badgeColor, byte emblemMarkColor, byte emblemOutlineColor, byte stripesColor, bool success ) : void
creature Creature
emblemMark byte
emblemOutline byte
stripes byte
robeColor uint
badgeColor byte
emblemMarkColor byte
emblemOutlineColor byte
stripesColor byte
success bool
Résultat void
		public static void GuildCreateGuildRobeUpdate(Creature creature, byte emblemMark, byte emblemOutline, byte stripes, uint robeColor, byte badgeColor, byte emblemMarkColor, byte emblemOutlineColor, byte stripesColor, bool success)
		{
			var packet = new Packet(Op.GuildCreateGuildRobeUpdate, creature.EntityId);
			packet.PutByte(emblemMark);
			packet.PutByte(emblemOutline);
			packet.PutByte(stripes);
			packet.PutUInt(robeColor);
			packet.PutByte(badgeColor);
			packet.PutByte(emblemMarkColor);
			packet.PutByte(emblemOutlineColor);
			packet.PutByte(stripesColor);
			packet.PutByte(success);

			creature.Client.Send(packet);
		}
Send