Aura.Channel.Network.Sending.Send.RequestSecondaryLogin C# (CSharp) Method

RequestSecondaryLogin() public static method

Sends RequestSecondaryLogin to creature's client, requesting it to send a login packet for the given entity id.
public static RequestSecondaryLogin ( Creature creature, long entityId, string channelHost, int channelPort ) : void
creature Creature
entityId long Entity to log in.
channelHost string Host of channel to log in to.
channelPort int Port of channel to log in to.
return void
		public static void RequestSecondaryLogin(Creature creature, long entityId, string channelHost, int channelPort)
		{
			Packet packet = new Packet(Op.RequestSecondaryLogin, MabiId.Channel);
			packet.PutLong(entityId);
			packet.PutString(channelHost);
			packet.PutShort((short)channelPort);

			creature.Client.Send(packet);
		}
Send