summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/array.txt3
-rw-r--r--npc/functions/string.txt3
-rw-r--r--npc/functions/time.txt3
-rw-r--r--npc/functions/timer.txt3
4 files changed, 12 insertions, 0 deletions
diff --git a/npc/functions/array.txt b/npc/functions/array.txt
index d9d649921..0db396ce4 100644
--- a/npc/functions/array.txt
+++ b/npc/functions/array.txt
@@ -1,3 +1,6 @@
+// Evol Script
+// Author: Gumi
+
// array_pad(<array>, <size>, <value>)
// prepend or append <value> until the array is of <size> size
// returns the amount added on success, or false (0) if nothing changed
diff --git a/npc/functions/string.txt b/npc/functions/string.txt
index 627f0abc6..fba5e776d 100644
--- a/npc/functions/string.txt
+++ b/npc/functions/string.txt
@@ -1,3 +1,6 @@
+// Evol Script
+// Author: Gumi
+
// safe string manipulation functions
// ** does not require PCRE
diff --git a/npc/functions/time.txt b/npc/functions/time.txt
index 76be1894d..e6e4c70a7 100644
--- a/npc/functions/time.txt
+++ b/npc/functions/time.txt
@@ -1,3 +1,6 @@
+// Evol Script
+// Authors: Gumi, Jesusalva
+
function script now {
return gettimetick(2);
}
diff --git a/npc/functions/timer.txt b/npc/functions/timer.txt
index 1b5fa8c57..17a7d4b68 100644
--- a/npc/functions/timer.txt
+++ b/npc/functions/timer.txt
@@ -1,3 +1,6 @@
+// Evol Script
+// Authors: Gumi, Jesusalva
+
// areatimer("<map>", <x1>, <y1>, <x2>, <y2>, <tick>, "<npc>::<event>")
function script areatimer {
.@c = getunits(BL_PC, .@players, false, getarg(0), getarg(1), getarg(2), getarg(3), getarg(4));