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
Searching for dlc content
Débuté par
starwind99
, nov. 10 2009 01:29
#1
Posté 10 novembre 2009 - 01:29
#2
Posté 10 novembre 2009 - 01:40
I think its impossible to import the DLC into the toolset
#3
Posté 05 décembre 2009 - 08:44
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.
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 .





Retour en haut






