NoMansSky:MISSIONS Folder

From Step Mods | Change The Game
Revision as of 18:17, January 19, 2021 by Wyzoom (talk | contribs) (Created page with "== Mission Files == <br> : ATLASPATHTABLE.MBIN : BASECOMPUTERMISSIONTABLE.MBIN : COMMUNITYMISSIONTABLE.MBIN : COREMISSIONTABLE.MBIN : ENABLINGCONDITIONSTABLE...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Mission Files[edit | edit source]


ATLASPATHTABLE.MBIN
BASECOMPUTERMISSIONTABLE.MBIN
COMMUNITYMISSIONTABLE.MBIN
COREMISSIONTABLE.MBIN
ENABLINGCONDITIONSTABLE.MBIN
FLEETMISSIONTABLE.MBIN
MISSIONCOMMUNITYDATA.MBIN
MISSIONSCHEDULESTABLE.MBIN
MISSIONTABLE.MBIN
MULTIPLAYERMISSIONTABLE.MBIN
NPCMISSIONTABLE.MBIN - Space station mission board missions
PLANETPROCMISSIONTABLE.MBIN
RECURRINGMISSIONTABLE.MBIN
SPACEPOIMISSIONTABLE.MBIN
TUTORIALMISSIONTABLE.MBIN - Starting tutorial mission
WATERMISSIONTABLE.MBIN
WIKIMISSIONTABLE.MBIN

General structure of missions[edit | edit source]

Things that are confirmed[edit | edit source]

They are defined in METADATA\SIMULATION\MISSIONS
NPCMISSIONTABLE defines the space station missions
Missions are sequenced by being reward for completing the previous one.
Missions are "GcGenericMissionSequence.xml" objects


Speculations and expectations[edit | edit source]

Things we think are true about missions We think this is a unique identifier for when you have exactly same mission in youir mission log. Certainty level 20%

    <Property value="GcGenericMissionVersionProgress.xml">
         <Property name="Version" value="1" />
         <Property name="Progress" value="11" />
       </Property>

Missions are qequenced by being reward for completing the previous one From tutorial mission,

<Property name="Rewards">
       <Property value="GcGenericRewardTableEntry.xml">
         <Property name="Id" value="R_TUT5" />
         <Property name="Common" value="GcRewardTableItemList.xml">
           <Property name="RewardChoice" value="GiveAll" />
           <Property name="OverrideZeroSeed" value="False" />
           <Property name="List">
             <Property value="GcRewardTableItem.xml">
               <Property name="PercentageChance" value="100" />
               <Property name="Reward" value="GcRewardMission.xml">
                 <Property name="Mission" value="TUT_TRANSITION" />
                 <Property name="SetAsSelected" value="False" />
                 <Property name="FailRewardIfMissionActive" value="False" />
               </Property>
               <Property name="LabelID" value="start act transition" />
             </Property>
           </Property>
         </Property>
       </Property>
     </Property>