SA-MP Forums Archive
How i can put 0.3c Objects in my Server! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP (https://sampforum.blast.hk/forumdisplay.php?fid=3)
+--- Forum: Client Support (https://sampforum.blast.hk/forumdisplay.php?fid=16)
+--- Thread: How i can put 0.3c Objects in my Server! (/showthread.php?tid=205347)



How i can put 0.3c Objects in my Server! - zoolon23 - 01.01.2011

i could put the 0.3c objects in the MTA, all is good now,
but when i add the object to my GameMode and run the server,
the object i selected is Other! (some old object)
this is my Object:
PHP код:
CreateObject(136082279.6855468751284.828857421941.928161621094500270); 
(this object is the Big logo of "Multiplayer San Anreas")

thanks for helpers!


Re: How i can put 0.3c Objects in my Server! - Anthony_Brassi - 02.01.2011

http://forum.sa-mp.com/showthread.ph...906#post992906

That's why You can't add it.


Re: How i can put 0.3c Objects in my Server! - AF1_CLAN - 02.01.2011

That function is old, change its from;

Код:
CreateObject(13608, 2279.685546875, 1284.8288574219, 41.928161621094, 50, 0, 270);
To

Код:
CreateObject(modelid, Float:X, Float:Y, Float:Z, Float:rX, Float:rY, Float:rZ, Float:DrawDistance = 0.0);
So

Код:
CreateObject(13608, 2279.685546875, 1284.8288574219, 41.928161621094, 50, 0, 270, 50); // change the 50 distance value to whatever you want, lower or higher
Ryder_[AF1]