diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-08 13:29:22 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-05-08 13:29:22 -0300 |
commit | f9fa076a03993157898f8c8121963fbaecb2a167 (patch) | |
tree | 72a0fbfa73e90c12c956528e67af882ae7e584c7 /npc/functions/util.txt | |
parent | 1f386add4d1f1b3ee082f657ba9884323bfaab57 (diff) | |
download | serverdata-f9fa076a03993157898f8c8121963fbaecb2a167.tar.gz serverdata-f9fa076a03993157898f8c8121963fbaecb2a167.tar.bz2 serverdata-f9fa076a03993157898f8c8121963fbaecb2a167.tar.xz serverdata-f9fa076a03993157898f8c8121963fbaecb2a167.zip |
Fix respawn code in 042-10
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r-- | npc/functions/util.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index f8593723f..98d96336e 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -808,6 +808,7 @@ function script abizit { // anyloot( {item 1, amount 1, chance 1}, {item 2, amount 2, chance 2}... ) // Give chance (standard 1~10000 roll) to obtain item, capped at amount. +// TODO: Fill an array, then inventoryplace() and getitem() function script anyloot { if (getargcount() < 3 || getargcount() % 3 != 0) return Exception("Faulty anyloot skill command invoked - error"); |