SA-MP Forums Archive
Problems with 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: Problems with streamer (/showthread.php?tid=220043)



Problems with streamer - vernz - 02.02.2011

I added object... I have lastest plugins streamer.. include i add #include <streamer> and all and its still shadow.. help


Re: Problems with streamer - Unknown123 - 02.02.2011

I didnt understand you.

You added this?:
pawn Код:
CreateDynamicObject(ObjectID, X, Y, Z, RX, RY, RZ;



Re : Problems with streamer - vernz - 02.02.2011

I added CreateObject under ongamemodeinit ... they are there but they appear only when im near them


Re : Problems with streamer - vernz - 02.02.2011

cuz of the streamer and i have the lastest version..


Re: Problems with streamer - On_Top_Non_Stop - 03.02.2011

1. Use the streamers functions, CreateDynamicObject.
2. Try this AFTER your CreateDynamicObject lines.

pawn Код:
for(new o; o < CountDynamicObjects(); o++)
    {
        if(IsValidDynamicObject(o))    
        {
            //Streamer_SetFloatData(STREAMER_TYPE_OBJECT, o, E_STREAMER_DISTANCE, 300.0);
            Streamer_SetFloatData(STREAMER_TYPE_OBJECT, o, E_STREAMER_DRAW_DISTANCE, 300.0);           
        }
    }
3. Edit button lol...


Re : Problems with streamer - vernz - 03.02.2011

still doesnt work....


Re: Problems with streamer - randomkid88 - 03.02.2011

Which streamer are you using. I assume its Incognito's, if thats the case this is the format:
pawn Код:
CreateDynamicObject(objectid, X, Y, Z, Xrot, Yrot, Zrot, VirtualWorld, Interior, Playerid, Drawdistance);
If you want it to be in all VW's, Interiors, and visible to all players put -1 in those spots.


Re : Problems with streamer - vernz - 03.02.2011

what is playerid ? and it doesnt work I tested it.... still shadows


Re: Problems with streamer - randomkid88 - 03.02.2011

You would put a number in playerid if you wanted it to show for a specific player only.


Re : Problems with streamer - vernz - 03.02.2011

Solved, I added CreateObject, and I added the line from On top blabla.. and it works, thanks ! you guys now about dini for neon ? I have neon system and I would like to make save them when server restarting?