Ok Guys, got a question on a nested list and how to return the values from it.
Writing a scout script for a game I play.
The return is this:
[[278,278,-1,[25076,u'name',3,6,u'',0,0,1,[0,0,None,5]]]]
[[278,279,-1,[25076,u'name',3,6,u'',0,0,1,[0,0,None,5]]]]
I'm wanting to place the coordinates i.e. 278 and 279 along with the 3rd value in this case -1 into a list.
In this format [278,278,-1][278,279,-1]
I can get the return of the first line but after that it just repeats the same line.
Any thoughts?