diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-19 23:37:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-19 23:37:24 -0300 |
commit | 47dd2386de3c6b032777639eedec6fa16cd96ac3 (patch) | |
tree | b88318f2453cc0b4bf2f4b1b23c52a0b4242cf2b /npc | |
parent | 26f5ccfa37d0df9aaec4c493f302803305effafc (diff) | |
download | serverdata-47dd2386de3c6b032777639eedec6fa16cd96ac3.tar.gz serverdata-47dd2386de3c6b032777639eedec6fa16cd96ac3.tar.bz2 serverdata-47dd2386de3c6b032777639eedec6fa16cd96ac3.tar.xz serverdata-47dd2386de3c6b032777639eedec6fa16cd96ac3.zip |
Mhm... I'm pretty sure this way...
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-2/lua.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt index 7edae28c4..3979d81b3 100644 --- a/npc/003-2/lua.txt +++ b/npc/003-2/lua.txt @@ -122,11 +122,9 @@ 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 < 5, l("Dev Cap")), - //rif(#CRW < 4, l("Dev Cap")), - rif(#CRW & 4 && .@m >= 2500, l("Developer Cap")), - rif(#CRW & 2 && .@m >= 500, l("Contributor Sweater")), - rif(#CRW & 1 && .@m >= 100, l("Community Shirt")), + rif(!#CRW & 4 && .@m >= 2500, l("Developer Cap")), + rif(!#CRW & 2 && .@m >= 500, l("Contributor Sweater")), + rif(!#CRW & 1 && .@m >= 100, l("Community Shirt")), l("Ok, thanks."); switch (@menu) { |