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

GuildOpenGuildCreation() public static méthode

Sends GuildOpenGuildRobeCreation to creature's client.
public static GuildOpenGuildCreation ( Creature creature, long entityId, string guildName, uint color ) : void
creature Creature
entityId long
guildName string
color uint
Résultat void
		public static void GuildOpenGuildCreation(Creature creature, long entityId, string guildName, uint color)
		{
			var packet = new Packet(Op.GuildOpenGuildRobeCreation, creature.EntityId);
			packet.PutLong(entityId);
			packet.PutString(guildName);
			packet.PutUInt(color);
			packet.PutByte(0);

			creature.Client.Send(packet);
		}
Send