
BG II Chap. 3 problem
#1
Posted 30 October 2007 - 10:06 PM
I have traveled to the main entrance to Bodhi's lair (Big blue Door with columns leading to it, top of Area 0800), but the mage that needs to spawn to open the doors isn't spawning. I have tried simply waiting and repeatedly sleeping. Is there a global variable I can modify to get him to spawn?
Any help or suggestions would be much appreciated!
#2
Posted 30 October 2007 - 11:48 PM
Global("AranJob","GLOBAL",3)
Global("FindLassal","AR0801",0)
GlobalLT("Chapter","GLOBAL",4) (this means that global chapter should be lower than four)
and if they are not, you can set them to be so either in shadowkeeper or via
CLUAConsole:SetGlobal("AranJob","GLOBAL",3)
CLUAConsole:SetGlobal("FindLassal","GLOBAL",0)
CLUAConsole:SetGlobal("Chapter","GLOBAL",3)
or alternatively you can try to manually spawn him by
CLUAConsole:CreateCreature("arnfgt06")
and probably
CLUAConsole:CreateCreature("arngol01")
which is the golem to open the door for you.
#3
Posted 31 October 2007 - 09:53 PM
AranJob was already at 3, Chapter was at 3 and FindLassal didn't exist.
I created FindLassal, reloaded but nothing happened.
I then spawned Haz and the golem, then talked to Haz and the golem opened the door...unfortunately the vampire lair appears to be empty and Haz just keeps following around. If you have any other suggestions they would be appreciated, and thanks again for the help so far!
-Woden
Hmm, first I would check if these Globals are what they should be (if you are using shadowkeeper)
Global("AranJob","GLOBAL",3)
Global("FindLassal","AR0801",0)
GlobalLT("Chapter","GLOBAL",4) (this means that global chapter should be lower than four)
and if they are not, you can set them to be so either in shadowkeeper or via
CLUAConsole:SetGlobal("AranJob","GLOBAL",3)
CLUAConsole:SetGlobal("FindLassal","GLOBAL",0)
CLUAConsole:SetGlobal("Chapter","GLOBAL",3)
or alternatively you can try to manually spawn him by
CLUAConsole:CreateCreature("arnfgt06")
and probably
CLUAConsole:CreateCreature("arngol01")
which is the golem to open the door for you.
#4
Posted 31 October 2007 - 10:02 PM
#5
Posted 01 November 2007 - 12:18 AM
"Imagination is given to man to console him for what he is not; a sense of humor, for what he is." - Oscar Wilde
berelinde's mods
TolkienAcrossTheWater website
TolkienAcrossTheWater Forum
#6
Posted 01 November 2007 - 12:21 AM
the first part is the conditions, the second part is what should happen once they are met.
I wager that one of the globals has not set to its proper value, hence the stall, the other (and probably more complicated) possibility could be that something prevented the area script from starting.
Does this help?
IF Global("AranJob","GLOBAL",3) Global("FindLassal","AR0801",0) GlobalLT("Chapter","GLOBAL",4) THEN RESPONSE #100 SetGlobal("FindLassal","AR0801",1) CreateCreature("LASSAL02",[1538.1232],14) // Lassal CreateCreature("BODVAM01",[549.781],14) // Durst CreateCreature("BODVAM02",[931.979],10) // Gellal CreateCreature("BODFGT01",[1678.1229],2) // Grimwarder CreateCreature("BODFGT01",[1443.1287],10) // Grimwarder CreateCreature("BODFGT02",[1623.1080],2) // Grimward Archer CreateCreature("BODFGT02",[1311.1143],10) // Grimward Archer CreateCreature("ARNFGT06",[1737.1485],0) // Haz CreateCreature("ARNGOL01",[1671.1467],6) // Golem CreateCreature("VAMFLM01",[986.583],6) // Fledgling Vampire CreateCreature("GHOGR01",[1103.539],6) // Greater Ghoul CreateCreature("GHOGR01",[176.855],6) // Greater Ghoul CreateCreature("VAMFLM01",[280.946],6) // Fledgling Vampire CreateCreature("GOLCLA01",[505.1389],6) // Clay Golem CreateCreature("VAMFLF01",[1991.670],6) // Fledgling Vampire CreateCreature("BODTAN",[2121.683],6) // Tanova END
#7
Posted 01 November 2007 - 12:26 AM
"Imagination is given to man to console him for what he is not; a sense of humor, for what he is." - Oscar Wilde
berelinde's mods
TolkienAcrossTheWater website
TolkienAcrossTheWater Forum
#8
Posted 01 November 2007 - 12:54 AM


#9
Posted 02 November 2007 - 11:17 AM

#10
Posted 02 November 2007 - 11:27 AM
"Imagination is given to man to console him for what he is not; a sense of humor, for what he is." - Oscar Wilde
berelinde's mods
TolkienAcrossTheWater website
TolkienAcrossTheWater Forum