11.10.2011, 20:46
Coloque no final do seu GM.
Coloca no inicio da callback (public OnPlayerCommandText(playerid, cmdtext)
pawn Код:
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
pawn Код:
new cmd[128], tmp[60], idx;
cmd = strtok(cmdtext, idx);