diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-02-09 18:55:24 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-02-09 18:55:24 -0200 |
commit | 810f3778c44c2f2e4ae9b998228767a48b576c63 (patch) | |
tree | 8bbda4c00facf07c9237d719dac581d966e3c5fc /npc/001-11 | |
parent | 82b63e3c8e11dc95b0206eef360d66ffb6ea2a46 (diff) | |
download | serverdata-810f3778c44c2f2e4ae9b998228767a48b576c63.tar.gz serverdata-810f3778c44c2f2e4ae9b998228767a48b576c63.tar.bz2 serverdata-810f3778c44c2f2e4ae9b998228767a48b576c63.tar.xz serverdata-810f3778c44c2f2e4ae9b998228767a48b576c63.zip |
BoxOfChocolates - Prevent dropping or trading to fix possible exploit and
prevent player from being unable to participate on event
note: #item still works
Diffstat (limited to 'npc/001-11')
-rw-r--r-- | npc/001-11/Demure.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/001-11/Demure.txt b/npc/001-11/Demure.txt index 0378a5bce..37aafbf64 100644 --- a/npc/001-11/Demure.txt +++ b/npc/001-11/Demure.txt @@ -59,11 +59,11 @@ .@ref$=""; // Send the Chocolate - .@m = htget($@VALENTINE_GIFTSTACKS, .@ref); + .@m = htget($@VALENTINE_GIFTSTACKS, str(.@ref)); if (!.@m) - htput $@VALENTINE_GIFTSTACKS, .@ref, @Val_Ammo; + htput $@VALENTINE_GIFTSTACKS, str(.@ref), @Val_Ammo; else - htput $@VALENTINE_GIFTSTACKS, .@ref, .@m+@Val_Ammo; + htput $@VALENTINE_GIFTSTACKS, str(.@ref), .@m+@Val_Ammo; // Get 1 Point per sent box #VALENTINE_POINTS+=1; @@ -80,9 +80,9 @@ // Register your name on love letter .@s$ = htget($@VALENTINE_LOVELETTER, .@ref); if (.@s$ == "") - htput $@VALENTINE_LOVELETTER, .@ref, strip(strcharinfo(0)); + htput $@VALENTINE_LOVELETTER, str(.@ref), strip(strcharinfo(0)); else - htput $@VALENTINE_LOVELETTER, .@ref, .@s$+", "+strip(strcharinfo(0)); + htput $@VALENTINE_LOVELETTER, str(.@ref), .@s$+", "+strip(strcharinfo(0)); // Get the bonus // Old rule: 1 point for 2 boxes, capped at 25 and minimum 1 extra point @@ -107,16 +107,16 @@ return; } function GetGift { - .@m = htget($@VALENTINE_GIFTSTACKS, getcharid(3)); + .@m = htget($@VALENTINE_GIFTSTACKS, str(getcharid(3))); if (.@m > 0) { mesq l("Hey, look, you have @@ boxes to collect!", .@m); - .@n$ = htget($@VALENTINE_LOVELETTER, getcharid(3), l("Secret Admirer")); + .@n$ = htget($@VALENTINE_LOVELETTER, str(getcharid(3)), l("Secret Admirer")); mesq l("They were given with @@ by @@.", any(l("love"), l("passion"), l("affection")), .@n$); inventoryplace BoxOfChocolates, .@m; getitem BoxOfChocolates, .@m; - htput $@VALENTINE_GIFTSTACKS, getcharid(3), 0; - htput $@VALENTINE_LOVELETTER, getcharid(3), ""; + htput $@VALENTINE_GIFTSTACKS, str(getcharid(3)), 0; + htput $@VALENTINE_LOVELETTER, str(getcharid(3)), ""; } else { mesq l("Sorry, you don't have any chocolate to pick up."); |