[Plugin] Streamer Plugin v2.7.2 with vehicle streamer
#11

Quote:
Originally Posted by IstuntmanI
Посмотреть сообщение
Great job ! I hope it will be merged with the original streamer plugin, if everything is ok. Thanks for your work !

I have a have few suggestions:
pawn Код:
native GetDynamicVehicleZAngle(vehicleid, &Float:x, &Float:y, &Float:z);
native SetDynamicVehicleZAngle(vehicleid, Float:x, Float:y, Float:z);
native GetDynamicVehicleZAngle(vehicleid, &Float:angle);
native SetDynamicVehicleZAngle(vehicleid, Float:angle);
should be
pawn Код:
native GetDynamicVehiclePos(vehicleid, &Float:w, &Float:x, &Float:y, &Float:z);
native SetDynamicVehiclePos(vehicleid, Float:x, Float:y, Float:z);
native GetDynamicVehicleZAngle(vehicleid, &Float:angle);
native SetDynamicVehicleZAngle(vehicleid, Float:angle);
-- I think that I make mistake with the native names, I will check it soon. Also I will add GetVehicleRotationQuat and I will try to add SetVehicleRotationQuat.

Also, you forgot one thing, you should add it in the plugin:
https://sampwiki.blast.hk/wiki/OnPlayerWeaponShot
pawn Код:
forward OnPlayerShotDynamicVehicle(playerid, vehicleid, weaponid, Float:fX, Float:fY, Float:fZ);
-- Will be added in the next version.

And these (are even possible some of them ?):
pawn Код:
native SetDynamicVehicleAngularVelocity(vehicleid, Float:X, Float:Y, Float:Z);
native AttachTrailerToVehicle(trailerid, vehicleid, trailertype = STREAMER_VEHICLE_TYPE_DYNAMIC, vehicletype = STREAMER_VEHICLE_TYPE_DYNAMIC ); // add another enum like the one in which is STREAMER_OBJECT_TYPE_DYNAMIC
native DetachTrailerFromVehicle(vehicleid);
native IsTrailerAttachedToVehicle(vehicleid);
native GetVehicleTrailer(vehicleid);
native GetDynamicVehicleRotationQuat(vehicleid, &Float:w, &Float:x, &Float:y, &Float:z);
-- Yes, it will be done.

Also, I know that these are perfectly scriptable, but they are needed as default:
pawn Код:
native SetDynamicVehicleVirtualWorld(vehicleid, worldid);
native GetDynamicVehicleVirtualWorld(vehicleid);
native SetDynamicVehicleInterior(vehicleid, interiorid);
native GetDynamicVehicleInterior(vehicleid);
native GetDynamicVehicleFirstColor(vehicleid); // returns color1
native GetDynamicVehicleSecondColor(vehicleid); // returns color2
native IsDynamicVehicleStreamedIn(vehicleid); // returns 1 if it is streamed for a player
-- you right I forgot those natives, I will add them too.

I hope that the next SA:MP version will bring us a SetVehicleRotationQuat, because I think you can't make it.
I edited the quote.
Thank you very much for the suggestions

Quote:
Originally Posted by AiRaLoKa
Посмотреть сообщение
is it only vehicle streamer plugins?

anyway, great job. this was i looking for
That not only vehicle streamer, it also includes all the incognito's streamer natives, callbacks, ...
Reply


Messages In This Thread
Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 06:03
Re: Streamer Plugin v2.7.2 with vehicle streamer - by iSkate - 02.08.2014, 06:16
Respuesta: Streamer Plugin v2.7.2 with vehicle streamer - by JustBored - 02.08.2014, 07:03
Respuesta: Streamer Plugin v2.7.2 with vehicle streamer - by MugiwaraNoLuffy - 02.08.2014, 07:15
Re: Streamer Plugin v2.7.2 with vehicle streamer - by TazmaNiax - 02.08.2014, 07:22
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Don_Cage - 02.08.2014, 07:34
Re: Streamer Plugin v2.7.2 with vehicle streamer - by DoflamingoValentin - 02.08.2014, 07:37
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 07:41
Re: Streamer Plugin v2.7.2 with vehicle streamer - by IstuntmanI - 02.08.2014, 07:44
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 02.08.2014, 07:52
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 07:53
Re: Streamer Plugin v2.7.2 with vehicle streamer - by IstuntmanI - 02.08.2014, 07:59
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 02.08.2014, 08:02
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 08:07
Re: Streamer Plugin v2.7.2 with vehicle streamer - by PT - 02.08.2014, 08:11
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 02.08.2014, 08:13
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 08:13
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 02.08.2014, 08:18
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 08:21
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 02.08.2014, 08:25
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 08:35
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 02.08.2014, 08:37
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 08:57
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 02.08.2014, 11:10
Re: Streamer Plugin v2.7.2 with vehicle streamer - by iZN - 02.08.2014, 11:24
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Firewire - 02.08.2014, 12:54
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 14:02
Re: Streamer Plugin v2.7.2 with vehicle streamer - by kurta999 - 02.08.2014, 15:57
Re: Streamer Plugin v2.7.2 with vehicle streamer - by IstuntmanI - 02.08.2014, 16:38
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 16:44
Re: Streamer Plugin v2.7.2 with vehicle streamer - by IstuntmanI - 02.08.2014, 16:49
Re: Streamer Plugin v2.7.2 with vehicle streamer - by kurta999 - 02.08.2014, 17:36
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 02.08.2014, 17:38
Re: Streamer Plugin v2.7.2 with vehicle streamer - by IstuntmanI - 02.08.2014, 20:27
Re: Streamer Plugin v2.7.2 with vehicle streamer - by N.K.Stallone - 02.08.2014, 21:30
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 02.08.2014, 22:23
Re: Streamer Plugin v2.7.2 with vehicle streamer - by IstuntmanI - 02.08.2014, 23:50
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 02.08.2014, 23:54
Re: Streamer Plugin v2.7.2 with vehicle streamer - by kurta999 - 03.08.2014, 00:06
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 03.08.2014, 05:07
Re: Streamer Plugin v2.7.2 with vehicle streamer - by CoaPsyFactor - 03.08.2014, 17:40
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 03.08.2014, 17:54
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Kar - 03.08.2014, 18:29
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 03.08.2014, 19:07
Re: Streamer Plugin v2.7.2 with vehicle streamer - by CoaPsyFactor - 03.08.2014, 22:28
Re: Streamer Plugin v2.7.2 with vehicle streamer - by kurta999 - 04.08.2014, 00:12
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 04.08.2014, 05:50
Re: Streamer Plugin v2.7.2 with vehicle streamer - by iFarbod - 04.08.2014, 07:27
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 04.08.2014, 07:34
Re: Streamer Plugin v2.7.2 with vehicle streamer - by d711728 - 04.08.2014, 10:56
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 04.08.2014, 12:14
Re: Streamer Plugin v2.7.2 with vehicle streamer - by d711728 - 04.08.2014, 13:39
Respuesta: Streamer Plugin v2.7.2 with vehicle streamer - by The-Krew - 05.08.2014, 02:33
Re: Respuesta: Streamer Plugin v2.7.2 with vehicle streamer - by kadaradam - 05.08.2014, 06:37
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 05.08.2014, 07:50
Re: Streamer Plugin v2.7.2 with vehicle streamer - by d711728 - 05.08.2014, 11:57
Re: Streamer Plugin v2.7.2 with vehicle streamer - by AiRaLoKa - 05.08.2014, 12:25
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 05.08.2014, 12:55
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Incognito - 05.08.2014, 22:00
Re: Streamer Plugin v2.7.2 with vehicle streamer - by CoaPsyFactor - 05.08.2014, 23:03
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 06.08.2014, 06:26
Re: Streamer Plugin v2.7.2 with vehicle streamer - by CoaPsyFactor - 06.08.2014, 12:58
Re: Streamer Plugin v2.7.2 with vehicle streamer - by anou1 - 06.08.2014, 13:21
Re: Streamer Plugin v2.7.2 with vehicle streamer - by iFarbod - 07.08.2014, 08:46
Re: Streamer Plugin v2.7.2 with vehicle streamer - by CoaPsyFactor - 07.08.2014, 09:29
Re: Streamer Plugin v2.7.2 with vehicle streamer - by Swimor - 07.08.2014, 15:21
Re: Streamer Plugin v2.7.2 with vehicle streamer - by iFarbod - 07.08.2014, 15:51
Re: Streamer Plugin v2.7.2 with vehicle streamer - by DiDok - 07.08.2014, 15:58
Re: Streamer Plugin v2.7.2 with vehicle streamer - by CoaPsyFactor - 07.08.2014, 17:21
Re: Streamer Plugin v2.7.2 with vehicle streamer - by d711728 - 11.08.2014, 12:59

Forum Jump:


Users browsing this thread: 1 Guest(s)