so I have text that is like this
1 250 8
2 240 6
3 230 5
4 220 9
5 224 4
the first number means its order, the second is the x value, and the third is the y value.
how do I load this data to an array so I can spawn #1 at x 250 y 8 or #2 at x 240 y 6
should i make it into xml?
<object>
<num>1</num>
<x>220</x>
<y>4</y>
</object>
<object>
<num>2</num>
<x>240</x>
<y>7</y>
</object>
[/code:3rz9ngu2]
but how do i load it into an array, to spawn the objects, or is that even necessary?