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))
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))