From 36040a2d577264bf8460ae1851ffdac622969381 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sun, 10 Feb 2019 02:04:18 -0200 Subject: [skip ci] I need more verbosity and control --- npc/functions/array.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'npc/functions') diff --git a/npc/functions/array.txt b/npc/functions/array.txt index 1a106175e..4da22b6fe 100644 --- a/npc/functions/array.txt +++ b/npc/functions/array.txt @@ -71,6 +71,24 @@ function script array_find { freeloop(false); return -1; } +// array_find2(, ) +// Simplified version +// if not found it returns -1 + +function script array_find2 { + .@size = getarraysize(getarg(0)); + freeloop(true); + + for (.@i = getarrayindex(getarg(0)); .@i < .@size; ++.@i) { + if (getelementofarray(getarg(0), .@i) == getarg(1)) { + freeloop(false); + return true; + } + } + + freeloop(false); + return -1; +} -- cgit v1.2.3-70-g09d2