Jump to content


Photo

Bodhi doesn't show up


  • Please log in to reply
4 replies to this topic

#1 Pain Elemental

Pain Elemental

    Always here, just look harder.

  • Member
  • 643 posts

Posted 07 January 2007 - 11:47 AM

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 :P.

It could also be something of Ctb/SOS/TDD that I'm unaware of.

Any advice?
After an eternity away from you all, I've returned.

#2 pro5

pro5
  • Modder
  • 722 posts

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.

#3 Pain Elemental

Pain Elemental

    Always here, just look harder.

  • Member
  • 643 posts

Posted 08 January 2007 - 08:49 AM

Tried adding Continue(), but It had no effect.
I uploaded the file here so any help would be welcome.

Edited by Pain Elemental, 08 January 2007 - 08:49 AM.

After an eternity away from you all, I've returned.

#4 pro5

pro5
  • Modder
  • 722 posts

Posted 08 January 2007 - 08:58 AM

Looks like these blocks from SoS are responsible:
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 Pain Elemental

Pain Elemental

    Always here, just look harder.

  • Member
  • 643 posts

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 :P

Edited by Pain Elemental, 08 January 2007 - 12:24 PM.

After an eternity away from you all, I've returned.