Aura.Channel.Network.Sending.Send.PartyChat C# (CSharp) 메소드

PartyChat() 공개 정적인 메소드

Broadcasts PartyChat to all party members.
public static PartyChat ( Creature creature, string msg ) : void
creature Creature
msg string
리턴 void
		public static void PartyChat(Creature creature, string msg)
		{
			var packet = new Packet(Op.PartyChat, creature.EntityId);
			packet.PutLong(creature.EntityId);
			packet.PutString(msg);

			creature.Party.Broadcast(packet, true);
		}
Send