diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-23 10:35:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-23 10:35:21 -0300 |
commit | d29be8614a754ed4786e93852db87913579b710a (patch) | |
tree | 00a7a9201e9de349b564e475077630325a6062b0 /npc/003-2 | |
parent | 24cd25d12f03700c1c41965659b34fc4d8971b5c (diff) | |
download | serverdata-d29be8614a754ed4786e93852db87913579b710a.tar.gz serverdata-d29be8614a754ed4786e93852db87913579b710a.tar.bz2 serverdata-d29be8614a754ed4786e93852db87913579b710a.tar.xz serverdata-d29be8614a754ed4786e93852db87913579b710a.zip |
New Contributor Reward: Delicious Cookie
Diffstat (limited to 'npc/003-2')
-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; |