diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-02-28 19:52:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-02-28 19:52:39 -0300 |
commit | 3eaedbfdf671cc98ef456166f143c0f8ad6ac480 (patch) | |
tree | d76746e4717333c601f89a4ee4bfa01783a95648 /npc/002-3/nard.txt | |
parent | db21f98d4abf3c74b7ae68f084f839aaa9abd271 (diff) | |
download | serverdata-3eaedbfdf671cc98ef456166f143c0f8ad6ac480.tar.gz serverdata-3eaedbfdf671cc98ef456166f143c0f8ad6ac480.tar.bz2 serverdata-3eaedbfdf671cc98ef456166f143c0f8ad6ac480.tar.xz serverdata-3eaedbfdf671cc98ef456166f143c0f8ad6ac480.zip |
"Handle" poor players trying to get magic tier 2
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."), -; |