Flip Vehicle

ALKINDA

Valued Member!
Not taking any credit for this, i just wasnt able to find it here so im posting how to.

1: open your MISSION PBO
This is located in your MPMISSON folder under probably dayz_1.chernarus.pbo
Extract this how ever you please, but i suggest CPBO

2: open your INIT.SQF file. This is located at the ROOT of your MISSION PBO we just opened.
Inside you will want to search for
Code:
"filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic";

and below that put this code:
Code:
// atv
//non-JIP player, someone who's went through role selection and briefing
if (!(isNull player)) then
        {
        // =============================================================
        // GeneralCarver Vehicle Flip Script v2 Init Scripting
 
        gc_veh_flip_script_script_action_manager = execVM "gc_veh_flip\action_manager.sqf";
 
        //
        // =============================================================
        };
 
//JIP player, role selection then right into mission.
if (!isServer && isNull player) then
        {
        waitUntil {!isNull player};
 
        // =============================================================
        // GeneralCarver Vehicle Flip Script v2 Init Scripting
 
        gc_veh_flip_script_script_action_manager = execVM "gc_veh_flip\action_manager.sqf";
 
        //
        // =============================================================
        };

for an example this is located in my init.sqf just above this code:
Code:
if ((!isServer) && (isNull player) ) then

3: now open up the zip located at the bottom.
locate the folder inside, should be called "gc_veh_flip"
Drag that folder into your MISSON root.
This means MPMISSON / dayz_1.chernarus.pbo / gc_veh_flip

4: repack the pbo and upload onto your server!
 

Attachments

  • gc_veh_flip.zip
    2.5 KB · Views: 1,184
Back
Top