SA-MP Forums Archive
[Plugin] Streamer Plugin - 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: Plugin Development (https://sampforum.blast.hk/forumdisplay.php?fid=18)
+--- Thread: [Plugin] Streamer Plugin (/showthread.php?tid=102865)



Re: Streamer Plugin - hillko - 08.03.2016

Quote:
Originally Posted by PT
Посмотреть сообщение
you me ?


Re: Streamer Plugin - PT - 08.03.2016

Quote:
Originally Posted by hillko
Посмотреть сообщение
you me ?
Yes you


Re: Streamer Plugin - Crayder - 08.03.2016

Quote:
Originally Posted by hillko
Посмотреть сообщение
write your own response error
Well I was actually trying to help you but I was an hour late, should've refreshed the page before replying.


Re: Streamer Plugin - PT - 08.03.2016

Well you need update the include and the plugin, not just the plugin or the include.


Re: Streamer Plugin - hillko - 09.03.2016

Quote:
Originally Posted by PT
Посмотреть сообщение
Well you need update the include and the plugin, not just the plugin or the include.
well I have the include and plugin updated


Re: Streamer Plugin - PrettyDiamond - 09.03.2016

[03:57:55] Loading plugin: streamer.so
[03:57:55]

*** Streamer Plugin v2.8 by Incognito loaded ***

Now my maps dont loading anymore :/

Quote:

CreateDynamicObject(9585, -2231.635986, 1750.079224, 6.118772, 0.0000, 0.0000, 0.0000, -1, -1, -1, 200.0, 0.0);

And i have a map changer:

Quote:

public CreateMapObjects()
{
print("Loading Map Objects...");
switch(CurrentMap)
{
case 1:

Thx for help me!


Re: Streamer Plugin - Kimble - 09.03.2016

In CreateDynamicObject what is this used for:

STREAMER_TAG_AREA areaid = STREAMER_TAG_AREA -1

?


Re: Streamer Plugin - HydraHumza - 16.03.2016

[18:49:54] *** Streamer Plugin: Include file version (0x279001) does not match plugin version (0x280001) (script might need to be recompiled with the latest include file)

A serious issue in Ubuntu version.


Re: Streamer Plugin - ZiGGi - 16.03.2016

Quote:
Originally Posted by Humza
Посмотреть сообщение
[18:49:54] *** Streamer Plugin: Include file version (0x279001) does not match plugin version (0x280001) (script might need to be recompiled with the latest include file)

A serious issue in Ubuntu version.
Update your streamer.inc file.


Re: Streamer Plugin - MartinSwag - 18.03.2016

Just upgraded to version 2.8, when I launch the server it prints some debug stuff and it won't load the plugin. How cam I fix this?


Re: Streamer Plugin - Jeroen52 - 18.03.2016

Quote:
Originally Posted by MartinSwag
Посмотреть сообщение
Just upgraded to version 2.8, when I launch the server it prints some debug stuff and doesn't load the plugin. How cam I fix this?
What messages does it print?


Re: Streamer Plugin - MartinSwag - 18.03.2016

Quote:
Originally Posted by Jeroen52
Посмотреть сообщение
What messages does it print?
http://pastebin.com/raw/D3MYScqN


Re: Streamer Plugin - Jeroen52 - 18.03.2016

Quote:
Originally Posted by MartinSwag
Посмотреть сообщение
Did you both update the include && compile the plugin?


Re: Streamer Plugin - ball - 18.03.2016

Start to read everything, not only download link

Quote:

The Windows version requires the Microsoft Visual C++ 2015 Redistributable Package.




Re: Streamer Plugin - Felipe_Freeze - 24.03.2016

How to use v2.8 in Linux CentOS 6 ?

When I start the following error occurs: [1]+ Segmentation Fault ./samp03svr


Re: Streamer Plugin - PT - 25.03.2016

Quote:
Originally Posted by Kimble
Посмотреть сообщение
In CreateDynamicObject what is this used for:

STREAMER_TAG_AREA areaid = STREAMER_TAG_AREA -1

?
Quote:
Originally Posted by [HLF]Southclaw
Посмотреть сообщение
Check the latest version (or second latest) it assigns an area to an object for streaming so that object only streams in if it's inside the area. It was added specifically for building interior object streaming.
I really dont understand that too.

Can you provide an example with explanation?
We need create an dynamic area an then add that object to that area??


Re: Streamer Plugin - IstuntmanI - 25.03.2016

Quote:
Originally Posted by PT
Посмотреть сообщение
I really dont understand that too.

Can you provide an example with explanation?
We need create an dynamic area an then add that object to that area??
pawn Код:
new STREAMER_TAG_AREA Area = CreateDynamicSphere( ... );
CreateDynamicObject( ..., .areaid = Area );
The object will be visible only when you are in that Area (if you are near the area, the object won't appear, only when you are in it. You can create the object even outside the area, it will appear only when you are in the specified area). Check this github issue: https://github.com/samp-incognito/sa...ugin/issues/71 .


Re: Streamer Plugin - Crayder - 25.03.2016

Quote:
Originally Posted by IstuntmanI
Посмотреть сообщение
pawn Код:
new STREAMER_TAG_AREA Area = CreateDynamicSphere( ... );
CreateDynamicObject( ..., .areaid = Area );
The object will be visible only when you are in that Area (if you are near the area, the object won't appear, only when you are in it. You can create the object even outside the area, it will appear only when you are in the specified area). Check this github issue: https://github.com/samp-incognito/sa...ugin/issues/71 .
Also note it's not required. If you just leave out the parameter it won't use any areas.


Re: Streamer Plugin - Runn3R - 02.04.2016

Could you atleast leave the version of the streamer in the include file? That would be great.


Re: Streamer Plugin - Spmn - 02.04.2016

Код:
public Streamer_IncludeFileVersion = 0x280001;
-> indicates streamer version (this line exists in every streamer version include file)