Hey Leute, ich hab ein Problem!
Ich mach neben bei ein DayZ Script und bin grad dabei die Zombies beim Spawnen völlig random zu spawnen..
Ich nutze dazu die "MapAndreas Methode" .. aber es will nicht wirklich.
Fehler beim Compilen sind nicht vorhanden.
Hier mein OnRNPCSpawn:
public OnRNPCSpawn(npcid)
{
SetPlayerSkin(npcid,162);
new
Float:pos[3],
x=random(4000)-2000,
y=random(4000)-2000,
Float:z;
for(new a; a < 100; a++)
{
MapAndreas_Init(MAP_ANDREAS_MODE_FULL);
MapAndreas_FindZ_For2DCoord(x, y, z);
if(z >= 5.0 && z < 30.0)
{
pos[0] = x;
pos[1] = y;
pos[2] = z;
SetRNPCPos(npcid, x, y, z);
}
}
SetPVarInt(npcid,"FollowPlayer",0);
}
Weiß da jemand mir zu helfen ?
Mfg, Michi.