diff options
Diffstat (limited to 'npc/002-3/nard.txt')
-rw-r--r-- | npc/002-3/nard.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/002-3/nard.txt b/npc/002-3/nard.txt index 8317f89b6..f71f71e47 100644 --- a/npc/002-3/nard.txt +++ b/npc/002-3/nard.txt @@ -231,10 +231,10 @@ L_Travel: mes ""; mes l("A ship travel will cost you @@ GP.", .@price); - if (Zeny >= .@price) { + if (Zeny >= .@price || ((ST_TIER == 7 || ST_TIER == 9) && gettimetick(2) < QUEST_ELEVARTEMPO)) { menu - rif(LOCATION$ != "Candor", l("To Candor Island.")), L_TCandor, - rif(LOCATION$ != "Tulim", l("To Tulimshar.")), L_TTulim, + rif(Zeny >= .@price && LOCATION$ != "Candor", l("To Candor Island.")), L_TCandor, + rif(Zeny >= .@price && LOCATION$ != "Tulim", l("To Tulimshar.")), L_TTulim, rif(ST_TIER == 7 && gettimetick(2) < QUEST_ELEVARTEMPO ,l("Help me, I need Jesusaves Grimorie!")), L_Tier2, rif(ST_TIER == 9 && countitem(Lifestone) && gettimetick(2) < QUEST_ELEVARTEMPO ,l("Help me, I need Jesusaves Grimorie!")), L_Tier2Ok, l("No, I'll save my money."), -; |