MapServer.PlayerObject.SendRoleOtherSystemInfo C# (CSharp) Method

SendRoleOtherSystemInfo() private method

private SendRoleOtherSystemInfo ( ) : void
return void
        private void SendRoleOtherSystemInfo()
        {
            //发送玩家技能信息
            GetMagicSystem().SendAllMagicInfo();
            //发送玩家道具信息
            GetItemSystem().SendAllItemInfo();
            //发送体力信息
            this.ChangeAttribute(UserAttribute.SP, 0);

            //发送幻兽信息
            GetEudemonSystem().SendAllEudemonInfo();
            //发送热键信息
            SendHotKeyInfo();
            //好友信息
            GetFriendSystem().SendAllFriendInfo();
            //发给其他好友上线信息
            GetFriendSystem().BrocatMsg(NetMsg.MsgFriendInfo.TYPE_ONLINE);
            //发送给军团信息
            GetLegionSystem().SendLegionInfo();
            //发送爵位信息
            GuanJueManager.Instance().SendGuanJueInfo(this);
        }