Objects Don't Show - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Objects Don't Show (
/showthread.php?tid=402788)
Objects Don't Show -
Abreezy - 28.12.2012
For some reason when I spawn directly on the objects, it doesn't load/show at all.
Here's a sample code
Код:
CreateObject(13607, -2141.34, -1656.56, 463.76, 0.00, 0.00, 0.00);
And an image of it not working
How could I fix this? Dying and respawing doesn't fix it either
Re: Objects Don't Show -
[HiC]TheKiller - 28.12.2012
Re-enter your car? Or eject the player from the car / use a decent object streamer?
Re: Objects Don't Show -
Scott Zulkifli - 28.12.2012
if it's floating / falling?
CreateObject may no longer have because it exceeds the maximum limit.
try using CreateDynamicObject
it will be required streamer.inc
CreateDynamicObject (model, x, y, z, rx, ry, rz);
Re: Objects Don't Show -
Dragonborn - 28.12.2012
i don't know if i'ts really help you but...
Use an streamer include.
I recommend the @Icognito's Streamer, here's the topic :
https://sampforum.blast.hk/showthread.php?tid=102865
Replace the "CreateObject" functions on your script to "CreateDynamicObject"
i hope that helped you
Re: Objects Don't Show -
Abreezy - 28.12.2012
I just switched them to CreateDynamicObject, still doesn't show up even when I get out of the vehicle.