Help with PM.
#5

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
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);

// PM Command
if(strcmp("/pm", cmd, true) == 0)
{
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;
}
here you go, the PM command from base.pwn
Reply


Messages In This Thread
Help with PM. - by ownboy - 22.02.2010, 18:41
Re: Help with PM. - by Torran - 22.02.2010, 18:43
Re: Help with PM. - by Lexuss - 22.02.2010, 18:44
Re: Help with PM. - by Onyx09 - 22.02.2010, 18:46
Re: Help with PM. - by Lexuss - 22.02.2010, 18:51
Re: Help with PM. - by ownboy - 22.02.2010, 19:23
Re: Help with PM. - by Lexuss - 22.02.2010, 19:30
Re: Help with PM. - by ownboy - 22.02.2010, 19:31
Re: Help with PM. - by ownboy - 22.02.2010, 21:05

Forum Jump:


Users browsing this thread: 1 Guest(s)