Jump to content

How can I mod which Schematics you start the game with?


Partoutatix

Recommended Posts

^Not sure but playerWitcher.ws also shows how they add and equip the starting equipment to the player character for the B&W-only mode:

 

var ids : array<SItemUniqueId>;

 

ids = inv.AddAnItem( 'EP2 Standalone Starting Armor' );
EquipItem( ids[0] );
ids.Clear();
ids = inv.AddAnItem( 'EP2 Standalone Starting Boots' );
EquipItem( ids[0] );
ids.Clear();
ids = inv.AddAnItem( 'EP2 Standalone Starting Gloves' );
EquipItem( ids[0] );
ids.Clear();
ids = inv.AddAnItem( 'EP2 Standalone Starting Pants' );
EquipItem( ids[0] );

ids.Clear();

 

As for the recipes, you have to be thorough and look for all the lines where the starting recipes are added since it's done for NG, HoS-only NG, B&W-only NG etc.

Edited by Partoutatix
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...