25.01.2010, 21:16
Es mejor asн, por que si el anuncio estб muy largo se verб mal ja.
Quitas el define y agregas:
osea йste:
por йste:
Y despuйs:
Y al final pones(si es que no lo tienes):
Asн continuarб avanzando sуlo que con el anuncio cambiado.
EDIT: strtok por strrest, Gracias a Karkanos :P
Quitas el define y agregas:
osea йste:
pawn Код:
#define ANUNCIO "Probando Anuncio"
pawn Код:
new ANUNCIO[128] = "Probando Anuncio";
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new
tmp[128],
cmd[128],
idx;
cmd = strtok(cmdtext, idx);
if(!strcmp(cmd,"/anuncio", true))
{
if(!IsPlayerAdmin(playerid)) return 0;
tmp = strrest(cmdtext, idx);//
if(!strlen(tmp)) return SendClientMessage(playerid, 0x00F600AA, "Usa /anuncio [texto]");
format(ANUNCIO, 20, "%s", tmp);
return 1;
}
return 0;
}
pawn Код:
stock strrest(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[128];
while ((index < length) && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
EDIT: strtok por strrest, Gracias a Karkanos :P