Exemplo n.º 1
0
	void CharSkillStance(byte[] _packet)
	{
		body_SC_CHAR_SKILL_STANCE stance = new body_SC_CHAR_SKILL_STANCE();
		stance.PacketBytesToClass(_packet);
		
		AsEntityManager.Instance.DispatchMessageByUniqueKey(stance.nCharUniqKey, new Msg_OtherCharSkillStance(stance));
		
		if(stance.nCharUniqKey == AsUserInfo.Instance.GetCurrentUserEntity().UniqueId)
		{
			SkillBook.Instance.StanceChanged(stance);
		}
	}