summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-2/lua.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt
index 95048e26f..752c1b306 100644
--- a/npc/003-2/lua.txt
+++ b/npc/003-2/lua.txt
@@ -126,8 +126,10 @@ L_Contributor:
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("Which rewards are available?"),
l("Ok, thanks.");
+ mes "";
switch (@menu) {
case 1:
getitembound "DeliciousCookie", 1, 1; #CRW=#CRW|8 ; break;
@@ -137,6 +139,14 @@ L_Contributor:
getitembound "ContributorSweater", 1, 1; #CRW=#CRW|2 ; break;
case 4:
getitembound "CommunityShirt", 1, 1; #CRW=#CRW|1 ; break;
+ case 5:
+ mes l("4500 - @@", getitemlink(DeliciousCookie));
+ mes l("2000 - @@", getitemlink(DEVCap));
+ mes l("500 - @@", getitemlink(ContributorSweater));
+ mes l("100 - @@", getitemlink(CommunityShirt));
+ next;
+ goto L_Contributor;
+ break;
}
close;