Aqui estб amigo:
pawn Код:
if (strcmp(cmdtext,"/abrirportao", true)==0){
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(strcmp(aname, "Samuel_Quintal", true) == 0){
MoveObject(pdf,321.2999900,-1188.4000200, 72, 4.0); // Coloque as cordenas do seu portгo fechado
SendClientMessage(playerid,0xFFFFFFAA, "[PORTEIRO] Bem vindo a sua casa Samuel_Quintal!");
GameTextForPlayer(playerid, "~w~Portao ~g~Aberto!", 6000, 1);
return 1;
} else {
SendClientMessage(playerid,Vermelho,"[ERRO] Vocк nгo й o Samuel_Quintal!");
}
return 1;
}
if (strcmp(cmdtext,"/fecharportao", true)==0){
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(strcmp(aname, "Samuel_Quintal", true) == 0){
MoveObject(pdf,321.2999900,-1188.4000200, 78, 4.0); // Coloque as cordenas do seu portгo aberto
SendClientMessage(playerid,0xFFFFFFAA, "[PORTEIRO] Sua casa estб sendo fechada casa estб sendo fechada Samuel_Quintal!");
GameTextForPlayer(playerid, "~w~Portao ~r~Fechado!", 6000, 1);
return 1;
} else {
SendClientMessage(playerid,Vermelho,"[ERRO] Vocк nгo й o Samuel_Quintal!");
}
return 1;
}