summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/017-10/dispatcher.txt2
-rw-r--r--npc/functions/util.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/npc/017-10/dispatcher.txt b/npc/017-10/dispatcher.txt
index 10868f743..e612cd65f 100644
--- a/npc/017-10/dispatcher.txt
+++ b/npc/017-10/dispatcher.txt
@@ -169,7 +169,7 @@ L_Main:
getitemlink(IcedBottle));
next;
.@dest=HCD_SLIMENEST;
- .@hours=3;
+ .@hours=2;
break;
case 6:
mesc ".:: " + l("Snake Pit") + " ::.";
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index 0a25f2649..886dec447 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -743,7 +743,7 @@ function script anyloot {
return Exception("Faulty anyloot skill command invoked - error");
// Get Items
- for (.@i=0;.@i < getargcount(); .@i+=2) {
+ for (.@i=0;.@i < getargcount(); .@i+=3) {
if (rand2(10000) < getarg(.@i+2))
getitem getarg(.@i), rand2(1, getarg(.@i+1));
}