[AJUDA] /pm
#5

pawn Код:
new cmd[256];
new tmp[256];
new Message[256];
new gMessage[256];
new pName[MAX_PLAYER_NAME+1];
new iName[MAX_PLAYER_NAME+1];
cmd = strtok(cmdtext, idx);
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] /pm - by [AF]Junior - 14.02.2011, 20:44
Re: [AJUDA] /pm - by [RoxX]Ygor - 14.02.2011, 20:49
Re: [AJUDA] /pm - by [AF]Junior - 14.02.2011, 20:51
Re: [AJUDA] /pm - by [RoxX]Ygor - 14.02.2011, 20:56
Re: [AJUDA] /pm - by Macintosh - 14.02.2011, 20:59
Re: [AJUDA] /pm - by [AF]Junior - 14.02.2011, 21:05
Re: [AJUDA] /pm - by rjjj - 14.02.2011, 21:17
Re: [AJUDA] /pm - by zSuYaNw - 14.02.2011, 21:39
Re: [AJUDA] /pm - by [AF]Junior - 14.02.2011, 21:40

Forum Jump:


Users browsing this thread: 1 Guest(s)