Aller au contenu

Photo

Searching for dlc content


  • Veuillez vous connecter pour répondre
2 réponses à ce sujet

#1
starwind99

starwind99
  • Members
  • 89 messages
I was wondewring If anyone has found dlc items from Wardens keep in the toolset. Or If anyone has figured out how to recreate the armor with the toolset?

thanks

#2
Seipherwood

Seipherwood
  • Members
  • 72 messages
I think its impossible to import the DLC into the toolset

#3
InBleedingRapture

InBleedingRapture
  • Members
  • 138 messages
You can still access the tags for any DLC items by opening your *.das save game file (provided you own the DLC content you want to access). If you simply want to duplicate items, equip your character in-game with those items, save your game, and open the *.das file for the correct save slot in the toolset.

Once you've got the *.das file open, follow the path SAVEGAME_PLAYERCHAR>SAVEGAME_PLAYERCHAR_CHAR>SAVEGAME_EQUIPMENT_ITEMS. This will bring up a numbered list of all items currently equipped. The field labeled "TEMPLATERESREF" will give you the tag of the equipped item you're looking at. With this tag, you can create a script to add any DLC items via the debug console in-game.

For instance, here's my script to add the Warden's Commander Armor from the Warden's Keep DLC add-in:

----------------------------
#include "utility_h"

void main()
{


    UT_AddItemToInventory(R"gwb_im_arm_cht_mas_wcm.uti", 1);
    UT_AddItemToInventory(R"gwb_im_arm_bot_mas_wcm.uti", 1);
    UT_AddItemToInventory(R"gwb_im_arm_glv_mas_wcm.uti", 1);
    UT_AddItemToInventory(R"gwb_im_arm_hel_hvy_gry.uti", 1);


}
----------------------------

This system seems like a bit of a run-around, but as far as I know, this is the only way to add items to your character from the DLC.

Modifié par InBleedingRapture, 05 décembre 2009 - 08:47 .