Re: Streamer Plugin -
DRIFT_HUNTER - 21.08.2016
Quote:
Originally Posted by Dodo9655
If I put my objects in a filterscript to allow for object reloading while the server is running, do I need to also Destroy them under "OnFilterScriptExit" ?
Because right now, reloading the filterscript causes the objects to dissapear, and not appear again after the fs is reloaded.
|
Yes you need to Destroy them on unload, if you dont objects will just duplicate.
Re: Streamer Plugin -
Luca12 - 04.09.2016
Can anyone help me. I have version of streamer 2.4 and all works fine when I run server. But yesterday when I update this new version of streamer plugin I compiled pawno and run server I get bunch of runtime errors but when I back again to 2.4 version all works fine again. Thanks.
Re: Streamer Plugin -
Crayder - 04.09.2016
Quote:
Originally Posted by Luca12
Can anyone help me. I have version of streamer 2.4 and all works fine when I run server. But yesterday when I update this new version of streamer plugin I compiled pawno and run server I get bunch of runtime errors but when I back again to 2.4 version all works fine again. Thanks.
|
You must update both, the .dll/.so in your plugins folder and the .inc file in your includes folder. THEN recompile and run.
Re: Streamer Plugin -
rt-2 - 07.09.2016
Quote:
Originally Posted by ALiScripter
does any body know how to mute the warnings of labels and pickups by the compiler?. The warning is "symbol is assigned a value that is never used".
|
Use
Код:
CreateDynamicObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz):
Instead of
Код:
var = CreateDynamicObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz):
Re: Streamer Plugin -
Luca12 - 07.09.2016
Quote:
Originally Posted by Crayder
You must update both, the .dll/.so in your plugins folder and the .inc file in your includes folder. THEN recompile and run.
|
I did that few times actually and always it's the same 2.4 version streamer works perfect while new updated streamer when I run samp server exe I get runtime errors
Re: Streamer Plugin -
Crayder - 07.09.2016
Quote:
Originally Posted by Luca12
I did that few times actually and always it's the same 2.4 version streamer works perfect while new updated streamer when I run samp server exe I get runtime errors
|
Perhaps it'd make a bit of sense to show us the runtime errors then.
Re: Streamer Plugin -
Netrinox - 19.09.2016
Anyone else had an issue with some objects rotating out of position after the server been online for a while?
Re: Streamer Plugin -
ball - 20.09.2016
GetPlayerSurfingObjectID don't work with dynamic objects. Is there any possibility to get it working?
Re: Streamer Plugin -
Bombo - 15.10.2016
Do you use any threads or fork, maybe? The last version of your plugin (v2.8.2) brings <defunct> processes in a tasklist.
OS: Ubuntu 15.10
Re: Streamer Plugin -
cm666 - 15.10.2016
CreateDynamicObjectEx bugs in 214 commits
Version 2.8.2 is normal. Linking on my OS and download here
https://github.com/samp-incognito/sa...lugin/releases
sample code
CreateDynamicObjectEx(2000, -248.31242, 36.19466, 1.20491, 0.00000, 0.00000, 0.00000,300.0,300.0);
CreateDynamicObject(2001, -250.45900, 28.61890, 1.20490, 0.00000, 0.00000, 0.00000,-1,-1,-1,300.0,300.0);
CreateDynamicObject(2002, -252.03870, 22.93730, 1.20490, 0.00000, 0.00000, 0.00000);
2000 model not streamed in 214 commits , on version 2.8.2 normal
Re: Streamer Plugin -
Romz - 17.10.2016
Add these functions and callbacks:
Код:
OnObjectStreamIn(objectid, forplayerid);
OnObjectStreamOut(objectid, forplayerid);
IsObjectStreamedIn(objectid, forplayerid);
Re: Streamer Plugin -
diclofoss - 18.10.2016
Hello!
Under the CentOS7 I see Segmentation Fault error.
I read
https://github.com/samp-incognito/sa...gin/issues/107
And tried to compile myself:
> git clone
https://github.com/samp-incognito/sa...mer-plugin.git
> cd samp-streamer-plugin
> make
After that I have copied new streamer.so to the server plugin forlder.
But the error still occurs.
Re: Streamer Plugin -
Barnwell - 18.10.2016
I like the latest version!
Re: Streamer Plugin -
IstuntmanI - 18.10.2016
Quote:
Originally Posted by Kolstin
Add these functions and callbacks:
Код:
OnObjectStreamIn(objectid, forplayerid);
OnObjectStreamOut(objectid, forplayerid);
IsObjectStreamedIn(objectid, forplayerid);
|
You can use Streamer_IsItemVisible for "IsObjectStreamedIn" . As for these StreamIn/Out callbacks, there is no need for that. You can find other ways of doing something.
Re: Streamer Plugin -
Jeroen52 - 18.10.2016
Quote:
Originally Posted by diclofoss
|
Did you install and use the 32-bit dependencies?
Re: Streamer Plugin -
vannesenn - 04.11.2016
How to create over 2000 vehicles with Streamer?
Re: Streamer Plugin -
TommyB - 04.11.2016
Quote:
Originally Posted by vannesenn
How to create over 2000 vehicles with Streamer?
|
This plugin doesn't support vehicles.
Re: Streamer Plugin -
vannesenn - 04.11.2016
https://sampwiki.blast.hk/wiki/Limits -> "(✝✝) To circumvent these limits, it is possible to use a streamer. Streamers work by only creating the objects/vehicles etc. that are close to players. See here (vehicles and actors not supported, but there are streamers out there for those)."
Re: Streamer Plugin -
NaS - 05.11.2016
Quote:
Originally Posted by vannesenn
https://sampwiki.blast.hk/wiki/Limits -> "(✝✝) To circumvent these limits, it is possible to use a streamer. Streamers work by only creating the objects/vehicles etc. that are close to players. See here (vehicles and actors not supported, but there are streamers out there for those)."
|
https://sampforum.blast.hk/showthread.php?tid=580937
One of the top threads in Plugin Development.
Re: Streamer Plugin -
vannesenn - 05.11.2016
But that's old verision. Kurta didn't updated plugin to 2.8.2