sistema fake chat
#3

Bote isso no topo
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;
}
OnPlayerCommandText
pawn Код:
new cmd[30], tmp[128];
Reply


Messages In This Thread
sistema fake chat - by atsbs - 15.09.2011, 01:49
Re: sistema fake chat - by Dolby - 15.09.2011, 01:54
Re: sistema fake chat - by WLSF - 15.09.2011, 01:55
Re: sistema fake chat - by atsbs - 15.09.2011, 01:57
Re: sistema fake chat - by Dolby - 15.09.2011, 02:00
Re: sistema fake chat - by atsbs - 15.09.2011, 02:01
Re: sistema fake chat - by Dolby - 15.09.2011, 02:05
Re: sistema fake chat - by atsbs - 15.09.2011, 02:08
Re: sistema fake chat - by Dolby - 15.09.2011, 02:14
Re: sistema fake chat - by atsbs - 15.09.2011, 02:20

Forum Jump:


Users browsing this thread: 3 Guest(s)