I can get the script to add items from the core resources but I cannot get it to add regular game resources. So, if I can use the script in Awakening it would seem the problem is getting the script itself to recognize the resources I am trying to call. Someone somewhere said you can extra the files to your core override folder of your module but once you extract the uti's there what do you do with them. I want to both look at them in the toolset in the demo module and give them to my character in game.
How do I use a script to add items to my character in Awakening?
Débuté par
skarlson
, mars 19 2010 03:12
#1
Posté 19 mars 2010 - 03:12
#2
Posté 19 mars 2010 - 10:26
Anyone?
#3
Posté 20 mars 2010 - 05:09
bump
#4
Posté 20 mars 2010 - 05:49
Are you talking about enemy drops? There's a mod out there with some in game items on bosses (like the Black Vials revenants) Here's the link: social.bioware.com/project/867/
There's a tutorial in the comments section on how to add your own items in.
There's a tutorial in the comments section on how to add your own items in.
#5
Posté 20 mars 2010 - 06:31
The awakening item file names are in contained in the designeritems.ERF file.
To add an item, you can use a script like this:
void main() {
object oPlayer = GetHero();
CreateItemOnObject(R"afshfadsjfhgskdaasgf.uti", oPlayer);
}
The resource does not actually need to be recognized by the toolset or even exist for that matter, like you seem to suggest. The above script compiles just fine.
To add an item, you can use a script like this:
void main() {
object oPlayer = GetHero();
CreateItemOnObject(R"afshfadsjfhgskdaasgf.uti", oPlayer);
}
The resource does not actually need to be recognized by the toolset or even exist for that matter, like you seem to suggest. The above script compiles just fine.
#6
Posté 22 mars 2010 - 09:28
as stated here http://social.biowar..._custom_modules
i followed everything there and my script wont work in awakening, just on origins
i followed everything there and my script wont work in awakening, just on origins
#7
Posté 23 mars 2010 - 12:05
Thanks traversc. I wasn't suggesting that scripts won't compile. What I was saying is that the script I use compiles fine and I can summon DA:O items into Awakenings just fine but I cannot summong DA:O:A items into Awakenings using the same script. For instance I can have a bunch of listed from designeritems.erf and items from DA:O to be given to myself in game and DA:O items will spawn fine but not the DA:O:A items.





Retour en haut






