30.09.2016, 14:18
(
Последний раз редактировалось Gotham; 30.09.2016 в 15:53.
)
To save the banned play you should make a variable and stuffs, I may be able to help if you show,
On TOpic:It might be because there are no other players, If there are SCM may be bugged , use SendClientMessageToAll , don't be lazy to type the whole thing!
Well i'll give you the version of mine
On TOpic:It might be because there are no other players, If there are SCM may be bugged , use SendClientMessageToAll , don't be lazy to type the whole thing!
Well i'll give you the version of mine
PHP код:
CMD:ban(playerid, params[])
{
if(pInfo[playerid][AL] < 2) return SendClientMessage(playerid, red, "[ERROR] No allow!");
{
new PID;
new reason[64];
new str[128];
new Aname[MAX_PLAYER_NAME],Pname[MAX_PLAYER_NAME];
GetPlayerName(playerid,Aname,sizeof(Aname));
GetPlayerName(PID,Pname,sizeof(Pname));
if(sscanf(params,"us[64]",PID,reason)) return SendClientMessage(playerid, red, "[U]: /ban playerid) reason)");
if(!IsPlayerConnected(PID)) return SendClientMessage(playerid, -1, "[ERROR]: no player!");
format(str,sizeof(str),"%s has been banned by Administrator %s Reason: %s",Pname,Aname,reason);
SendClientMessageToAll(-1,str);
Ban(PID);
//Rest part when I get your variables!
}
return 1;
}