Bodhi doesn't show up in chapter 6 to kidnap/force a confrontation. I suspect that it's because I have a romance with 4 people in my party and 3 of them are supposed to kidnapped by Bodhi. I think Bodhi has a problem choosing the vampire of her choice .
It could also be something of Ctb/SOS/TDD that I'm unaware of.
Any advice?
Bodhi doesn't show up
Started by Pain Elemental, Jan 07 2007 11:47 AM
4 replies to this topic
#1
Posted 07 January 2007 - 11:47 AM
After an eternity away from you all, I've returned.
#2
Posted 07 January 2007 - 12:25 PM
Most likely it's a problem with area script modified by mods.
Bodhi is spawned in a block with OnCreation() trigger. In order for it to work, all mods which modify this script using EXTEND_TOP must use Continue() action in their scripts (unfortunately, not all do).
If you have at least some minimal understanding of scripting, try adding Continue() to every script block above the first line containing OnCreation() in AR0800.BCS.
Otherwise, upload your AR0800.BCS and I'll try to look into the problem.
Bodhi is spawned in a block with OnCreation() trigger. In order for it to work, all mods which modify this script using EXTEND_TOP must use Continue() action in their scripts (unfortunately, not all do).
If you have at least some minimal understanding of scripting, try adding Continue() to every script block above the first line containing OnCreation() in AR0800.BCS.
Otherwise, upload your AR0800.BCS and I'll try to look into the problem.
#4
Posted 08 January 2007 - 08:58 AM
Looks like these blocks from SoS are responsible:
They should have Continue()'s too.
Fixed script attached (note that you have to re-enter the area for this to work).
IF OnCreation() Global("CbSelenceOpensGraveyard","AR0800",0) THEN RESPONSE #100 TriggerActivation("CbFenceOperation",FALSE) END IF OnCreation() Global("CbSelenceOpensGraveyard","AR0800",1) THEN RESPONSE #100 TriggerActivation("CbFenceOperation",TRUE) END
They should have Continue()'s too.
Fixed script attached (note that you have to re-enter the area for this to work).
Attached Files
Edited by pro5, 08 January 2007 - 08:59 AM.
#5
Posted 08 January 2007 - 12:23 PM
Ah yes, The check to start the Selence Hillstar graveyard quest. There should be a Continue() between the last line and the END.
Adding some extra Continue() worked fine. I guess I missed the it the first time I looked.
Thanks
PS: She choose Tashia from all 4 romances
Adding some extra Continue() worked fine. I guess I missed the it the first time I looked.
Thanks
PS: She choose Tashia from all 4 romances
Edited by Pain Elemental, 08 January 2007 - 12:24 PM.
After an eternity away from you all, I've returned.