Help with an object streamer? -
DeltaAirlines12 - 11.12.2009
I am trying to install an object streamer.... this is what I did: (I used midiostream)
1. Make sure the .inc file is where it belongs.
2. Used
www.convertffs.com/objects to convert my objects from "CreateObject" form to midio stream form.
3. Pasted them in my gamemode.pwn
4. Compiled then pawno quit.... so now it restarted but my game mode is saved, it just doesn't have the changes I made.
I HAVE SEARCHED, READ, LOOKED AND TRIED AT LEAST 10 TIMES BUT IT WON'T WORK!
I have even read this several times: (Main page)
http://forum.sa-mp.com/index.php?topic=62450.0
Can someone
PLEASE leave instructions on how to do it explaining
VERY VERY VERY detailed?
I am getting frustrated
:'( Thanks in
advance.
Re: Help with an object streamer? -
dice7 - 11.12.2009
Use this
http://forum.sa-mp.com/index.php?topic=127905.0
Change all of your CreateObject(modelid, Float:X, Float:Y, Float:Z, Float:rX, Float:rY, Float:rZ)
to
CreateDynamicObject(modelid, Float
, Float:y, Float:z, Float:rx, Float:ry, Float:rz, -1, -1, -1, 200.0);
Paste in your gamemode or in a filterscript, compile and run the server
Re: Help with an object streamer? -
Jeffry - 11.12.2009
Isnґt it CreateStreamObject(... ?
Re: Help with an object streamer? -
Correlli - 11.12.2009
Quote:
Originally Posted by Jeffry
Isnґt it CreateStreamObject(... ?
|
No, it's CreateDynamicObject for the Incognito's plugin.
Re: Help with an object streamer? -
DeltaAirlines12 - 11.12.2009
Quote:
Originally Posted by dice7
Use this http://forum.sa-mp.com/index.php?topic=127905.0
Change all of your CreateObject(modelid, Float:X, Float:Y, Float:Z, Float:rX, Float:rY, Float:rZ)
to
CreateDynamicObject(modelid, Float , Float:y, Float:z, Float:rx, Float:ry, Float:rz, -1, -1, -1, 200.0);
Paste in your gamemode or in a filterscript, compile and run the server
|
Can I use
www.convertffs.com/objects ? If so, whats the name of the format?
Re: Help with an object streamer? -
Correlli - 11.12.2009
Quote:
Originally Posted by DeltaAirlines12
|
You can use "Custom format".
Re: Help with an object streamer? -
DeltaAirlines12 - 11.12.2009
Quote:
Originally Posted by Don Correlli
Quote:
Originally Posted by DeltaAirlines12
|
You can use "Custom format".
|
I'm confused, I will try to figure it out though...
Re: Help with an object streamer? -
Correlli - 11.12.2009
Quote:
Originally Posted by DeltaAirlines12
I'm confused, I will try to figure it out though...
|
Choose "Custom format" and use this format:
Код:
CreateDynamicObject({modelid}, {x}, {y}, {z}, {rx}, {ry}, {rz}, -1, -1, -1, 200.0);
Re: Help with an object streamer? -
DeltaAirlines12 - 11.12.2009
Quote:
Originally Posted by Don Correlli
Quote:
Originally Posted by DeltaAirlines12
I'm confused, I will try to figure it out though...
|
Choose "Custom format" and use this format:
Код:
CreateDynamicObject({modelid}, {x}, {y}, {z}, {rx}, {ry}, {rz}, -1, -1, -1, 200.0);
|
Thanks Don Correlli! Dang, this is like the 50h time you have answered one of my questions on these forums, no wonder your a high roller!