diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-17 18:35:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-17 18:35:00 -0300 |
commit | c32016cbc79eaf3be380490fdc7a31d5df3357a2 (patch) | |
tree | 88c0d3e0c0deb5da0b2109e1c3fb154d8ed3c279 /npc/003-2/lua.txt | |
parent | f4d55cdf95b4d6ac108a9255f2ce3eed3472700b (diff) | |
download | serverdata-c32016cbc79eaf3be380490fdc7a31d5df3357a2.tar.gz serverdata-c32016cbc79eaf3be380490fdc7a31d5df3357a2.tar.bz2 serverdata-c32016cbc79eaf3be380490fdc7a31d5df3357a2.tar.xz serverdata-c32016cbc79eaf3be380490fdc7a31d5df3357a2.zip |
Tease players into getting the Legendary Mount. Only Jesus and Saulc have enough
contribution points for that, and Jesus is way too poor for not playing the game,
so only Saulc can get it, but sssh, it's NOT impossible! ...Ok, only a little.
........a huge little.
Diffstat (limited to 'npc/003-2/lua.txt')
-rw-r--r-- | npc/003-2/lua.txt | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt index 152d2f03d..7d616045d 100644 --- a/npc/003-2/lua.txt +++ b/npc/003-2/lua.txt @@ -122,6 +122,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 & 16) && .@m >= 4500, l("Delicious Cookie")), rif(!(#CRW & 8) && .@m >= 2000, l("Developer Cap")), rif(!(#CRW & 4) && .@m >= 500, l("Contributor Sweater")), @@ -133,16 +134,19 @@ L_Contributor: mes ""; switch (@menu) { case 1: - getitem "DeliciousCookie", 1; #CRW=#CRW|16 ; break; + Zeny=Zeny-100000; getitembound "LegendaryMount", 1, 1; #CRW=#CRW|32 ; break; case 2: - getitem "DEVCap", 1; #CRW=#CRW|8 ; break; + getitem "DeliciousCookie", 1; #CRW=#CRW|16 ; break; case 3: - getitem "ContributorSweater", 1; #CRW=#CRW|4 ; break; + getitem "DEVCap", 1; #CRW=#CRW|8 ; break; case 4: - getitem "CommunityShirt", 1; #CRW=#CRW|2 ; break; + getitem "ContributorSweater", 1; #CRW=#CRW|4 ; break; case 5: - getitem "StrangeCoin", 5; #CRW=#CRW|1 ; break; + getitem "CommunityShirt", 1; #CRW=#CRW|2 ; break; case 6: + getitem "StrangeCoin", 5; #CRW=#CRW|1 ; break; + case 7: + mes l("10000 (+100,000 GP) - @@", getitemlink(LegendaryTortuga)); mes l("4500 - @@", getitemlink(DeliciousCookie)); mes l("2000 - @@", getitemlink(DEVCap)); mes l("500 - @@", getitemlink(ContributorSweater)); |