summaryrefslogtreecommitdiff
path: root/npc/functions/input.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/input.txt')
-rw-r--r--npc/functions/input.txt66
1 files changed, 0 insertions, 66 deletions
diff --git a/npc/functions/input.txt b/npc/functions/input.txt
deleted file mode 100644
index cf0382d2..00000000
--- a/npc/functions/input.txt
+++ /dev/null
@@ -1,66 +0,0 @@
-// Evol functions.
-// Author:
-// 4144
-// Description:
-// Input utility functions
-// Variables:
-// none
-
-function script menuint {
- deletearray .@vals;
- .@menustr$ = "";
- .@cnt = 0;
-
- for (.@f = 0; .@f < getargcount(); .@f = .@f + 2)
- {
- if (getarg(.@f) != "")
- {
- .@menustr$ = .@menustr$ + getarg(.@f) + ":";
- .@vals[.@cnt] = getarg(.@f + 1);
- .@cnt ++;
- }
- }
-
- .@vals[.@cnt] = -1;
- @menu = 255;
- @menuret = -1;
- select(.@menustr$);
- if (@menu == 255)
- return -1;
-
- @menu --;
- if (@menu < 0 || @menu >= getarraysize(.@vals) - 1)
- return -1;
-
- @menuret = .@vals[@menu];
- return @menuret;
-}
-
-function script menustr {
- deletearray .@vals$;
- .@menustr$ = "";
- .@cnt = 0;
-
- for (.@f = 0; .@f < getargcount(); .@f = .@f + 2)
- {
- if (getarg(.@f) != "")
- {
- .@menustr$ = .@menustr$ + getarg(.@f) + ":";
- .@vals$[.@cnt] = getarg(.@f + 1);
- .@cnt ++;
- }
- }
-
- @menu = 255;
- @menuret = -1;
- select(.@menustr$);
- if (@menu == 255)
- return "";
-
- @menu --;
- if (@menu < 0 || @menu >= getarraysize(.@vals$))
- return "";
-
- @menuret$ = .@vals$[@menu];
- return @menuret$;
-}