Adding objects to pawno - 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: Adding objects to pawno (
/showthread.php?tid=370190)
Adding objects to pawno -
Monninpoikane - 19.08.2012
Hello my problem is kind this i make map with MTA1.3 and then i convert it with convertFFS. When i am converted it it wont show objects in game? is there some limit of objects or what? idont got no idea why it wont show the objects in game
Re: Adding objects to pawno -
Avi57 - 19.08.2012
Put them under OnGameModeInIt
It will Show
Re: Adding objects to pawno -
avivelkayam - 19.08.2012
there is limit of object and it 1000 but it doesnt matter.
you should put the code (CreateObject..) in OnGameModeInit
Re: Adding objects to pawno -
Youice - 19.08.2012
example:
pawn Код:
public OnGameModeInit()
{
CreateObject(1264,2488.19995117,-1653.80004883,12.89999962,0.00000000,0.00000000,0.00000000); //example for adding objects
AddStaticVehicleEx(408,2083.60009766,-2027.30004883,14.30000019,0.00000000,-1,-1,400); //example for adding vehicles
return 1;
}
Re: Adding objects to pawno -
Monninpoikane - 19.08.2012
yea i am putting it under gamemode unit but i mean i am going make big island but i cant put any objects anymore?
Re: Adding objects to pawno -
[MWR]Blood - 19.08.2012
Use a streamer.
https://sampforum.blast.hk/showthread.php?tid=102865
Re: Adding objects to pawno -
Monninpoikane - 19.08.2012
So does it add max count objects?
Re: Adding objects to pawno -
[MWR]Blood - 19.08.2012
Quote:
- Default maximum items: none (unlimited)
|
"The message you have entered is too short. Please lengthen your message to at least 4 characters." ...
Re: Adding objects to pawno -
Shetch - 19.08.2012
By using a streamer you will be able to place a LOT more objects around your server.
The streamer only shows a certain object to you if you are a certain distance from it.
Re: Adding objects to pawno -
Monninpoikane - 19.08.2012
Thank you i try it