/pm not working
#3

Use this one this one works

pawn Код:
if(strcmp("/pm", cmd, true) == 0)
        {
        tmp = strtok(cmdtext,idx);

        if(!strlen(tmp) || strlen(tmp) > 5) {
            SendClientMessage(playerid,COLOR_YELLOW,"Usage: /pm (id) (message)");
            return 1;
        }

        new id = strval(tmp);
        gMessage = strrest(cmdtext,idx);

        if(!strlen(gMessage)) {
            SendClientMessage(playerid,COLOR_YELLOW,"Usage: /pm (id) (message)");
            return 1;
        }

        if(!IsPlayerConnected(id)) {
            SendClientMessage(playerid,COLOR_RED," Bad player ID");
            return 1;
        }

        if(playerid != id) {
            GetPlayerName(id,iName,sizeof(iName));
            GetPlayerName(playerid,pName,sizeof(pName));
            format(Message,sizeof(Message),">> %s(%d): %s",iName,id,gMessage);
            SendClientMessage(playerid,COLOR_YELLOW,Message);
            format(Message,sizeof(Message),"** %s(%d): %s",pName,playerid,gMessage);
            SendClientMessage(id,COLOR_YELLOW,Message);
            PlayerPlaySound(id,1085,0.0,0.0,0.0);

            printf("PM: %s",Message);

        }
        else {
            SendClientMessage(playerid,COLOR_RED," You cannot PM yourself");
        }
        return 1;
    }
        else {
            SendClientMessage(playerid,COLOR_RED,"unknown command use ");
        }
and at this also
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];
    new idx;
   

    cmd = strtok(cmdtext, idx);
Reply


Messages In This Thread
/pm not working - by geerdinho8 - 09.01.2012, 17:54
Re: /pm not working - by Face9000 - 09.01.2012, 17:55
Re: /pm not working - by myandyou - 09.01.2012, 18:37
Re: /pm not working - by Konstantinos - 09.01.2012, 18:49
Re: /pm not working - by geerdinho8 - 10.01.2012, 18:19
Re: /pm not working - by myandyou - 10.01.2012, 18:57

Forum Jump:


Users browsing this thread: 1 Guest(s)