SA-MP Forums Archive
/PM - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: /PM (/showthread.php?tid=94701)



/PM - XxerykxX - 31.08.2009

Can anybody send me a /pm command here pls i cant find it anywhere pls dont say use option SEARCH

Thank you


Re: /PM - Redgie - 31.08.2009

Isn't /pm a default command in SA:MP?


Re: /PM - .::: Ecko :::. - 31.08.2009

Quote:
Originally Posted by Redgie
Isn't /pm a default command in SA:MP?
Yes it is.
use /pm [id] message

Ecko


Re: /PM - Calgon - 31.08.2009

Add this:

pawn Код:
public OnPlayerPrivmsg(playerid, recieverid, text[])
{
    format(string, sizeof(string), "PM: PM from %s(%d): %s", GetPlayerNameEx(playerid),playerid, text);
    SendClientMessage(recieverid,COLOR_MEDIUMBLUE,string);
    format(string, sizeof(string), "PM: PM sent to %s(%d): %s",GetPlayerNameEx(recieverid),recieverid, text);
    SendClientMessage(playerid,COLOR_MEDIUMBLUE,string);
    PMLog(string);
    return 0;
}



Re: /PM - brett7 - 01.09.2009

whats the point calgon?


Re: /PM - DeltaAirlines12 - 01.09.2009

Default Command!