Possible ETD DLC modding Question?

I seem to one of only a couple of people who seem to be having the ETD dlc not unlock the Dominatrix threeway vehicles pack, so what I was wondering is if it would be possible to have an xtbl file that would give you those cars
 
I seem to one of only a couple of people who seem to be having the ETD dlc not unlock the Dominatrix threeway vehicles pack, so what I was wondering is if it would be possible to have an xtbl file that would give you those cars
They should auto unlock as a reward when you finish all the dlc misions
 
Yes, they should, but for me they do not :(

The only thing I can think of is to change<Progression_Preset>3</Progression_Preset> to either 0 or 1
this is the section of code you need to edit in the dlc1_unlockables.xtbl, no not mess with the dlc flag tho as I dont think its allowed

Code:
  <Unlockable>
     <Name>DLC1_Vehicles</Name>
     <Type>
       <Vehicle>
         <Vehicles>
           <Vehicle>
             <Type>sp_tank04</Type>
             <Variant>average</Variant>
             </Vehicle>
           <Vehicle>
             <Type>sp_vtol01_dlc</Type>
             <Variant>average</Variant>
             </Vehicle>
           <Vehicle>
             <Type>car_4dr_std04_dlc</Type>
             <Variant>average</Variant>
             </Vehicle>
           </Vehicles>
         </Vehicle>
       </Type>
     <DisplayName>DLC1_UNL_VEHICLES_NAME</DisplayName>
     <Description>DLC1_UNL_VEHICLES_DESC</Description>
     <Image_Source>
       <Filename>ui_reward_dlc_etd_vehicles.tga</Filename>
       </Image_Source>
     <Detailed_Description_Text>DLC1_UNL_VEHICLES_DESC</Detailed_Description_Text>
     <Event_Text>DLC1_UNL_VEHICLES_NAME</Event_Text>
     <Category>Vehicles</Category>
     <Price>0</Price>
     <_Editor>
       <Category>Entries:DLC1</Category>
       </_Editor>
     <Is_DLC>True</Is_DLC>
     <orbs_required>0</orbs_required>
     <Progression_Preset>3</Progression_Preset>
     <reward_visibility>default</reward_visibility>
     <silent_unlock>False</silent_unlock>
     <Framework>dlc1</Framework>
     </Unlockable>
 
Back
Top