From cf18ce071c79ae37e14ea38943e0b1d88da70a7b Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 9 Apr 2021 13:33:57 -0300 Subject: Override --- npc/functions/input.txt | 66 ------------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 npc/functions/input.txt (limited to 'npc/functions/input.txt') 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$; -} -- cgit v1.2.3-70-g09d2