Lowered Alien Vehicle Distance Requirement

2,500,500 feet. Why Volition? Just why? I want a mod to lower this obnoxious requirement to something more tolerable. 250,000-400,000 at most seems at least acceptable, if not lower.
 
I have to agree that this is pretty ridiculous.
 
The worst part is, that's literally the last challenge I have to do. So to finish, I have to spend a solid 4-5 hours flying a freakin' ufo. And I can't just idle, because it stops at the world barrier. (And for some reason, it keeps arcing down on its own.)
 
Most likely (I am at work and cannot check this) in Misc Tables, there will be an XTBL called something like achievements that you will need to edit.
 
Hm... all right, I'll see if I can find anything about it. Maybe I can pull it off myself. ^>^ I'll update later on whether or not I found it.
 
So far all I've found is this, located in misc_tables/activities.xtbl

<Activities_Identifier>
<Name>CHALLENGE_ALIEN_VEH_DIST_DESCR</Name>
<_Editor><Category>Entries</Category></_Editor>

And

<Activities_Identifier>
<Name>CHALLENGE_TRAVEL_ALIEN_VEHICLE</Name>
<_Editor><Category>Entries</Category></_Editor>

Nothing on editing the actual value for the challenge yet. Any tips on where to look?
 
It's in the file sr3_city_challenges.xtbl on line 398

Code:
    <Challenge>
        <Name>alien veh travel dist</Name>
        <Display_String>CHALLENGE_TRAVEL_ALIEN_VEHICLE</Display_String>
        <Contact>KINZIE</Contact>
        <Goal>762000</Goal>
        <Reward>
            <Respect>500</Respect>
            <Cash>1500</Cash>
            <Unlockables></Unlockables>
            </Reward>
        <HUD>
            <HUD_Percent>
                <HUD_Percent_Value>20</HUD_Percent_Value>
                </HUD_Percent>
            <HUD_Percent_Value>0.0</HUD_Percent_Value>
            <HUD_Linear_Value>0</HUD_Linear_Value>
            </HUD>
        <Trigger>
            <Trigger_Stat>
                <Stat>distance by alien craft</Stat>
                </Trigger_Stat>
            </Trigger>
        <_Editor>
            <Category>Entries:6Amusing</Category>
            </_Editor>
        <Units>Meters</Units>
        <description>CHALLENGE_ALIEN_VEH_DIST_DESCR</description>
        <image>ui_chal_alien_vehicle_distance</image>
        <Delayed_Banner>False</Delayed_Banner>
        </Challenge>
 
Back
Top