summaryrefslogtreecommitdiff
path: root/npc/003-2
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-01-05 19:48:56 -0200
committerJesusaves <cpntb1@ymail.com>2019-01-05 19:48:56 -0200
commit7d36b506506e35d1061f09a8af4d037559032e55 (patch)
tree7fe482da46692b7ba2c25c7c418d973bbe323e67 /npc/003-2
parent96b86a8724fb1cb8158c507e025653eb1ade4c28 (diff)
downloadserverdata-7d36b506506e35d1061f09a8af4d037559032e55.tar.gz
serverdata-7d36b506506e35d1061f09a8af4d037559032e55.tar.bz2
serverdata-7d36b506506e35d1061f09a8af4d037559032e55.tar.xz
serverdata-7d36b506506e35d1061f09a8af4d037559032e55.zip
Minor bugfixes
Diffstat (limited to 'npc/003-2')
-rw-r--r--npc/003-2/lua.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt
index cdb1feca2..062af1037 100644
--- a/npc/003-2/lua.txt
+++ b/npc/003-2/lua.txt
@@ -176,7 +176,7 @@ L_Task:
L_Finish:
getexp BaseLevel*60, JobLevel*10; // Reference Levels: (20, 6)
- setq General_Narrator, 3;
+ setq General_Narrator, 3, 0;
mesn;
mesq l("Great job! You can keep these items, they will be crucial to your journey.");
next;
@@ -264,7 +264,7 @@ L_Contributor:
mesq l("Ah, welcome @@. You have @@ Contributor Points.", strcharinfo(0), .@m);
mesq l("Let's see if you can pick a reward!");
select
- rif(!(#CRW & 32) && .@m >= 10000 && Zeny > 100000, l("(100,000 GP) Legendary Mount")),
+ rif(!(#CRW & 32) && .@m >= 10000 && Zeny > 10000, l("(10,000 GP) Legendary Mount")),
rif(!(#CRW & 16) && .@m >= 4500, l("Delicious Cookie")),
rif(!(#CRW & 8) && .@m >= 2000, l("Developer Cap")),
rif(!(#CRW & 4) && .@m >= 500, l("Contributor Sweater")),
@@ -276,7 +276,7 @@ L_Contributor:
mes "";
switch (@menu) {
case 1:
- Zeny=Zeny-100000; getitembound "LegendaryMount", 1, 1; #CRW=#CRW|32 ; break;
+ Zeny=Zeny-10000; getitembound "LegendaryMount", 1, 1; #CRW=#CRW|32 ; break;
case 2:
getitem "DeliciousCookie", 1; #CRW=#CRW|16 ; break;
case 3:
@@ -288,7 +288,7 @@ L_Contributor:
case 6:
getitem "StrangeCoin", 5; #CRW=#CRW|1 ; break;
case 7:
- mes l("10000 (+100,000 GP) - @@", getitemlink(LegendaryTortuga));
+ mes l("10000 (+10,000 GP) - @@", getitemlink(LegendaryTortuga));
mes l("4500 - @@", getitemlink(DeliciousCookie));
mes l("2000 - @@", getitemlink(DEVCap));
mes l("500 - @@", getitemlink(ContributorSweater));