18.01.2015, 21:30
here is but i mean /blockpm [playerid]
PHP код:
COMMAND:togpm(playerid, params[])
{
if(GetPVarInt(playerid, "togPM") == 1)
{
SetPVarInt(playerid, "togPM", 0);
SendClientInfo(playerid, "You have enabled private messaging.");
}
else
{
SetPVarInt(playerid, "togPM", 1);
SendClientInfo(playerid, "You have disabled private messaging. You cannot use /pm anymore.");
}
return 1;
}