diff options
-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)); |