summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-02-28 19:52:39 -0300
committerJesusaves <cpntb1@ymail.com>2019-02-28 19:52:39 -0300
commit3eaedbfdf671cc98ef456166f143c0f8ad6ac480 (patch)
treed76746e4717333c601f89a4ee4bfa01783a95648 /npc
parentdb21f98d4abf3c74b7ae68f084f839aaa9abd271 (diff)
downloadserverdata-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')
-rw-r--r--npc/002-3/nard.txt6
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."), -;