okay I hope it wont screw my current game and I have found another issue, elmonster told me something that demons taken control in forest of tethyr, those silent head. I killed all demons, then appeared in plane, solar speaks to me mellisan appears. Then final trial is revealed and im back in forest and im stucked there. I cant leave I cant use plane ability
why can't you use Pocket Plane ability? Is there a meesage "This power cannot be used while you are in the planar stronghold." even though you're outside of it? If yes than check this in console:
C:GetGlobal("K#DisableSPIN649","GLOBAL")
if it returns 1 than I suspect some mod is blocking this part of BALDUR25.BCS script:
IF
Global("K#DisableSPIN649","GLOBAL",1)
!AreaCheckObject("AR4500",Player1)
THEN
RESPONSE #100
ReallyForceSpellRES("K#PP_REM",Player1)
SetGlobal("K#DisableSPIN649","GLOBAL",0)
Continue()
END
To fix it locally you can use this in console:
C:Eval('ReallyForceSpellRES("K#PP_REM",Player1)')
C:Eval('SetGlobal("K#DisableSPIN649","GLOBAL",0)')
but it will only fix it once. We need to figure out which mod added buggy code to BALDUR25.BCS that blocks everything below it. There is a mod that can be used to find such problematic blocks but I can't find a link, so please upload BALDUR25.BCS and your current save (before you use above mentioned solution) - I will try to reproduce it locally.
Edited by K4thos, 05 February 2017 - 11:51 AM.