ID:175473
 
is it possible?, ive tried this No errors, but nothing in the list, whitch in the list is another list :O, any one help me out?


K+=MonsterList
input ("Who will you pvp?") in list ("[K]")
usr.StartPVPBattle(K)
All you need is change:

input ("Who will you pvp?") in list ("[K]")
input ("Who will you pvp?") in list (K)

And I think the current way you have the input will not work,

K+=MonsterList
input ("Who will you pvp?") in list ("[K]")
usr.StartPVPBattle(K)
Since K is a list you would have to either set the input line
K=input ("Who will you pvp?") in list ("[K]")
or
var/I=input ("Who will you pvp?") in list ("[K]")
usr.StartPVPBattle(I)
(The second may work better depending on if you use K as a list somewhere below usr.StartPVPBattle(K))