가이드 퀘스트 기능 완료

This commit is contained in:
Ino 2025-03-24 10:28:21 +09:00
parent dd8048bac1
commit 64593f74dc
4 changed files with 4 additions and 3 deletions

View File

@ -70,6 +70,7 @@ messageinfo 엄청 느린 버그
미션
- 가이드
-- 가이드 퀘스트 완료 안됐는데 오브젝트가 사라짐
-- 컨텐츠가 없어서 적용안된 미션 있음
일일, 주간 초기화 확인

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -151,12 +151,12 @@ public class GuideQuestUI : MonoBehaviour
public void OnClick_Reward()
{
var sdata = ServerInfo.Ins.m_ServerData;
if (sdata.Get_Common(eCommon.GuideCount) > 0)
if (sdata.Get_Common(eCommon.GuideCount) >= Tdata.l_MissionConditionCount)
{
sdata.Set_Common(eCommon.GuideCount, 0);
sdata.Add_Common(eCommon.GuideStep);
//GetItemUI.Ins.Set(sdata.Add_Item(new ItemData(Tdata.e_Reward, Tdata.n_RewardID, Tdata.n_RewardAmount, DSUtil.Format("guide {0}", Tdata.ID), eUICardType.GetItem)));
GetItemUI.Ins.Show_Items();
//GetItemUI.Ins.Show_Items();
Set();
}
}