diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/main.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/npc/functions/main.txt b/npc/functions/main.txt index 56090e926..01559de24 100644 --- a/npc/functions/main.txt +++ b/npc/functions/main.txt @@ -257,7 +257,8 @@ function script any_of { ///////////////////////////////////////////// // Function meant to be used by Grand Hunter Quest -// VarDiffValue ( old, new, target) +// result is: lower < target <= higher +// VarDiffValue ( lower, higher, target) function script VarDiffValue { .@val=getarg(2); return (getarg(0) < .@val && getarg(1) >= .@val); |