It sends only the Message to me..
#5


pawn Код:
new length = strlen(cmdtext);
    while ((idx < length) && (cmdtext[idx] <= ' '))
    {
    idx++;
    }
    new offset = idx;
    new result[64];
    while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
    {
    result[idx - offset] = cmdtext[idx];
    idx++;
    }
    result[idx - offset] = EOS;
    {
I think you'll not need things like this. Just as a tip :P
Reply


Messages In This Thread
It sends only the Message to me.. - by Erkan - 14.09.2009, 07:10
Re: It sends only the Message to me.. - by Zeex - 14.09.2009, 09:06
Re: It sends only the Message to me.. - by Erkan - 14.09.2009, 09:18
Re: It sends only the Message to me.. - by Calgon - 14.09.2009, 12:50
Re: It sends only the Message to me.. - by Jakku - 14.09.2009, 13:38

Forum Jump:


Users browsing this thread: 1 Guest(s)