SA-MP Forums Archive
xStreamer Not Working Have I Done It All Correct? - 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: xStreamer Not Working Have I Done It All Correct? (/showthread.php?tid=73846)



xStreamer Not Working Have I Done It All Correct? - aspire5630 - 18.04.2009

Right, im using xStreamer for my server
and i have added the plugins .etc
added the includes into my pawn file
added the filterscript

and it doesent work

My Host Looks like this





Re: xStreamer Not Working Have I Done It All Correct? - Outbreak - 18.04.2009

The filterscript isn't that reliable really, you're far better off downloading the plugin version

http://forum.sa-mp.com/index.php?topic=85795.0

If your host server uses Linux then xStreamer.dll won't work..

If your IRC filterscript is working then the xStreamer.dll file should be fine since its a windows server..


If irc isnt working then you've probably got a Linux server and need the xstreamer.so file


But i'd recommend the xstreamer plugin over the filterscript, its far more reliable.

http://forum.sa-mp.com/index.php?topic=85795.0


Re: xStreamer Not Working Have I Done It All Correct? - aspire5630 - 18.04.2009

Quote:
Originally Posted by Outbreak
The filterscript isn't that reliable really, you're far better off downloading the plugin version

http://forum.sa-mp.com/index.php?topic=85795.0

If your host server uses Linux then xStreamer.dll won't work..

If your IRC filterscript is working then the xStreamer.dll file should be fine since its a windows server..


If irc isnt working then you've probably got a Linux server and need the xstreamer.so file


But i'd recommend the xstreamer plugin over the filterscript, its far more reliable.

http://forum.sa-mp.com/index.php?topic=85795.0
Ok right, yeah its windows
soo what do i need to do?
i have got it in the plugin?


Re: xStreamer Not Working Have I Done It All Correct? - aspire5630 - 18.04.2009

Please help, Been waiting all day


Re: xStreamer Not Working Have I Done It All Correct? - mannu - 29.05.2009

Ah that's a silly Fucking prob
i also got that prob
you r doing
CreateStreamedObject(objid,x,y,z,r1,r2,r3,500);
x=x-co-ordinate
y=y-co-ordinate
z=z-co-ordinate
r1 r2 r3 are rotations
upto here all is okey
wtf is 500==
in pawno replace ,500); with );

we don't need <500>

compile and server will Works
100% assured


Re: xStreamer Not Working Have I Done It All Correct? - Snyper - 29.05.2009

What's the error line? I'm looking at the screenie and I think you forgot your tabs for every single one.
The 500 is the range at what you can look at the object.

Quote:

Public OnGameModeInIt()
{
CreateStreamedObject(...)
return 1;
}




Re: xStreamer Not Working Have I Done It All Correct? - mannu - 29.05.2009

Don't worry about that
just do as i said replace ,500); with ); (don't forget to replace , before 500 or your FS/GM may not work
and 500 doesn't matter for xstreamer it is bullshit for xstreamer


Re: xStreamer Not Working Have I Done It All Correct? - copper - 29.05.2009

i have same problem i;m getting this error when i add #include <xStreamer> on top .

C:\Documents and Settings\User\Desktop\xStreamer\filterscripts\xStr eamer.pwn(15) : fatal error 100: cannot read from file: "xStreamer"

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Error.

What im doing wrong?


Re: xStreamer Not Working Have I Done It All Correct? - member - 29.05.2009

Hi copper,

follow these steps EXACTLY and hopefully it should work.

Quote:
Originally Posted by [B2K
Hustler ]
A lot of people have these problems with includes, including me.
Код:
 fatal error 100: cannot read from file: "includename"
The way I solved this was to:

1) Close Pawno
2) Copy/Move/ or Cut the Include file into the include folder. (\include)
3) Load up Pawno from it's direct source. DO NOT double click on your gamemode/ filterscript file (as most people do).
4) You should see a blank Pawno file open. Now Click on File>Open or type Ctrl+O or press the Open icon.
5) Locate your gamemode/filterscript file and open it.
6) IF you havn't got the include at the top add it
pawn Код:
#include <includename>
7) Compile, it, it Should work.
Hope that Helps copper.


Re: xStreamer Not Working Have I Done It All Correct? - copper - 29.05.2009

yes it worked but do you know if i have to add objects with createobject or createStreamedObject ?
thanks bdw