Beispiel #1
0
    /// <summary>
    /// 每日试炼刷新
    /// </summary>
    /// <param name="cmd"></param>
    public void OnFuruizhuInfo(GameCmd.stfuruizhuinfoPropertyUserCmd_CS cmd)
    {
        this.m_monsterNum             = cmd.npc_num;
        this.m_dailyCanUseFuRuiZhuNum = cmd.remain_num;
        this.m_fuRuiZhuSpeedupNum     = cmd.double_num;

        //每日试炼刷新
        if (DataManager.Manager <UIPanelManager>().IsShowPanel(PanelID.DailyTestPanel))
        {
            DataManager.Manager <UIPanelManager>().SendMsg(PanelID.DailyTestPanel, UIMsgID.eUpdateDailyTest, null);
        }
    }
Beispiel #2
0
    public void ReqFuruizhuInfo()
    {
        GameCmd.stfuruizhuinfoPropertyUserCmd_CS cmd = new GameCmd.stfuruizhuinfoPropertyUserCmd_CS();

        NetService.Instance.Send(cmd);
    }