TACRfan Posted October 17, 2015 Report Share Posted October 17, 2015 Hi, how do i add specialist equipment ( Cones, flares, MP5, etc ) to vehicles, i know how to add the standard ingame equipment but not cone etc. Thanks Quote Link to comment Share on other sites More sharing options...
Pottyscotty Posted October 17, 2015 Report Share Posted October 17, 2015 Some have to be done via the scripts. Each has different ways you have to add them. I'll give you the way for the Cones/Flares and MP5. With the LAMP5 script you will have to go to 'PcmdMP5Get' and scroll down until you find these lines:if (v.IsValid() && !v.IsDestroyed() && StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/YOURLOCATION/YOURVEHICLE.e4p") == 0 ||StrCompare(v.GetPrototypeFileName(), "mod:Prototypes/Vehicles/YOURLOCATION/YOURVEHICLE.e4p") == 0 ||Replace or add lines for your vehicle/s accordingly, also adding the location to the vehicle. You will have to do the same for 'PcmdMP5Remove' The code also has the following line which means that even if you have added your vehicle to the script, that vehicle MUST have 'flashgrenade' checked in its equipment list.SetRestrictions(RESTRICT_NOTDESTROYED | RESTRICT_NOTBURNING | RESTRICT_HASFLASHGRENADE);------------ Cones/Flares This requires nothing to be done to the script, just make sure that the vehicle/s you want to have Cones/Flares has 'roadblock' checked in its equipment and that it is a 'PoliceSTW' type unit. Quote Link to comment Share on other sites More sharing options...
TACRfan Posted October 18, 2015 Author Report Share Posted October 18, 2015 Thank you Quote Link to comment Share on other sites More sharing options...
Pottyscotty Posted October 18, 2015 Report Share Posted October 18, 2015 No problem, if you need any of the others let me know. Quote Link to comment Share on other sites More sharing options...