[AJUDA] Comandos /kick e /ban
#10

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;
}
Reply


Messages In This Thread
[AJUDA] Comandos /kick e /ban - by Niko_Bellik - 29.09.2011, 16:38
Respuesta: [AJUDA] Comandos /kick e /ban - by ReDKiiL - 29.09.2011, 16:46
Re: Respuesta: [AJUDA] Comandos /kick e /ban - by Niko_Bellik - 29.09.2011, 17:12
Respuesta: [AJUDA] Comandos /kick e /ban - by ReDKiiL - 29.09.2011, 17:19
Re: [AJUDA] Comandos /kick e /ban - by CyNiC - 29.09.2011, 17:22
Re: Respuesta: [AJUDA] Comandos /kick e /ban - by Niko_Bellik - 29.09.2011, 17:57
Respuesta: [AJUDA] Comandos /kick e /ban - by ReDKiiL - 29.09.2011, 18:25
Re: [AJUDA] Comandos /kick e /ban - by Jason` - 29.09.2011, 18:29
Re: [AJUDA] Comandos /kick e /ban - by Niko_Bellik - 29.09.2011, 18:52
Re: [AJUDA] Comandos /kick e /ban - by Lipe_Stronda - 29.09.2011, 18:55

Forum Jump:


Users browsing this thread: 1 Guest(s)