21.07.2011, 15:33
No meu server os zombies tem poderes, dai o poder 9 ele faz uma danзinha perto de um humano, e ele cai no chao.. o problema disso.. й q o zombie pode floodar essa danзinha.. queria por para usar a cada 25 segundos (25000 milessegundos) ela, e nao a qualquer hora.
pawn Код:
if (PRESSED(KEY_HANDBRAKE))
{
if(ConHabilidadZ[playerid] == 9) //Parasito
{
if(PlayerInfo[playerid][EsZombie] == 1)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(PlayerInfo[i][EsHumano] == 1)
{
if(IsPlayerAimingAtPlayer(playerid, i))
{
new Float: POSJ[3];
GetPlayerPos(i,POSJ[0],POSJ[1],POSJ[2]);
if(IsPlayerInRangeOfPoint(playerid,30.0,POSJ[0],POSJ[1],POSJ[2]))
{
if(IsPlayerFacingPlayer(playerid, i, 30))
{
if(YaPara[playerid] == 0)
{
//YaPara[playerid] = 1;
SetTimerEx("TYaP",60000,0,"d",playerid);
GameTextForPlayer(i,"~w~Tienes un parasito de ~r~Zombi!",5000,3);
TogglePlayerControllable(i,0);
ApplyAnimation(i,"PED","KO_shot_stom",4.0, 0, 0, 0, 0, 0);
SetTimerEx("Desc",8000,0,"d",i);
ApplyAnimation(playerid,"BSKTBALL","BBALL_def_loop",4.0,1,0,0,0,0);
return 1;
}
}
}
}
}
}
}
}