SA-MP Forums Archive
Incognito streamer does not stream - 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: Incognito streamer does not stream (/showthread.php?tid=314333)



Incognito streamer does not stream - MSI - 29.01.2012

Hi all, I use incognito streamer with this:

pawn Код:
#include <streamer>
This
native CreateDynamicObject(1491,1952.47326700,-5257.57128900,7.13422400,0.00000000,0.00000000,-180.00001985); //object(198)
And this is also not working:
native CreateDynamicObject(1491,1952.47326700,-5257.57128900,7.13422400,0.00000000,0.00000000,-180.00001985); //object(198)
Any suggestions?


Re: Incognito streamer does not stream - AndreT - 29.01.2012

There's no need to prefix the line with "native "!


Re: Incognito streamer does not stream - KreeDz - 29.01.2012

Delete the native before CreateDynamicObject...

Код:
CreateDynamicObject(1491,1952.47326700,-5257.57128900,7.13422400,0.00000000,0.00000000,-180.00001985);



Re: Incognito streamer does not stream - Konstantinos - 29.01.2012

If you are using already Incognito's Streamer then there are the natives.
Natives works with the parameters like
pawn Код:
(modelid, Float:X, Float:Y, Float:Z, Float:rX, Float:rY, Float:rZ, Float:DrawDistance)
Not
pawn Код:
(1491,1952.47326700,-5257.57128900,7.13422400,0.00000000,0.00000000,-180.00001985)
pawn Код:
// OnGameModeInit( )
CreateDynamicObject(1491,1952.47326700,-5257.57128900,7.13422400,0.00000000,0.00000000,-180.00001985); //object(198)



Re: Incognito streamer does not stream - MSI - 29.01.2012

Notworking the objects does not show. It is a filterscript look

pawn Код:
#define FILTERSCRIPT
#include <streamer>
#include <a_samp>

#if defined FILTERSCRIPT

public OnFilterScriptInit()
{
CreateDynamicObject(16685,1879.24951200,-5230.45068400,15.61631600,0.00000000,0.00000000,89.99998128); //object
CreateDynamicObject(16685,1969.27099600,-5230.32519500,15.63122000,0.00000000,0.00000000,-270.00000112); //object(1)
CreateDynamicObject(16685,1925.03686500,-5342.80175800,15.63240300,0.00000000,0.00000000,-270.00000112); //object(2)
print("\n--------------------------------------");
    print(" Blank Filterscript by your name here");
    print("--------------------------------------\n");
    return 1;
}
Btw it is a MTA map converted with convertffs.com


Re: Incognito streamer does not stream - Konstantinos - 29.01.2012

First goes
pawn Код:
#include < a_samp >
// And then the others..
#include < streamer >
And make sure the coordinates are correct.


Re: Incognito streamer does not stream - MSI - 29.01.2012

Weird, not working... Or are converted MTA maps not compatible with samp?

http://pastebin.com/iEHHPniw this is it


Re: Incognito streamer does not stream - KreeDz - 29.01.2012

Are you 100% percent sure that you have the streamer plugin? The latest version in case if you use samp 0.3d.


Re: Incognito streamer does not stream - MSI - 29.01.2012

I have the latest version, I downloaded it 5 mins ago;p. Please try the pastebin link in my previous post. And post of it works

CreateObject (without incognito) also not working. Even in my map editor does it not show the objects