Hi, this board is amazing! Good Work!!!!!
My request:
Is there a mod or a way to add the unique items of DAO in our inventory? For example the "Juggernaut set", "Effort Armor Set" ecc....
Thank you in advance!
[REQUEST] unique item of DAO in your inventory
Started by
mambomassacro
, Mar 25 2010 06:00 PM
11 replies to this topic
#1
Posted 25 March 2010 - 06:00 PM
#2
Posted 25 March 2010 - 06:17 PM
As far as I know there isn't any console command or mod that adds items. You can only make a script that adds items but for this you need the toolset. Try something like this:
#include "PLT_YOUR_PLOT"
void main()
{
event ev = GetCurrentEvent();
int nEventType = GetEventType(ev);
switch (nEventType)
{
case EVENT_TYPE_MODULE_LOAD:
{
if (WR_GetPlotFlag(PLT_YOUR_PLOT, YOUR_MAIN_FLAG) return;
UT_AddItemToInventory(R"YOUR_ITEM", 1);
WR_SetPlotFlag(PLT_YOUR_PLOT, YOUR_MAIN_FLAG, TRUE);
}
}
}
#3
Posted 25 March 2010 - 09:00 PM
Thank you for the script "hdhd" 
......hope that someone build a chest or a custom merchant that have all the items of DAO! (like "Vishalas_Penance" or "Rasanas Armory")
......hope that someone build a chest or a custom merchant that have all the items of DAO! (like "Vishalas_Penance" or "Rasanas Armory")
#4
Posted 26 March 2010 - 12:51 AM
jburrows posted a script on how to add them to a vendor in DAA, along with a list of the vendors that are available in the expansion. http://thenexusforum...howtopic=190666
basically all you'd need now is the list of the filenames for the particular items that you're wanting sold on them, replace the particular vendor name, edit the filenames for the items, then load and compile in toolset.
BTW- Hdhd- how do you compile in toolset? (dumb question time for me).
basically all you'd need now is the list of the filenames for the particular items that you're wanting sold on them, replace the particular vendor name, edit the filenames for the items, then load and compile in toolset.
BTW- Hdhd- how do you compile in toolset? (dumb question time for me).
#5
Posted 26 March 2010 - 11:33 AM
My script basically adds items when you start the game. You probably forgot to add the plot flags and therefore it doesn't compile. I used plot flags to prevent doubling of items with every savegame loading.
Edit:
Here's a small example how I am using the script. Maybe this will explain it better:
http://pastebin.com/4g4tpTd1
Edit:
Here's a small example how I am using the script. Maybe this will explain it better:
http://pastebin.com/4g4tpTd1
#6
Posted 26 March 2010 - 11:19 PM
thanks againMy script basically adds items when you start the game. You probably forgot to add the plot flags and therefore it doesn't compile. I used plot flags to prevent doubling of items with every savegame loading.
Edit:
Here's a small example how I am using the script. Maybe this will explain it better:
http://pastebin.com/4g4tpTd1
#7
Posted 26 March 2010 - 11:22 PM
hdhd- Ok, let me rephase my question. After creating, and saving the script.... is there anything that I need to tell the toolcrap to do, to make it compile, or will it do it automatically? Could you point me towards a tute for saving and compiling scripts?
Mambo- omg, I've been a total idiot the last few days. I totally forgot about a mod called Enigma Battle Arena. http://www.dragonage...file.php?id=315
This mod adds a new area to your world map. You can travel to this area, and talk to Vashala, a merchant that is there near the entrance. But DO NOT RECRUIT Vashala! Vashala is a recruitable merchant which carries a vast assortment of rare (non-dlc) items. I do know that she carries the effort armor, I believe she has the juggernaut, all of master wade's armors, just to name a few. And a vast array of the weapons that are hard to find, or difficult to get.
She Does ask a pretty HEFTY chunk of change for them tho (the author's price for making these available without doing quests etc). So gear up on gold
There is also a mod called The Winter Forge- http://www.dragonage...file.php?id=122
this mod can allow you to custom create custom items IN GAME, duplicate (non-dlc) items in game, and modify existing items, in game. This is one of my favorite all time mods (despite it's learning curve and serious aggrivating time it takes to track down scrolls). Lets just say that my Warden Commander armor from Warden's Keep isn't nearly as wimpy as BioWare originally made it, after I got done modding it out
Mambo- omg, I've been a total idiot the last few days. I totally forgot about a mod called Enigma Battle Arena. http://www.dragonage...file.php?id=315
This mod adds a new area to your world map. You can travel to this area, and talk to Vashala, a merchant that is there near the entrance. But DO NOT RECRUIT Vashala! Vashala is a recruitable merchant which carries a vast assortment of rare (non-dlc) items. I do know that she carries the effort armor, I believe she has the juggernaut, all of master wade's armors, just to name a few. And a vast array of the weapons that are hard to find, or difficult to get.
She Does ask a pretty HEFTY chunk of change for them tho (the author's price for making these available without doing quests etc). So gear up on gold
There is also a mod called The Winter Forge- http://www.dragonage...file.php?id=122
this mod can allow you to custom create custom items IN GAME, duplicate (non-dlc) items in game, and modify existing items, in game. This is one of my favorite all time mods (despite it's learning curve and serious aggrivating time it takes to track down scrolls). Lets just say that my Warden Commander armor from Warden's Keep isn't nearly as wimpy as BioWare originally made it, after I got done modding it out
#8
Posted 26 March 2010 - 11:32 PM
Just make a new script, put your code in it, click on compile script and if it compiles without errors Export --> Export without depended resources
Look at this tutorial http://dragonagemodd...player-an-item/ under the section "Exporting Your Module" is a more detailled explanation.
Look at this tutorial http://dragonagemodd...player-an-item/ under the section "Exporting Your Module" is a more detailled explanation.
#9
Posted 27 March 2010 - 12:03 AM
hdhd- thanks very much for the info. I will check it out as soon as I get a chance.
I just wanted to say that I really appreciate you taking the time to help me out with this
I just wanted to say that I really appreciate you taking the time to help me out with this
#10
Posted 28 March 2010 - 10:25 PM
Thank you for the links "DarkeWolf"...let's try



Sign In
Create Account
Back to top









