SRIV Dual Wield From The Start

Hi!, I'm having problems making dual wield weapons available from the start I tried adding <Auto_Unlock>Silently</Auto_Unlock> but that just makes the option disappears and it doesn't make dual wield available for use

This is what I have in unlockables.xtbl
Code:
<Unlockable>
        <Name>Dual_Wield_Pistols</Name>
        <Type>
            <Dual_Wield>
                <Weapon_Type>pistols</Weapon_Type>
                </Dual_Wield>
            </Type>
        <DisplayName>UNL_DUAL_WIELD_PISTOLS</DisplayName>
        <Description>UNL_DESC_DUAL_WIELD_PISTOLS</Description>
        <Image_Source>
            <Filename>ui_reward_weapon_dual_wield.tga</Filename>
            </Image_Source>
        <Detailed_Description_Text>UNL_DESC_DUAL_WIELD_PISTOLS</Detailed_Description_Text>
        <Event_Text>UNL_DUAL_WIELD_PISTOLS</Event_Text>
        <Category>Weapons</Category>
        <Price>0</Price>
        <_Editor>
            <Category>Entries:RespectLevels:PlayerAbilities</Category>
            </_Editor>
        <orbs_required>0</orbs_required>
        <Progression_Preset>3</Progression_Preset>
        <reward_visibility>default</reward_visibility>
        <silent_unlock>False</silent_unlock>
        <Auto_Unlock>Silently</Auto_Unlock>
        </Unlockable>
Help is much appreciated
 
Open sr3_city_objectives.xtbl and add it as unlockable after mission 0 :
Code:
<Objective>
  <Name>m00</Name>
      <Gameplay>
          <Mission>
            <Name>m00</Name>
            </Mission>
         </Gameplay>
         <_Editor>
              <Category>Hidden Quests</Category>
              </_Editor>
          <DisplayParams>
              <DisplayName>MISSION_NAME_M00</DisplayName>
                  <QuestName>Act1</QuestName>
                  <QuestPriority>1</QuestPriority>
                  <Prerequisites></Prerequisites>
              </DisplayParams><Rewards>
          <Unlockables>
              <Unlockable>M00_Adoration</Unlockable>
              <Unlockable>M00_President</Unlockable>
              <Unlockable>M00_Fake_Homie_King</Unlockable> 
              <Unlockable>M00_Fake_Homie_VP</Unlockable>
            </Unlockables>
            <Achievement>Zero Saints Thirty</Achievement>
        </Rewards>
            <Flags></Flags>
        <Tutorials></Tutorials>
    <Prologue>1</Prologue>
</Objective>
 
it crashes when i start a new game

prologue
Code:
            <Name>m00</Name>
            <Gameplay>
                <Mission>
                    <Name>m00</Name>
                </Mission>
            </Gameplay>
            <_Editor>
                <Category>Hidden Quests</Category>
            </_Editor>
            <DisplayParams>
                <DisplayName>MISSION_NAME_M00</DisplayName>
                <QuestName>Act1</QuestName>
                <QuestPriority>1</QuestPriority>
                <Prerequisites/>
            </DisplayParams>
            <Rewards>
                <Unlockables>
                    <Unlockable>M00_Adoration</Unlockable>
                    <Unlockable>M00_President</Unlockable>
                    <Unlockable>M00_Fake_Homie_King</Unlockable>
                    <Unlockable>M00_Fake_Homie_VP</Unlockable>
                    <Unlockables>Dual_Wield_SMGs</Unlockables>
                </Unlockables>
                <Achievement>Zero Saints Thirty</Achievement>
            </Rewards>
            <Flags/>
            <Tutorials/>
            <Prologue>1</Prologue>
        </Objective>
Boss's Nightmare (2nd or 3rd mission)
Code:
<Objective>
            <Name>m02</Name>
            <Gameplay>
                <Mission>
                    <Name>m02</Name>
                </Mission>
            </Gameplay>
            <_Editor>
                <Category>Hidden Quests</Category>
            </_Editor>
            <Flags>
                <Flag>Unlocks Diversions</Flag>
            </Flags>
            <Tutorials/>
            <Prologue>4</Prologue>
            <DisplayParams>
                <DisplayName>MISSION_NAME_M02</DisplayName>
                <QuestName>Nightmare</QuestName>
                <QuestPriority>1</QuestPriority>
                <Prerequisites>
                    <Prereq>m01</Prereq>
                </Prerequisites>
            </DisplayParams>
            <Rewards>
                <Unlockables>
                    <Unlockables>Dual_Wield_Pistols</Unlockables>
                <Unlockables/>
                <Achievement>There is No Pancakes</Achievement>
            </Rewards>
        </Objective>
 
Hmmm weird... It's probably because this one is unlocked at a certain level already. Was worth a try...
I'd like to see Volition's input on this one. :)
 
That's because it's set to unlock at a certain level, if we can set that level to 1, you can have your dual wield pistols.
 
Back
Top