No good Streamer? - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: No good Streamer? (
/showthread.php?tid=237833)
No good Streamer? -
yoan103 - 10.03.2011
Is there a good object streamer i can use? I don't understand where to put the natives in incongnito's streamer plugin, MidoStream no longer works... Is there a good streamer, or can i make my own one? If so, how do i make a object streamer?
Re: No good Streamer? -
Mike Garber - 10.03.2011
Incognito's streamer works, you don't put the natives anywhere, you use them.
1. Put streamer.inc in your includes folder
2. #include <streamer>
3. Put the streamer.dll in your plugins folder, and add "streamer" in your plugins line in server.cfg (without " ")
4. The natives are the functions, so if it says native CreateDynamicObject(..); you use the CreateDynamicObject part only.
Example;
pawn Код:
CreateDynamicObject(1682,19.27540000,2031.50000000,22.90000000,0.00000000,0.00000000,-120.00000000);
Re: No good Streamer? -
yoan103 - 10.03.2011
OK, thanks...