I'm trying to create a simple warper npc wherein the player can type the map name and get warped to the desired map.
For some reason, I'm having a hard time trying to get this work. This is the messy version of what I did earlier.
I am currently getting this error:
eathena script:getelementofarray: index out of range (128)
and a debug, variable name='@map$' index = 0
And here is the script:
Sorry but I'm kind of new in eA scripting. I mean I never studied the language.
setarray @map$[0], prontera, morocc, prontera, alberta, aldebaran, izlude;
setarray @coordsx[0], 151, 151, 151, 151, 151, 151;
setarray @coordsy[0], 181, 181, 181, 181, 181, 181;
set @ii,0;
mes "[Warp Agent]";
mes "Please type the name of the map where you want to go:";
input @warp$;
while ((@map$[@i] != @warp$) || (@i != 10)) {
set @i,@i+1;
set @ii,@ii+@i;
if(@i == 10) {
mes "[Warp Agent]";
mes "Invalid Map!";
close;
}
}
// warp getarg(0),getarg(1),getarg(2);
// warp .@map$[@i],@coordsx[@i],@coordsy[@i];
callsub S_DunWarp,@map$[@ii],@coordsx[@ii],@coordsx[@ii];
close;
break;
S_DunWarp:
warp getarg(0),getarg(1),getarg(2);
close;
}
Nevermind. Got it working. Thanks!