I am just wondering if it is possible to remove effects done to a character such as stuns, freezes, knockdowns, etc. Something happened and it made these effects permanent on some of my characters, and i currently cant move Zevran because of it and my main and Morrigan have some damage over time effect on them. I cant get these effects off of them, and before someone says it i have already tried using injury kits and any despells that my mage has. None of these worked.
Someone in another forum mentioned using the toolset to edit the save by going to the Savegame_effect_list and changing something in there, but there isnt a way to tell what lines in that are what effects. Is there a list of effect numbers or something that would help there?
Removal of effects
Débuté par
Damien Nightwind
, août 31 2010 04:29
#1
Posté 31 août 2010 - 04:29
#2
Posté 01 septembre 2010 - 03:18
Also took the characters to the camp as well and this also didnt work, the effects are permanent now. I guess a value or something was changed and the only wayto fix it is to change those values with the toolset.
#3
Posté 05 septembre 2010 - 04:21
Ok i may have gotten the effects off my other characters, but my main is still affected by a permanent Poison Spit effect. So if anyone happens to know the effect IDs or whatever else identifies the effects in the Toolset could you please let me know, i would rather not have to restart my game just because of one effect.
#4
Posté 05 septembre 2010 - 10:29
What you can do is this:
In the toolset, go to the single player module (file -> manage module -> single player).
On the right side of the screen, you have the palette. Navigate to the script pane (its a little white page). Right click, create new. Paste this in.
void main()
{
RemoveEffectsByParameters(GetHero(),EFFECT_TYPE_INVALID,90068);
}
This removes any effect created by the poison spit ability (90068).
Save it. Right click on the file in the palette and click 'export without dependent resources'. Go here: http://dragonage.wik...om/wiki/Console and figure out how to use the dev console (nothing you type will show up when you're typing it btw). Type in
runscript whatyounamedthescriptabove
and press enter. If this does not work, change thes cript to:
void main()
{
RemoveEffectsByParameters(GetHero());
}
(resave and re-export)
This should remove all effects from your character. You might need to reequip items, but I can't think of other adverse effects that could occur.
In the toolset, go to the single player module (file -> manage module -> single player).
On the right side of the screen, you have the palette. Navigate to the script pane (its a little white page). Right click, create new. Paste this in.
void main()
{
RemoveEffectsByParameters(GetHero(),EFFECT_TYPE_INVALID,90068);
}
This removes any effect created by the poison spit ability (90068).
Save it. Right click on the file in the palette and click 'export without dependent resources'. Go here: http://dragonage.wik...om/wiki/Console and figure out how to use the dev console (nothing you type will show up when you're typing it btw). Type in
runscript whatyounamedthescriptabove
and press enter. If this does not work, change thes cript to:
void main()
{
RemoveEffectsByParameters(GetHero());
}
(resave and re-export)
This should remove all effects from your character. You might need to reequip items, but I can't think of other adverse effects that could occur.
Modifié par FergusM, 05 septembre 2010 - 10:30 .





Retour en haut






