:wink: Just a quick guess..................... try changing this value in your _ac130.gsc!
getAboveBuildingsLocation(location)
{
trace = bullettrace(location + (0,0,10000), location, false, undefined);
startorigin = trace["position"] + (0,0,-514);
zpos = 0;
maxxpos = 13; maxypos = 13;
for (xpos = 0; xpos < maxxpos; xpos++)
{
for (ypos = 0; ypos < maxypos; ypos++)
{
thisstartorigin = startorigin + ((xpos/(maxxpos-1) - .5) * 1024, (ypos/(maxypos-1) - .5) * 1024, 0);
thisorigin = bullettrace(thisstartorigin, thisstartorigin + (0,0,-10000), false, undefined);
zpos += thisorigin["position"][2];
}
}
zpos = zpos / (maxxpos*maxypos);
zpos = zpos + 1000; // make it larger to increase the height!
return (location[0], location[1], zpos);
}
If that's the value that works................... I'll assign a dvar to it so you can change it on a per map basis.
Fred