Apologies, following correct code:
/cnp
PHP код:
if(strcmp(cmd, "/cnp", true) == 0) {
new id;
//new tmp[256];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)){
SendClientMessage(playerid, Vermelho, "/cnp [id]");
return 1;
}
id = strval(tmp);
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), P_CONTAS, aname);
if(dini_Int(file,"Tenente") == 1)
{
new pname[MAX_PLAYER_NAME];
GetPlayerName(id, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), P_CONTAS, pname);
dini_IntSet(file2, "Punidoo", 0);
format(string, sizeof(string),"O Tenente %s(ID: %d) colocou %s(ID:%d) na policia novamente", aname, playerid,pname,id);
SendClientMessageToAll(0xFF66FFAA, string);
} else {
SendClientMessage(playerid, Vermelho, "** {6DB3FE}Vocк nгo tem permissгo.");
}
return 1;
}
/tdp:
PHP код:
if(strcmp(cmd, "/tdp", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), P_CONTAS, aname);
if(dini_Int(file,"Tenente") >= 0){
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "* Digite: /tdp [id].");
return 1;
}
plid = strval(tmp);
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), P_CONTAS, pname);
if(IsPlayerConnected(plid)){
if(dini_Int(file2,"Profissao") == 3 || dini_Int(file2,"Profissao") == 4 || dini_Int(file2,"Profissao") == 5 || dini_Int(file2,"Profissao") == 6 || dini_Int(file2,"Profissao") == 7 || dini_Int(file2,"Profissao") == 8
|| dini_Int(file2,"Profissao") == 9 || dini_Int(file2,"Profissao") == 10 || dini_Int(file2,"Profissao") == 28 || dini_Int(file2,"Profissao") == 31 || dini_Int(file2,"Profissao") == 32){
dini_IntSet(file2,"Profissao",0);
dini_IntSet(file2,"Punidoo", 1);
format(string, sizeof(string),"O Tenente %s(ID: %d) retirou %s(ID:%d) da policia", aname, playerid,pname,plid);
SendClientMessageToAll(0xFF66FFAA, string);
Logarprof(plid);
}
}
}else{
format(string, sizeof(string), "(ERRO) Jogador nгo conectado!");
SendClientMessage(playerid, Vermelho, string);
}
return 1;
}
They are aligned left even ..