Quote: "I was trying to use a string variable added to another string variable too get information out of a tpye."
It doesn't quite work like that.
Taking TheComets example with the array, you could have each player's assets (health, score, position etc) stored under a single index and then change the index when necessary. A small example:
Rem ***** Main Source File *****
type character
x as integer
y as integer
z as integer
endtype
Dim Players(2) as character
Players(1).x = 10
Players(1).y = 60
Players(1).z = 20
Players(2).x = 33
Players(2).y = 28
Players(3).z = 9
CurrentPlayer as integer = 1
do
// do stuff
// move the current player
inc Players(CurrentPlayer).x, 1
// switch players
If Condition_for_switching_players = 1
CurrentPlayer = 2
Endif
loop
Basically, you change the index of the array to change the player.