07.10.2011, 13:02
Ola queria saber como almenta a explosao da bomba pra Tira mais vida das pessoa pq a explosao ta mt pequena e nao mata quase nmg sу quem ta emcima da bomba .-. Codigo :
PHP код:
if(!strcmp(cmd,"/bomba",true))
{
new Float:x,Float:y,Float:z;
if(BombTime[playerid] == 1)
{
SendClientMessage(playerid, COLOR_GREY, " Vocк precisa esperar 4 minutos para usar esse comando denovo !");
return 1;
}
if(PlayerInfo[playerid][pMember] == 22)
{
GetPlayerPos(playerid,x,y,z);
ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.0, 0, 0, 0, 0, 0);
SetTimerEx("CriarExplosaos",8000,false,"fffdf",x,y,z,10,2000.0);
SetTimerEx("CriarExplosaoss",8000,false,"fffdf",x,y,z,10,2000.0);
GivePlayerGP(playerid, 100);
dinid = CreateDynamicObject(1654,x+1,y,z-0.8,0,0,0);
SetTimerEx("DestruirObjetos",8000,false,"d",dinid);
SendClientMessage(playerid,COLOR_YELLOW,"Vocк armou a bomba!e ganhou R$100");
BombTime[playerid] = 1;
SetTimerEx("BombTimer", 240000, false, "i", playerid);
WantedPoints[playerid]+=1;
SetPlayerCriminal(playerid,255,"Atentado terrorista");
}
else return SendClientMessage(playerid, COLOR_GREY,"Vocк nгo й membro da Al-Qaeda.");
return 1;
}