mob
var/Team[6]
client
Center()
for(var/mob/Pokemon/P in usr.Team)
usr<<image(P,usr.loc)
Problem description:That works, but it displays every Pokemon I have in the list Team. How do I make it to show only one Pokemon in the list? Such as, the first Pokemon, or the second?
var/Team[6]
client
Center()
if(usr.Team.len)
var/mob/Pokemon/P=usr.Team[1]
usr<<image(P,usr.loc)
</DM>
That wll display the first pokemon.