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

RankUp() public static method

Broadcasts RankUp in range of creature.
The second parameter is the rank, but doesn't seem to be necessary.
public static RankUp ( Creature creature, SkillId skillId ) : void
creature Creature
skillId SkillId Excluded if 0
return void
		public static void RankUp(Creature creature, SkillId skillId = 0)
		{
			var packet = new Packet(Op.RankUp, creature.EntityId);
			if (skillId > 0)
				packet.PutUShort((ushort)skillId);
			packet.PutShort(1); // Rank

			creature.Region.Broadcast(packet, creature);
		}
Send