19.02.2013, 02:01
Al compilar este comando dice que ha detectado un error y debe cerrarse:
PHP код:
CMD:certificar, playerid, params[]){
if(PlayerInfo[playerid][pAdmin] < 4) return SendClientMessage(playerid, COLOR_GRAD2, "ЎNo autorizado!");
if(!sscanf(params, "s[32]", params[0])){
if(strfind(params[0], "_" , true) != -1){
new string3[64], string[128];
format(string3,sizeof(string3),"Usuarios/%s.lvrp",params[0]);
if(INI_Exist(string3)){
new INI:ini = INI_Open(string3);
INI_WriteInt(ini, "Certificado", 0);
INI_Close(ini);
format(string, sizeof(string), "AdmLVRP: %s certificу la cuenta a nombre: %s",PlayerName(playerid), params[0]);
SendAdminMessage(COLOR_YELLOW, 1, string);
} else SendClientMessage(playerid, COLOR_GRAD2, "No se encontrу una cuenta con ese nombre");
} else SendClientMessage(playerid, COLOR_GRAD2, "Usб: /certificar <Nombre_Jugador>");
return 1;
}