Aller au contenu

Photo

Removal of effects


  • Veuillez vous connecter pour répondre
3 réponses à ce sujet

#1
Damien Nightwind

Damien Nightwind
  • Members
  • 82 messages
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?

#2
Damien Nightwind

Damien Nightwind
  • Members
  • 82 messages
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
Damien Nightwind

Damien Nightwind
  • Members
  • 82 messages
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
FergusM

FergusM
  • Members
  • 460 messages
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.

Modifié par FergusM, 05 septembre 2010 - 10:30 .