#Separate list objects
30 messages · Page 1 of 1 (latest)
You would have to make your own system to convert it from a list to a string
To String just converts a list to [Index 1, Index 2, Index 3, Index 4, Index.....]
It does?
Man they changed that
it still doesnt compare to just arranging the list yourself
true
whats cooler?
"[Player A, Player B, Player C]"
or
"3 Players in party
Player A
Player B
Player C"
Right, there's no easy way of putting a line break after each list item to make it "cool" as option 2 in your last comment?
You can with a list
You basically have iterate over each item and convert it to a string
All it is, is a For Each loop
Gimme a few and I'll get back in my room and I'll get a picture
I tried the for each loop but it just kept changing the text from player a to player b
For Each iterates over each item in a list in a single Cv2 tick
you will need a way to format the player names
use a String Variable and String Concat
I have string format
Ok
I was reading about the concat when I was researching this
I'll give it a shot and see what I can learn