Jump to content

Recommended Posts

Hello Randy,

 

Just to check, are you referring to the sentinel standing on the small hill in the southeastern section of Tranquility? This is the sentinel that Malachite is talking about. I ask because I don't think this sentinel should ever turn hostile unless you attack it directly and without provocation, and I wanted to make sure you weren't checking the wrong one!

 

If you have destroyed the sentinel, there isn't an easy way to respawn the creature that I am aware of. If you still want to finish the quest, though, you could do so by editing the scripts. Here's one approach.

 

1. Go into the folder 'Avernum 5 Files' and then 'Scripts'.

 

2. Make a copy of 'z132tranqdlg.txt' and put it in a safe place. This is to make sure that nothing gets broken irreversibly, and so that you can restore the game to normal once you've finished!

 

3. In the z132tranqdlg.txt that's still in the Scripts folder, find the section of the file that says:

 

begintalknode 2;
    state = -1;
    nextstate = -1;
    condition = get_sdf(41,4) == 0;
    question = "special";
    text1 = "The scribe who lived here fled in panic. The door has several large gouges in it, probably left by an angry sentinel. That would explain the owner's absence.";
    action = SET_SDF 41 4 1;

 

4. Replace this section with:

 

begintalknode 2;
    state = -1;
    nextstate = -1;
    condition = 1;
    question = "special";
    text1 = "Debug. Starting sentinel test.";
    action = SET_SDF 41 4 1;
    code =
        sf(41,7,0);
        sf(41,6,1);
        set_attitude(30043,10);
        set_attitude(30044,10);
        set_attitude(30045,10);
        set_attitude(30046,10);
    break;

 

5. Launch Avernum 5. Go to the southeastern section of Tranquility and find the scribe's house on the western edge of that area.

 

6. Open the door and step inside. The test will commence as soon as you pass beyond the door.

 

7. Survive! This script alteration is very simple. Don't step on the squares inside the door again, or else the timer will be reset. The best way to do this would be to dart inside the house to trigger the sentinels, and then to run back outside (and probably somewhere else where it's easier to avoid them).

 

8. When you've finished, replace the modified z132tranqdlg.txt with the unchanged copy that you made.

 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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