Jump to content

Photo

[REQUEST] unique item of DAO in your inventory


  • Please log in to reply
11 replies to this topic

#1
mambomassacro

mambomassacro

    Stranger

  • Members
  • Pip
  • 5 posts
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!

#2
hdhd

hdhd

    Enthusiast

  • Members
  • PipPip
  • 222 posts
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
mambomassacro

mambomassacro

    Stranger

  • Members
  • Pip
  • 5 posts
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")

#4
DarkeWolf

DarkeWolf

    You KNOW what happens when you have a wolf around sheep!

  • Members
  • PipPipPipPipPip
  • 4,316 posts
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).

#5
hdhd

hdhd

    Enthusiast

  • Members
  • PipPip
  • 222 posts
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

#6
mambomassacro

mambomassacro

    Stranger

  • Members
  • Pip
  • 5 posts

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

thanks again ;)

#7
DarkeWolf

DarkeWolf

    You KNOW what happens when you have a wolf around sheep!

  • Members
  • PipPipPipPipPip
  • 4,316 posts
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 :wink:

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 :wink:

#8
hdhd

hdhd

    Enthusiast

  • Members
  • PipPip
  • 222 posts
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.

#9
DarkeWolf

DarkeWolf

    You KNOW what happens when you have a wolf around sheep!

  • Members
  • PipPipPipPipPip
  • 4,316 posts
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 :thumbsup:

#10
mambomassacro

mambomassacro

    Stranger

  • Members
  • Pip
  • 5 posts
Thank you for the links "DarkeWolf"...let's try :thumbsup:




Page loaded in: 1.159 seconds