zcmd /pm help
#1

Hey people, i want a zcmd /pm cmd... It ryed to convert strcmp one to zcmd but jail....

I tryed this:

pawn Код:
COMMAND:pm(playerid, params[])
    {
        tmp = strtok(cmdtext,idx);
       
        if(!strlen(tmp) || strlen(tmp) > 5) {
            SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"Usage: /pm (id) (message)");
            return 1;
        }
       
        new id = strval(tmp);
        gMessage = strrest(cmdtext,idx);
       
        if(!strlen(gMessage)) {
            SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"Usage: /pm (id) (message)");
            return 1;
        }
       
        if(!IsPlayerConnected(id)) {
            SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"/pm : Bad player ID");
        }
       
        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,PM_OUTGOING_COLOR,Message);
            format(Message,sizeof(Message),"** %s(%d): %s",pName,playerid,gMessage);
            SendClientMessage(id,PM_INCOMING_COLOR,Message);
            PlayerPlaySound(id,1085,0.0,0.0,0.0);
           
            printf("PM: %s",Message);
           
        }
        else {
            SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"You cannot PM yourself");
        }
        return 1;
    }
Thanks
Reply


Messages In This Thread
zcmd /pm help - by ricardo178 - 12.03.2011, 19:40
Re: zcmd /pm help - by xir - 12.03.2011, 19:47
Re: zcmd /pm help - by iMonk3y - 12.03.2011, 19:49
Re: zcmd /pm help - by Scrip - 12.03.2011, 19:55
Re: zcmd /pm help - by ricardo178 - 12.03.2011, 20:24

Forum Jump:


Users browsing this thread: 1 Guest(s)