diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-10-06 16:05:22 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-10-06 16:05:22 -0300 |
commit | 1eb354820d2473b9d54af5dbf42d6027591f84fd (patch) | |
tree | ae9b76e4c3f3f72aecc61ed6c8674b5f0ced5e37 /npc | |
parent | 070bf3df848f31eb555f91d00f7e4f4596bc0954 (diff) | |
download | serverdata-1eb354820d2473b9d54af5dbf42d6027591f84fd.tar.gz serverdata-1eb354820d2473b9d54af5dbf42d6027591f84fd.tar.bz2 serverdata-1eb354820d2473b9d54af5dbf42d6027591f84fd.tar.xz serverdata-1eb354820d2473b9d54af5dbf42d6027591f84fd.zip |
Move RNGesus to utils file. They're better there. Maybe even on main.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/RNGesus.txt | 23 | ||||
-rw-r--r-- | npc/functions/util.txt | 15 | ||||
-rw-r--r-- | npc/scripts.conf | 1 |
3 files changed, 15 insertions, 24 deletions
diff --git a/npc/functions/RNGesus.txt b/npc/functions/RNGesus.txt deleted file mode 100644 index f71c2f28a..000000000 --- a/npc/functions/RNGesus.txt +++ /dev/null @@ -1,23 +0,0 @@ -// Evol functions. -// Authors: -// gumi -// Description: -// Randomization helper functions. - - - -// any(<arg>{, ...<arg>}) -// returns one argument randomly - -function script any { - return getarg(rand(getargcount())); -} - - - -// any_of(<array>) -// returns any member of the array - -function script any_of { - return getelementofarray(getarg(0), getarrayindex(getarg(0)) + rand(getarraysize(getarg(0)) - getarrayindex(getarg(0)))); -} diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 99d60da5d..47e07ea72 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -406,3 +406,18 @@ function script mercrank { } } + +// Randomizer functions by gumi +///////////////////////////////////////////// + +// returns one argument randomly +// any( <arg>{, ...<arg>} ) +function script any { + return getarg(rand(getargcount())); +} + +// returns any member of the array +// any_of( <array> ) +function script any_of { + return getelementofarray(getarg(0), getarrayindex(getarg(0)) + rand(getarraysize(getarg(0)) - getarrayindex(getarg(0)))); +} diff --git a/npc/scripts.conf b/npc/scripts.conf index a02aa4341..544f8f55b 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -9,7 +9,6 @@ "npc/functions/array.txt", "npc/functions/input.txt", "npc/functions/math.txt", -"npc/functions/RNGesus.txt", "npc/functions/string.txt", "npc/functions/time.txt", "npc/functions/timer.txt", |