It sends only the Message to me..
#2

I really suggest you to stop to make such weird things like
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;
    {
and start to use sscanf.
I've seen a lot of people doing like that, and I don't understand them all.... so it's not related only to you.
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)