From 3eaedbfdf671cc98ef456166f143c0f8ad6ac480 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Thu, 28 Feb 2019 19:52:39 -0300 Subject: "Handle" poor players trying to get magic tier 2 --- npc/002-3/nard.txt | 6 +++--- 1 file 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."), -; -- cgit v1.2.3-60-g2f50