19.03.2012, 21:34
Buenas a Todos,Tengo problemas con los comando con Funcion de txto, /comano [Texto] No me detcta el espacio, ose si escribo: /comano hola mundo solo me sale Hola y si escribo todo junto /comando HolaMuno me sale eso.
como puedo solucionarlo?. :S
Desde ya muchas gracias.
como puedo solucionarlo?. :S
Desde ya muchas gracias.
pawn Код:
if(strcmp(cmd, "/Comando", true) == 0)
{
if(IsPlayerConnected(playerid))
{
new tmp[128];
tmp = strtok(cmdtext, idx);
if(strlen(tmp) == 0)
{
SendClientMessage(playerid, -1, " [ ! ] Escribe: /Comando (Texto)");
return 1;
}
format(str, sizeof(str), "*%s", tmp);
SendClientMessage(playerid, -1, str);
return 1;
}
return 1;
}
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;
}