| | |
| | | }
|
| | | }
|
| | |
|
| | | public void RemoveNewBieGuide(int _id)
|
| | | {
|
| | | if (!completeGuidesBuf.Contains(_id))
|
| | | {
|
| | | completeGuidesBuf.Add(_id);
|
| | | }
|
| | |
|
| | | var send = new CA222_tagCMSetGuideOK();
|
| | | send.GuideIndex = (byte)_id;
|
| | | send.IsOK = 1;
|
| | | GameNetSystem.Instance.SendInfo(send);
|
| | | }
|
| | |
|
| | | public void FinishCurrentGuideWithoutCloseWin()
|
| | | {
|
| | | var guideRecord = currentGuide;
|
| | |
| | | return state == DailyQuestModel.DailyQuestState.CanBuyTimes;
|
| | | case GuideTriggerType.TeamAutoAccept:
|
| | | return !teamModel.myTeam.inTeam;
|
| | | case GuideTriggerType.TrialExchange:
|
| | | var trialDailyState = dailyModel.GetQuestState((int)DailyQuestType.Trial);
|
| | | return trialDailyState == DailyQuestModel.DailyQuestState.Completed;
|
| | | default:
|
| | | return false;
|
| | | }
|