Re: [REL] Streamer Plugin v2.3.7 -
puchini - 09.04.2010
Quote:
Originally Posted by $€ЯĢ
Quote:
Originally Posted by Excellent
Hello,
The Plugin functions perfectly, but is there a Map Converter for it?
Sry for my bad English 
|
Use serverFFS with YSI object streamer option or just make your custom format if you need additional parameters.
|
Thx
Re: [REL] Streamer Plugin v2.3.7 -
Sergei - 09.04.2010
Ups I meant convertFFS
Re: [REL] Streamer Plugin v2.3.7 -
ruckfules99 - 09.04.2010
How can i make it so my checkpoint can be disabled and enabled?
I have a derby and i want to make it so i can enable and disable the checkpoint.
This is what i did, but it's not working.
Код:
Код:
if(strcmp(cmdtext, "/closederby", true) == 0)
{
DestroyDynamicCP(21);
return 1;
}
if(strcmp(cmdtext, "/openderby", true) == 0)
{
TogglePlayerDynamicCP(playerid, 21, true);
return 1;
}
Re: [REL] Streamer Plugin v2.3.7 -
CracK - 10.04.2010
The mistake is here:
pawn Код:
if(strcmp(cmdtext, "/closederby", true) == 0)
{
DestroyDynamicCP(21);
return 1;
}
It should be:
pawn Код:
if(strcmp(cmdtext, "/closederby", true) == 0)
{
for(new i; i<MAX_PLAYERS; i++)
TogglePlayerDynamicCP(i, 21, true);
return 1;
}
Re: [REL] Streamer Plugin v2.3.7 -
puchini - 10.04.2010
I get an Error if I this Callback inserts
pawn Код:
C:\Users\\\Desktop\\\gamemodes\Q.pwn(619) : error 055: start of function body without function header
C:\Users\\\Desktop\\\gamemodes\Q.pwn(620) : error 010: invalid function or declaration
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
here the lines
pawn Код:
public OnPlayerPickUpDynamicPickup(playerid, pickupid);
{
return 1;
}
can somebody help me?
Re: [REL] Streamer Plugin v2.3.7 - [03]Garsino - 10.04.2010
You dont need the ';' in a public 'name' (only when you're forwarding a public)
pawn Код:
public OnPlayerPickUpDynamicPickup(playerid, pickupid)
{
return 1;
}
Re: [REL] Streamer Plugin v2.3.7 -
puchini - 10.04.2010
Quote:
Originally Posted by [03
Garsino ]
You dont need the ';' in a public 'name' (only when you're forwarding a public)
pawn Код:
public OnPlayerPickUpDynamicPickup(playerid, pickupid) { return 1; }
|
wtf. this I have not seen at all
thank you
Re: [REL] Streamer Plugin v2.3.7 -
cmg4life - 13.04.2010
didnt read the whole topic, soz.
Suxs it doesn't have Attach Object to Player
Or
Can you use sa-mp default function ?
Re: [REL] Streamer Plugin v2.3.7 -
Sergei - 13.04.2010
Quote:
Originally Posted by cmg4life
didnt read the whole topic, soz.
Suxs it doesn't have Attach Object to Player
Or
Can you use sa-mp default function ?
|
You need to create global object (CreateObject) to be able to use AttachObjectToPlayer.
Re: [REL] Streamer Plugin v2.3.7 -
RoamPT - 14.04.2010
I've got a doubt, the objects doesn't show up in the login gui, they appear to me after spawning. How can i change so?
Re: [REL] Streamer Plugin v2.3.7 -
Scenario - 14.04.2010
Ah, I got everything to work now, thanks for the help guys... I had a ; when I didn't need it!!! Stupid mistake that caused 100's of errors! Thanks, works good... Would it hurt to have a draw distance of 500 instead of 200? Thanks!
Re: [REL] Streamer Plugin v2.3.7 -
Sergei - 14.04.2010
Quote:
Originally Posted by RoamPT
I've got a doubt, the objects doesn't show up in the login gui, they appear to me after spawning. How can i change so?
|
When you are not spawned your position is 0,0,0. You can stream them where you need them manually with Streamer_UpdateEx.
Re: [REL] Streamer Plugin v2.3.7 -
cmg4life - 14.04.2010
Quote:
Originally Posted by $ЂЯĢ
Quote:
Originally Posted by cmg4life
didnt read the whole topic, soz.
Suxs it doesn't have Attach Object to Player
Or
Can you use sa-mp default function ?
|
You need to create global object (CreateObject) to be able to use AttachObjectToPlayer.
|
No shit...
My question is, does this streamer have AttachObjectToPlayer or i can use streamed objects with default sa-mp function ?
Also if i use normal objects + streamed objects, conflicts appear.
EDIT: Seems AttachObjectToPlayer with Dynamic Objects, doesn't work, would be cool if added.
Re: [REL] Streamer Plugin v2.3.7 -
-Davee- - 14.04.2010
Quote:
Originally Posted by cmg4life
Quote:
Originally Posted by $ЂЯĢ
Quote:
Originally Posted by cmg4life
didnt read the whole topic, soz.
Suxs it doesn't have Attach Object to Player
Or
Can you use sa-mp default function ?
|
You need to create global object (CreateObject) to be able to use AttachObjectToPlayer.
|
No shit...
My question is, does this streamer have AttachObjectToPlayer or i can use streamed objects with default sa-mp function ?
Also if i use normal objects + streamed objects, conflicts appear.
EDIT: Seems AttachObjectToPlayer with Dynamic Objects, doesn't work, would be cool if added.
|
Yet what would be a problem? Just limit to the maximum number of dynamic objects, for example, if you have 10 global object you need to set the dynamic object limit to 244 not 254!
Re: [REL] Streamer Plugin v2.3.7 - [03]Garsino - 14.04.2010
Quote:
Originally Posted by cmg4life
Quote:
Originally Posted by $ЂЯĢ
Quote:
Originally Posted by cmg4life
didnt read the whole topic, soz.
Suxs it doesn't have Attach Object to Player
Or
Can you use sa-mp default function ?
|
You need to create global object (CreateObject) to be able to use AttachObjectToPlayer.
|
No shit...
My question is, does this streamer have AttachObjectToPlayer or i can use streamed objects with default sa-mp function ?
Also if i use normal objects + streamed objects, conflicts appear.
EDIT: Seems AttachObjectToPlayer with Dynamic Objects, doesn't work, would be cool if added.
|
Read Incognito's reply earlier in this topic
http://forum.sa-mp.com/index.php?top...8555#msg948555
Re: [REL] Streamer Plugin v2.3.7 -
Josh! - 15.04.2010
Pickups don't show in interiors? Even with the '-1' values set.
Re: [REL] Streamer Plugin v2.3.7 -
BP13 - 15.04.2010
Quote:
Originally Posted by Josh!
Pickups don't show in interiors? Even with the '-1' values set.
|
They do work. Make sure you have your Coord's and VW correct.
Re: [REL] Streamer Plugin v2.3.7 -
scottyishere - 15.04.2010
Can I have the old 2.1 Version of the streamer please? .dll and .so? PM me
EDIT: Error obtaining native adresses? What is this? Why I get this when I start server. Please help
This is what I get after updating the streamer from 2.1 to 2.3.7

help pls
Re: [REL] Streamer Plugin v2.3.7 -
Scenario - 15.04.2010
Quote:
Originally Posted by emle98
Can I have the old 2.1 Version of the streamer please? .dll and .so? PM me
EDIT: Error obtaining native adresses? What is this? Why I get this when I start server. Please help
This is what I get after updating the streamer from 2.1 to 2.3.7  help pls
|
Why would you want the old version anyway? Newer is
usually better!!
Re: [REL] Streamer Plugin v2.3.7 -
whooper - 15.04.2010
emle98: Did you recompile with the new include?