SA-MP Forums Archive
Objects not appearing - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Objects not appearing (/showthread.php?tid=307266)



Objects not appearing - XxCozzaxX - 29.12.2011

I have simple CreateObjects OnGameModeInit and a lot of them don't show until you've died 2 or 3 times near where the objects *should* be in the server, any ideas?


Re: Objects not appearing - RBTDM - 29.12.2011

There may be too much object in a same location.
or
The maximum number is 30000 objects but in some host it will get lag when it cross 5000 [depend on host]


Re: Objects not appearing - XxCozzaxX - 29.12.2011

There are under 50 objects.


Re: Objects not appearing - RBTDM - 29.12.2011

Is that much object is a same location or spreaded. can u show the pic how ur mta is?


Re: Objects not appearing - XxCozzaxX - 29.12.2011

Spreaded, and sort of -

Before 3 deaths:



After:



Re: Objects not appearing - SnG.Scot_MisCuDI - 29.12.2011

is there anything under onplayerdeath.
And try to add the objects to OnPlayerSpawn


Re: Objects not appearing - RBTDM - 29.12.2011

u added this in filterscript ?
i think its ur net problem.
and 0.3d have some bug problem and i am using o.3c ask someone who use d.


Re: Objects not appearing - XxCozzaxX - 29.12.2011

Quote:
Originally Posted by RBTDM
Посмотреть сообщение
u added this in filterscript ?
i think its ur net problem.
and 0.3d have some bug problem and i am using o.3c ask someone who use d.
Gamemode.

OnPlayerDeath contains:

Код:
new currentveh;
    currentveh = GetPlayerVehicleID(playerid);
    DestroyVehicle(currentveh);
    SetPlayerScore(playerid,0);
    SendDeathMessage(killerid, playerid, reason);
OnPlayerSpawn object creation would make duplicates...