SA-MP Forums Archive
[Ajuda] Localidades - 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] Localidades (/showthread.php?tid=462660)



Localidades - MoonRey - 08.09.2013

Olб, eu queria saber como posso fazer pra quando o player digita /plantarbomba, aparecer uma mensagem pra todo mundo dizendo por exemplo: O "Player" plantou uma bomba nas Localidades de "Local".

Meu codigo de plantar bomba:
pawn Код:
if(!strcmp(cmd,"/plantarbomba",true)){
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(dini_Int(file, "Profissao") == Terrorista || dini_Int(file, "Profissao") == YKZ || dini_Int(file, "aAdmin") == 1 || IsPlayerAdmin(playerid)){
new dinid,Float:x,Float:y,Float:z;
if(IsPlayerInAnyVehicle(playerid)){
SendClientMessage(playerid,Vermelho,"(ERRO) Vocк nгo pode plantar uma bomba dentro do veiculo.");
return 1;
}
GetPlayerPos(playerid,x,y,z);
ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.0, 0, 0, 0, 0, 0);
SetTimerEx("CriarExplosao",8000,false,"fffdf",x,y,z,2,50.0);
dinid = CreateObject(1252,x,y,z-0.8,0,0,0);
SetTimerEx("DestruirObjeto",8000,false,"d",dinid);
GameTextForPlayer(playerid,"~r~BOMBA ~b~PLANTADA",1000,4);
return 1;
}
}



Re: Localidades - Samuel300 - 08.09.2013

SendClientMessageToAll


Re: Localidades - MoonRey - 08.09.2013

Isso eu sei .-. Mas queria saber como posso fazer que se ele plantar em tal area apareзa que ele plantou nessa tal area


Re: Localidades - darkxdll - 08.09.2013

Use este script ! https://sampforum.blast.hk/showthread.php?tid=154653


Re: Localidades - MoonRey - 08.09.2013

Consegui aqui :3 Valew