SA-MP Forums Archive
[Ajuda] Barreira e comandos profissгo - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Barreira e comandos profissгo (/showthread.php?tid=452632)



Barreira e comandos profissгo - MoonRey - 22.07.2013

Bom, eu achei uma GM que vem barreira, porem, nгo existe o comando para remover a barreira sу para colocar ela, alguem saberia como eu posso adicionar o comando /removerbarreira?
E outra duvida, quando digito /profissгo, vem uma lista no chat com os comandos, teria algum jeito de fazer aparecer uma janela com os comandos quando digita /profissгo?


Re: Barreira e comandos profissгo - Markoss - 22.07.2013

poste o comando /PROFISSAO e o de criar a barreira!


Respuesta: Barreira e comandos profissгo - MoonRey - 22.07.2013

Da Barreira:
pawn Код:
if(strcmp(cmdtext,"/barreira", true)==0){
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), P_CONTAS, aname);
if(dini_Int(file, "Profissao") == Policial_C || dini_Int(file, "Profissao") == Policial_F || dini_Int(file, "Profissao") == Recruta || dini_Int(file, "Profissao") == Bope || dini_Int(file, "Profissao") == Swat || dini_Int(file, "Profissao") == Rotam || dini_Int(file, "Profissao") == Policial_M || dini_Int(file, "Profissao") == FBI || dini_Int(file, "Profissao") == Interpol || dini_Int(file, "pAdm01") == 1){
if(dini_Int(file,"CriouBarreira") == 1){
SendClientMessage(playerid, Vermelho, "(ERRO) Vocк jб criou uma barreira recentemente!");
return 1;
}
new Float:X, Float:Y, Float:Z, Float:A;
new br;
GetPlayerPos(playerid, X, Y, Z);
GetPlayerFacingAngle(playerid, A);
br = CreateObject(981, X, Y, Z, 0.0, 0.0, A+180);
SetPlayerPos(playerid, X, Y, Z+4);
SetTimerEx("DestruirObjeto",60000,false,"d",br);
SendClientMessage(playerid,0x0080FFAA, "{0099FF}(~){CCCCFF} Vocк criou uma barreira!");
GameTextForPlayer(playerid, "~w~Barreira ~r~Criada", 5000, 5);
dini_IntSet(file, "CriouBarreira", 1);
return 1;
}
}
Aqui um dos comandos de /ajudaemprego

pawn Код:
if(strcmp(cmdtext, "/ajudaemprego", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), P_CONTAS, aname);
if(dini_Int(file, "Profissao") == Desempregado){
SendClientMessage(playerid, Verde,"Desempregado");
}
if(dini_Int(file, "Profissao") == MTriad){
SendClientMessage(playerid, C_PC,"|________________________________________|");
SendClientMessage(playerid, Branco,"/venderak [id]");
SendClientMessage(playerid, Branco,"/venderm4 [id]");
SendClientMessage(playerid, Branco,"/venderswanoff [id]");
SendClientMessage(playerid, Branco,"/vendersniper [id]");
SendClientMessage(playerid, Branco,"/vendertec [id]");
SendClientMessage(playerid, Branco,"/plantarbomba");
SendClientMessage(playerid, Branco,"/cp - Chat Profissгo.");
SendClientMessage(playerid, Branco,"/assaltar - Vб ate o Banco e assalte.");
SendClientMessage(playerid, C_PC,"|________________________________________|");
}