Skip to content

Missing CHAIN (RESOLVED)

LlewrenLlewren Member Posts: 59
edited January 9 in General Modding
Leaving up for propriety. I was getting the error:

ERROR locating resource for 'CHAIN3'
Resource [WNOPHY.DLG] not found in KEY file:
[./chitin.key]
ERROR: preprocessing APPEND_EARLY [ophysiabg1/dialogue/wnophy.d]: Failure("resource [WNOPHY.DLG] not found for 'CHAIN3'")
Post edited by Llewren on

Comments

  • LavaDelVortelLavaDelVortel Member Posts: 2,880
    edited March 2023
    Change BEGIN DialogueFile to BEGIN WNOPHY in you wnophy.d file :)

    You will also need to change:
    IF~~THEN REPLY ~I was just stopping by, sorry.~ EXTERN WNOPHY Rejoin02x02
    CHAIN WNOPHY REJOIN.02


    to:
    IF~~THEN REPLY ~I was just stopping by, sorry.~ EXIT

    Unless there was suppose to be some reply from the NPC after that :)

    EDIT:

    There's also this:

    ~Fine. I guess I'll work on my swordplay until you realise my worth.~
    DO ~SetGlobal("WNOPHYJoin","GLOBAL",0)~ EXIT


    It should be:

    IF~~THEN REPLY ~Fine. I guess I'll work on my swordplay until you realise my worth.~
    DO ~SetGlobal("WNOPHYJoin","GLOBAL",0)~ EXIT


    And this:

    CHAIN WNOPHY JOIN.06

    Should be:

    CHAIN WNOPHY Join01x06

    And this:

    IF~~THEN REPLY ~I'm fine on my own, thanks.~ EXTERN WNOPHY JOIN.03

    Should be:

    IF~~THEN REPLY ~I'm fine on my own, thanks.~ EXTERN WNOPHY Join01x03
  • LlewrenLlewren Member Posts: 59
    @LavaDelVortel to my rescue once again.

    I think I messed things up further when I tried to fix it earlier.
    Change BEGIN DialogueFile to BEGIN WNOPHY

    This was the main thing I overlooked when I was tweaking with it. Thank you!!
Sign In or Register to comment.