[PETICION]Announce
#6

Es mejor asн, por que si el anuncio estб muy largo se verб mal ja.
Quitas el define y agregas:

osea йste:

pawn Код:
#define ANUNCIO "Probando Anuncio"
por йste:

pawn Код:
new ANUNCIO[128] = "Probando Anuncio";
Y despuйs:

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;
}
Y al final pones(si es que no lo tienes):

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;
}
Asн continuarб avanzando sуlo que con el anuncio cambiado.

EDIT: strtok por strrest, Gracias a Karkanos :P
Reply


Messages In This Thread
[PETICION]Announce - by Karkanos - 25.01.2010, 14:32
Re: [PETICION]Announce - by Zoutdaxv - 25.01.2010, 15:42
Re: [PETICION]Announce - by TheChaoz - 25.01.2010, 15:51
Re: [PETICION]Announce - by Karkanos - 25.01.2010, 19:33
Re: [PETICION]Announce - by TheChaoz - 25.01.2010, 21:07
Re: [PETICION]Announce - by Zoutdaxv - 25.01.2010, 21:16
Re: [PETICION]Announce - by xenowort - 25.01.2010, 21:44
Re: [PETICION]Announce - by Zoutdaxv - 25.01.2010, 21:46
Re: [PETICION]Announce - by xenowort - 25.01.2010, 22:22
Re: [PETICION]Announce - by Karkanos - 26.01.2010, 00:46

Forum Jump:


Users browsing this thread: 2 Guest(s)