11.01.2014, 08:50
stream and draw distances differ. Keep stream distance at 200.0 (as is - the default one) and add draw distance at 300.0
Replace any CreateDynamicObject with CDO and then add the stock at the bottom of your mode.
pawn Код:
stock CDO(modelid, Float: x, Float: y, Float: z, Float: rx, Float: ry, Float: rz, worldid = -1, interiorid = -1, playerid = -1, Float: streamdistance = 200.0)
{
new objectid = CreateDynamicObject(modelid, x, y, z, rx, ry, rz, worldid, interiorid, playerid, streamdistance);
Streamer_SetFloatData(STREAMER_TYPE_OBJECT, objectid, E_STREAMER_DRAW_DISTANCE, 300.0);
return objectid;
}