GTA5 - Scenario

FR

Vous aurez besoin de :

  • sp_manifest.ymt
  • government_facility.ymt

Dans le fichier sp_manifest.ymt, vous avez tel contenu :

  <Item type="CScenarioPointRegionDef">
   <Name>platform:/levels/gta5/scenario/government_facility</Name>
   <AABB>
    <min x="2386.979" y="-1002.365" z="-22.66828" />
    <max x="3466.869" y="909.7826" z="108.1135" />
   </AABB>
  </Item>

Si tu veux en streamer un, il faut changer vers quelque chose comme ça ( et augmenter la valeur AABB si vous augmenter la taille du scénario ):

  <Item type="CScenarioPointRegionDef">
   <Name>compcache:/government_facility</Name>
   <AABB>
    <min x="2386.979" y="-1002.365" z="-22.66828" />
    <max x="3466.869" y="909.7826" z="108.1135" />
   </AABB>
  </Item>

Donc en gros tu as 1 sp_manifest dans lequel tu modifie les scénarios que tu veux stream. Tu dois mettre tes fichiers dans le même dossier et dans le fxmanifest.lua il te faut mettre :

data_file 'SCENARIO_POINTS_OVERRIDE_FILE' 'stream/companies/gouv/sp_manifest.ymt'

files {
...
    'stream/companies/gouv/sp_manifest.ymt',
...
}

EN

You need :

  • sp_manifest.ymt
  • government_facility.ymt

In sp_manifest.ymt configuration you will have this :

  <Item type="CScenarioPointRegionDef">
   <Name>platform:/levels/gta5/scenario/government_facility</Name>
   <AABB>
    <min x="2386.979" y="-1002.365" z="-22.66828" />
    <max x="3466.869" y="909.7826" z="108.1135" />
   </AABB>
  </Item>

If you want to stream a new one, you will need to change the name and the min max ( if you increase the AABB size ) :

  <Item type="CScenarioPointRegionDef">
   <Name>compcache:/government_facility</Name>
   <AABB>
    <min x="2386.979" y="-1002.365" z="-22.66828" />
    <max x="3466.869" y="909.7826" z="108.1135" />
   </AABB>
  </Item>

You And in fx_manifest.lua you need to put this :

data_file 'SCENARIO_POINTS_OVERRIDE_FILE' 'stream/companies/gouv/sp_manifest.ymt'

files {
...
    'stream/companies/gouv/sp_manifest.ymt',
...
}