18.03.2018, 15:31
Pesso a ajuda de vocкs para com esse erro que nгo consigo resolver.
CODE:
Код:
zombies.pwn(180) : error 017: undefined symbol "Itter_Add" zombies.pwn(185) : error 017: undefined symbol "Itter_Add" zombies.pwn(196) : error 017: undefined symbol "Itter_Add" zombies.pwn(779) : warning 203: symbol is never used: "Itter_Create"
PHP код:
Itter_Create (Vehicle, MAX_VEHICLES);//line of erro (27)
PHP код:
public OnFilterScriptInit()
{
for(new i =0; i<= MAX_PLAYERS;i++){
if(IsPlayerConnected(i) && !IsPlayerNPC(i)){
Itter_Add(Player,i); //line of erro (179)
AtirandoTimer[i] = SetTimerEx("Atirando",250,1,"i",i);
ZombieKill[i] = -1;
}
else if(IsPlayerConnected(i) && IsPlayerNPC(i)){
Itter_Add(Bot,i);//line of erro (184)
if(!strfind(PlayerName(i),ZOMBIE_NAME,true)){
SetupZombie(i);
}
}
}
new Float:h;
for(new v=0;v<MAX_VEHICLES;v++){
GetVehicleHealth(v,h);
if(h)Itter_Add(Vehicle,v);//line of erro (194)
}
return 1;
}