a script that would show all the list of the player's names who are inside the instances (even in different zones of instances like 0011@test and 0021@test)
i tried getmapusers but didn't work =\
EDIT:
Okay i made it working with this:
L_Loop:
set @addition,@addition+1;
set @startnum$,"00"+@addition;
set @map$,@startnum$+"1@test";
set @maxmap$,"0061@test";
set @totalpeak,getmapusers(@map$);
if(@map$ == @maxmap$) {
mes "Nobody is inside the instance.";
close;
}else{
mes @startnum$+" and "+@totalpeak+" - "+@map$;
goto L_Loop;
end;
}
not sure how to use getusersname for a specified map though because i want it to return the names of the players instead of the count =\
Question
Wise
is it possible to do this?
instance map name: 1@test
a script that would show all the list of the player's names who are inside the instances (even in different zones of instances like 0011@test and 0021@test)
i tried getmapusers but didn't work =\
EDIT:
Okay i made it working with this:
not sure how to use getusersname for a specified map though because i want it to return the names of the players instead of the count =\
Edited by Mavis1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.