Code:
new MyString[84] = "de_dust de_aztec de_nuke de_inferno"
Now, i need a way to split this string up into this array
Code:
new MyArray[20][20]
But the problem, is that MyString will not allways contain the same ammunt of words, So i need a way thats more "dynamic".
I tried doing:
Code:
for(new i=1;i<=g_NumberOfMaps;i++)
parse(MyString,MyArray[i],23)
But then it only copies the first Text ( in this case de_dust) over and over. So if someone can think of a nice and clean way of this it would save me a head ake.