diff options
Diffstat (limited to 'npc/003-2/lua.txt')
-rw-r--r-- | npc/003-2/lua.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt index 3979d81b3..95048e26f 100644 --- a/npc/003-2/lua.txt +++ b/npc/003-2/lua.txt @@ -122,17 +122,20 @@ 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 & 4 && .@m >= 2500, l("Developer Cap")), + rif(!#CRW & 8 && .@m >= 4500, l("Delicious Cookie")), + rif(!#CRW & 4 && .@m >= 2000, l("Developer Cap")), rif(!#CRW & 2 && .@m >= 500, l("Contributor Sweater")), rif(!#CRW & 1 && .@m >= 100, l("Community Shirt")), l("Ok, thanks."); switch (@menu) { case 1: - getitembound "DEVCap", 1, 1; #CRW=#CRW|4 ; break; + getitembound "DeliciousCookie", 1, 1; #CRW=#CRW|8 ; break; case 2: - getitembound "ContributorSweater", 1, 1; #CRW=#CRW|2 ; break; + getitembound "DEVCap", 1, 1; #CRW=#CRW|4 ; break; case 3: + getitembound "ContributorSweater", 1, 1; #CRW=#CRW|2 ; break; + case 4: getitembound "CommunityShirt", 1, 1; #CRW=#CRW|1 ; break; } close; |