8000 Fix wrong SNS quest achieved by Xele02 · Pull Request #293 · Xele02/UMO · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix wrong SNS quest achieved #293

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Unity/Assets/UMAssets/Scripts/FKMOKDCJFEN.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ public void ADGHFCOKPOP_InitDailyQuest(int CMEJFJFOIIJ)
NFPHOINMHKN_QuestInfo saveQuest = serverSave.GOACJBOCLHH_Quest.BEGCHDHHEKC_DailyQuests[CMEJFJFOIIJ - 1];
MessageBank bk = MessageManager.Instance.GetBank("master");
KLMPFGOCBHC_Description = bk.GetMessageByLabel("qd_dsc_" + CMEJFJFOIIJ.ToString("D4"));
if(RuntimeSettings.CurrentSettings.DisplayIdInName)
KLMPFGOCBHC_Description = "[" + CMEJFJFOIIJ.ToString() + "] " + KLMPFGOCBHC_Description;
CJCGFKDMDMN_DescriptionB = bk.GetMessageByLabel("qd_dscb_" + CMEJFJFOIIJ.ToString("D4"));
ABLHIAEDJAI_CurrentValue = (int)ILLPDLODANB.DCLKMNGMIKC_GetQuestCurrentValue(NDFIEMPPMLF_dbQuest, db, serverSave);
HLDGMMDFNHB_TargetValue = NDFIEMPPMLF_dbQuest.FCDKJAKLGMB;
Expand Down Expand Up @@ -96,6 +98,8 @@ public void PHGLNKFFEME_InitNormalQuest(int CMEJFJFOIIJ)
NFPHOINMHKN_QuestInfo saveQuest = serverSave.GOACJBOCLHH_Quest.GPMKFMFEKLN_NormalQuests[CMEJFJFOIIJ - 1];
MessageBank bk = MessageManager.Instance.GetBank("master");
KLMPFGOCBHC_Description = bk.GetMessageByLabel("qn_dsc_" + CMEJFJFOIIJ.ToString("D4"));
if(RuntimeSettings.CurrentSettings.DisplayIdInName)
KLMPFGOCBHC_Description = "[" + CMEJFJFOIIJ.ToString() + "] " + KLMPFGOCBHC_Description;
CJCGFKDMDMN_DescriptionB = bk.GetMessageByLabel("qn_dscb_" + CMEJFJFOIIJ.ToString("D4"));
ABLHIAEDJAI_CurrentValue = (int)ILLPDLODANB.DCLKMNGMIKC_GetQuestCurrentValue(NDFIEMPPMLF_dbQuest, db, serverSave);
HLDGMMDFNHB_TargetValue = NDFIEMPPMLF_dbQuest.FCDKJAKLGMB;
Expand Down
2 changes: 1 addition & 1 deletion Unity/Assets/UMAssets/Scripts/ILLPDLODANB.cs
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ public static bool OHFOAIDPDEM(int MALFHCHNEFN, out int CMEJFJFOIIJ)
{
if (dbQuests[i].FCDKJAKLGMB <= a)
{
CMEJFJFOIIJ = i;
CMEJFJFOIIJ = i + 1;
return true;
}
CMEJFJFOIIJ = 0;
Expand Down
0