Skip to content

Commit

Permalink
Fix unable to turn in quests due to time stop.
Browse files Browse the repository at this point in the history
  • Loading branch information
JianmengYu committed Apr 30, 2024
1 parent f5358b1 commit 63db0e1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions 2.05-custom-gx/chat.hsp
Original file line number Diff line number Diff line change
Expand Up @@ -23810,6 +23810,16 @@
goto *chat_default

*chat_quest
/********** JAMES CUSTOM - COMPLETE BUGGED QUESTS CAUSED BY TIME STOP - BEGINNING **********/
if ( qdata(QDATA_STATUS, rq) == QUEST_STATE_ONGOING ) {
if ( qdata(QDATA_EXIST, rq) == QUEST_TYPE_HUNT | qdata(QDATA_EXIST, rq) == QUEST_TYPE_HUNTEX | qdata(QDATA_EXIST, rq) == QUEST_TYPE_HARVEST | qdata(QDATA_EXIST, rq) == QUEST_TYPE_CONQUER | qdata(QDATA_EXIST, rq) == QUEST_TYPE_MINEFIELD | qdata(QDATA_EXIST, rq) == QUEST_TYPE_PARTY ) {
qdata(QDATA_STATUS, rq) = QUEST_STATE_SUCCESS
val = 3
gosub *talk_quest
goto *chat_default
}
}
/********** JAMES CUSTOM - COMPLETE BUGGED QUESTS CAUSED BY TIME STOP - ENDING **********/
if ( qdata(QDATA_STATUS, rq) == QUEST_STATE_ONGOING ) {
buff = lang("頼んでいた依頼は順調" + _kana(1), "What about my contract? Is everything alright?")
goto *chat_default
Expand Down
4 changes: 2 additions & 2 deletions 2.05-custom-gx/main.hsp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#include "mock_defines.hsp"
#endif

#define global VARIANT_NAME "ElonaPlus Custom-GX 2.22.3.0"
#define global VARIANT_TITLE "Elona+ Custom-GX 2.22.3.0"
#define global VARIANT_NAME "ElonaPlus Custom-GX 2.22.3.1"
#define global VARIANT_TITLE "Elona+ Custom-GX 2.22.3.1"
#define global VERSION_STRING "6.32"
#define global VERSION_NUMBER int(double(VERSION_STRING) * 1000)
#define global NET_VERSION 200000
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Upcoming
# 2.22.3.1

# Fixed
- Text issues, Thanks to @air1068
- Key_selcect overflow on ranch animals.
- Smart Cooldown: Fixed wrong necrocoffin used.
- Unable to turn in quests due to time stop.
- Chat Pop-up: Wrong picture used for chara height calculation.

# TCG Change
Expand Down

0 comments on commit 63db0e1

Please sign in to comment.