少年修仙传客户端代码仓库
client_linchunjie
2018-11-23 09354f7b3a308247924889947d4d9ea2ea0e552b
Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
5个文件已修改
15 ■■■■■ 已修改文件
System/FairyAu/FairyAuTaskWin.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/MainInterfacePanel/CoinTaskWin.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/MainInterfacePanel/FlyingShoesTask.cs 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/MainInterfacePanel/PlayerTaskDatas.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/MainInterfacePanel/TaskAllocation.cs 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/FairyAu/FairyAuTaskWin.cs
@@ -203,6 +203,7 @@
            WindowCenter.Instance.CloseImmediately<FairyAuTaskWin>();
            WindowCenter.Instance.Open<MainInterfaceWin>();
            ObjectiveText.ExcuteHref();
            TaskAllocation.Instance.TaskTime = DateTime.Now;
        }
        void CloseButton()//关闭按钮
System/MainInterfacePanel/CoinTaskWin.cs
@@ -10,6 +10,7 @@
using System.Text;
using System.Text.RegularExpressions;
using Snxxz.UI;
using System;
//赏金任务面板
namespace Snxxz.UI
{
@@ -281,6 +282,7 @@
        void Forward()
        {
            _Text_TaskTarget.ExcuteHref();
            TaskAllocation.Instance.TaskTime = DateTime.Now;
            WindowCenter.Instance.CloseImmediately<TaskWin>();
            WindowCenter.Instance.Open<MainInterfaceWin>();
        }
System/MainInterfacePanel/FlyingShoesTask.cs
@@ -9,6 +9,7 @@
using System.Collections.Generic;
using Snxxz.UI;
using System.Text.RegularExpressions;
using System;
//关于飞鞋任务
namespace Snxxz.UI
{
@@ -168,6 +169,7 @@
                    {
                        HeroAIRecorder.ClearRecord();
                        ContentText.ExcuteHref();
                        TaskAllocation.Instance.TaskTime = DateTime.Now;
                        OpenPanel(Task_ID);
                    }
                   
@@ -281,12 +283,14 @@
            if (ModelCenter.Instance.GetModel<VipModel>().GetVipPrivilegeCnt(VipPrivilegeType.FreeTransfer) > 0)
            {
                HeroAIRecorder.ClearRecord();
                TaskAllocation.Instance.TaskTime= DateTime.Now;
                m_ContentText.ExcuteHref(1);
                return;
            }
            if (itemNumber > 0)
            {
                HeroAIRecorder.ClearRecord();
                TaskAllocation.Instance.TaskTime = DateTime.Now;
                m_ContentText.ExcuteHref(1);
            }
            else
@@ -297,6 +301,7 @@
                    if (NeedMoney >= 1)
                    {
                        HeroAIRecorder.ClearRecord();
                        TaskAllocation.Instance.TaskTime = DateTime.Now;
                        m_ContentText.ExcuteHref(1);
                    }
                    else
System/MainInterfacePanel/PlayerTaskDatas.cs
@@ -1581,6 +1581,7 @@
            string strTask = TaskAllocation.Instance.GetTaskInfo(Config.Instance.Get<TASKINFOConfig>(_strTest).show_writing, _taskID);
            HrefAnalysis.Inst.ExcuteHrefEvent(strTask);
            DropItemManager.StopMissionPickup = false;
            TaskAllocation.Instance.TaskTime = DateTime.Now;
        }
    }
}
System/MainInterfacePanel/TaskAllocation.cs
@@ -8,6 +8,7 @@
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System;
//用于任务分配
namespace Snxxz.UI
{
@@ -154,6 +155,11 @@
                });
            }
        }
        public DateTime TaskTime
        {
            get;
            set;
        }
    }
}