30.05.2009, 00:27
Donny is right, you aren't indexing them properly, and it is most likely due to the fact that you don't actually give an index at all.
Use this instead:
Hopefully this helps,
Use this instead:
pawn Код:
cmd[0] = strtok(cmdtext, idx); // This tells the compiler to place the returned string into the first (and following) cell(s) of your 'cmd' array.
~Cueball~