02.08.2014, 08:35
[Plugin] Streamer Plugin v2.7.2 with vehicle streamer
02.08.2014, 08:37
Quote:
I need to get home to my linux computer so I think that in the next few hours there will be also linux version.
|
never forget to give +REP for you
EDIT:
i got these error when compile my script with your streamer
Код:
D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(255) : error 021: symbol already defined: "GetDynamicVehicleZAngle" D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(256) : error 021: symbol already defined: "SetDynamicVehicleZAngle" D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(257) : warning 200: symbol "GetDynamicVehicleDistanceFromPo" is truncated to 31 characters D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(260) : error 021: symbol already defined: "SetDynamicVehicleColor" D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(267) : warning 200: symbol "GetDynamicVehicleComponentInSlo" is truncated to 31 characters D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(333) : warning 200: symbol "OnDynamicVehicleDamageStatusUpd" is truncated to 31 characters Pawn compiler 3.2.3664.samp Copyright © 1997-2006, ITB CompuPhase 3 Errors.
fixed
i commented these line, some of them are already defined (maybe you're sleepy and forgot to edit them) and some more are too long
i think these line
pawn Код:
native GetDynamicVehicleZAngle(vehicleid, &Float:x, &Float:y, &Float:z);
native SetDynamicVehicleZAngle(vehicleid, Float:x, Float:y, Float:z);
pawn Код:
native GetDynamicVehiclePos(vehicleid, &Float:x, &Float:y, &Float:z);
native SetDynamicVehiclePos(vehicleid, Float:x, Float:y, Float:z);
pawn Код:
native GetDynamicVehicleDistanceFromPoint(vehicleid, Float:x, Float:y, Float:z);
native GetDynamicVehicleComponentInSlot(vehicleid, slot);
forward OnDynamicVehicleDamageStatusUpdate(vehicleid, playerid);
02.08.2014, 08:57
(
Последний раз редактировалось Swimor; 02.08.2014 в 09:38.
)
Quote:
okay, thanks.
never forget to give +REP for you EDIT: i got these error when compile my script with your streamer Код:
D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(255) : error 021: symbol already defined: "GetDynamicVehicleZAngle" D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(256) : error 021: symbol already defined: "SetDynamicVehicleZAngle" D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(257) : warning 200: symbol "GetDynamicVehicleDistanceFromPo" is truncated to 31 characters D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(260) : error 021: symbol already defined: "SetDynamicVehicleColor" D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(267) : warning 200: symbol "GetDynamicVehicleComponentInSlo" is truncated to 31 characters D:\AiRaLoKa\SA-MP Server Project\MP Server\New Indo Stunting\pawno\include\streamer.inc(333) : warning 200: symbol "OnDynamicVehicleDamageStatusUpd" is truncated to 31 characters Pawn compiler 3.2.3664.samp Copyright © 1997-2006, ITB CompuPhase 3 Errors. fixed i commented these line, some of them are already defined (maybe you're sleepy and forgot to edit them) and some more are too long i think these line pawn Код:
pawn Код:
pawn Код:
|
Update:
Should be fixed now.
02.08.2014, 11:10
nice, starting my project from begining :/
02.08.2014, 11:24
That's actually great. Did you ask Incognito to release this? As far as I know, he also accepts your commits to the code on Github, you could simply send a pull request and he would merge it as it's really a great addition to streamer plugin.
Again, great job, I've been waiting for this functionality for so long, tired of using CreateObject for vehicle spawn areas.
Again, great job, I've been waiting for this functionality for so long, tired of using CreateObject for vehicle spawn areas.
02.08.2014, 12:54
I would love to see this working on a linux platform. Great work so far!
02.08.2014, 14:02
Beta 3:
* Dynamic Objects and 3Dtext labels are now attachable to dynamic vehicles.
* Dynamic Objects and 3Dtext labels are now attachable to dynamic vehicles.
02.08.2014, 15:57
Very nice!
When done, Incognito should merge this.
When done, Incognito should merge this.
02.08.2014, 16:38
I hope you didn't forgot about the trailer functions, and also about GetDynamicVehicle(First/Second)Color.
This looks better beta by beta. xD Great job.
EDIT: "The source can be browsed here. This repository can also be cloned" . The link sends us to original Incognito's Streamer github page.
This looks better beta by beta. xD Great job.
EDIT: "The source can be browsed here. This repository can also be cloned" . The link sends us to original Incognito's Streamer github page.
02.08.2014, 16:44
Quote:
I hope you didn't forgot about the trailer functions, and also about GetDynamicVehicle(First/Second)Color.
This looks better beta by beta. xD Great job. EDIT: "The source can be browsed here. This repository can also be cloned" . The link sends us to original Incognito's Streamer github page. |
About the color there is GetDynamicVehicleColor:
Код:
GetDynamicVehicleColor(vehicleid, &color1, &color2)
02.08.2014, 16:49
Quote:
The trailer function is a little bit tricky, I started working on it and I will finish soon.
|
Yes, I know, but sometimes we need to get just one color, without using another variable which we won't use. I personally need the first color (sometimes you can't see the second color on some vehicles), but I don't like to create a variable for the second color. And it isn't hard to make in C++, so why not ? maddinat0r added it in his Vehicle Streamer plugin, that suggestion was mine too.
02.08.2014, 17:36
New function for first, second color requires more memory by default than use new variable everytime for second color. This function alsу possible in pawn.
02.08.2014, 17:38
Quote:
I thought it was hard... But you didn't tell anything about it.
Yes, I know, but sometimes we need to get just one color, without using another variable which we won't use. I personally need the first color (sometimes you can't see the second color on some vehicles), but I don't like to create a variable for the second color. And it isn't hard to make in C++, so why not ? maddinat0r added it in his Vehicle Streamer plugin, that suggestion was mine too. |
I will try to make that if you pass 0 instead of an variable then the color will not passed so for example this:
Код:
new color1; GetDynamicVehicleColor(vehicleid, color1, 0);
And this:
Код:
new color2; GetDynamicVehicleColor(vehicleid, 0, color2);
What do you think about it?
02.08.2014, 20:27
Quote:
I have an suggestion:
I will try to make that if you pass 0 instead of an variable then the color will not passed so for example this: Код:
new color1; GetDynamicVehicleColor(vehicleid, color1, 0); And this: Код:
new color2; GetDynamicVehicleColor(vehicleid, 0, color2); What do you think about it? |
02.08.2014, 21:30
I'm looking forward to seeing this finished off. It's looking great so far.
02.08.2014, 22:23
(
Последний раз редактировалось AiRaLoKa; 02.08.2014 в 23:27.
)
well i will wait for the final version that compatible with linux...
it's annoying to update my plugin everyday :/
EDIT:
do this streamer increase the limit of vehicle that can be created?
it's annoying to update my plugin everyday :/
EDIT:
do this streamer increase the limit of vehicle that can be created?
02.08.2014, 23:50
02.08.2014, 23:54
Quote:
who want to spawn 2000 vehicle at once xD
it will player got a f*cking low FPS xD
03.08.2014, 00:06
The best thing would be replace complete vehicle system in samp server to this, if this would be done 100%.
But that would require lot of memory hacking
Anyway if you are boring after vehicle stramer done, you could add support for YSF. (AttachDynamicObjecToObject, AttachDynamicObjectToPlayer)
But that would require lot of memory hacking
Anyway if you are boring after vehicle stramer done, you could add support for YSF. (AttachDynamicObjecToObject, AttachDynamicObjectToPlayer)
03.08.2014, 05:07
Quote:
The best thing would be replace complete vehicle system in samp server to this, if this would be done 100%.
But that would require lot of memory hacking Anyway if you are boring after vehicle stramer done, you could add support for YSF. (AttachDynamicObjecToObject, AttachDynamicObjectToPlayer) |
Want to work with me on that?
« Next Oldest | Next Newest »
Users browsing this thread: 2 Guest(s)