24.06.2013, 09:06
Hello Guys
I have a problem in this command that TargetID name dont display in Client Message, here are codes
=)
I have a problem in this command that TargetID name dont display in Client Message, here are codes
pawn Код:
CMD:accountdisable(playerid, params[])
{
new TargetID;
new Reason;
if(pInfo[playerid][Adminlevel] < 5) return SendClientMessage(playerid, COLOR_RED, ""ERROR_MESSAGE"");
if(sscanf(params, "us", TargetID, Reason)) return SendClientMessage(playerid, COLOR_RED, "USAGE: /accountdisable [id] [Reason (optional)]");
if(TargetID == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_RED, "* Player Is Not Connected.");
pInfo[TargetID][Adisable] =1;
new str[128];
new str1[128];
new targetname[MAX_PLAYER_NAME];
GetPlayerName(TargetID,targetname,sizeof(targetname));
format(str,sizeof(str),"%s (%d) Has Been Disabled By An Admin. Reason: %s", targetname, TargetID, Reason);
SendClientMessageToAll(COLOR_HOTPINK, str);
format(str1,sizeof(str1),"**KICK: %s (%d) (ACCOUNT DISABLED) Account Disabled", targetname, TargetID);
SendClientMessageToAll(COLOR_HOTPINK, str1);
KickWithMessage(TargetID,"");
return 1;
}