Jump to content

Ranger stronghold quest failure


Recommended Posts

There's a small but annoying bug with the ranger stronghold quests. After you save Mairyn, she sets a four-day timer to the next event in the ranger stronghold, the ogron assault. When the timer expires, the main game script spawns Delon to tell you to get to the village. Delon in turn resets the timer for you to get to the village and save it.

Unfortunately, both events use the same timer. So if you happen to be in the village when the OgronAssault timer ends, the game thinks the second timer has expired and you fail the quest before Delon can appear and talk to you. Gating the call in ar1100.bcs to check for Delon first will fix this, specifically:

IF
    GlobalTimerExpired("OgronAssault","GLOBAL")
    Global("OgronAttack","GLOBAL",1)
    CombatCounter(0)
    NumDeadLT("rogron",6)  // Orc Archer
THEN
    RESPONSE #100
        SetGlobal("OgronAttack","GLOBAL",5)
        SetGlobal("RangerProtector","GLOBAL",6)
END

 

Link to comment

Join the conversation

You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...