Jump to content

Gaelan


Recommended Posts

After you agree to work with Gaelan Bayle, he directs you to your contact to acquire your stronghold. However, it doesn't appear that sorcerers or monks are included on this list, so the dialogue abruptly terminates after "Brus 'll be waiting for ye outside. He's me nephew, an' he'll show you to the Copper Coronet. Ye'll find work easily enough there, ye will." Brus uses FIGHTER_ALL and MAGE_ALL checks instead of the explicit class checks used by Gaelan. IIRC MAGE_ALL includes sorcerers but FIGHTER_ALL doesn't include monks, so we may have some touch-ups to do here as well.

Link to comment

Gaelan:

 

// gaelan not directing monks or sorcerers to their stronghold
EXTEND_BOTTOM gaelan 70
 IF ~Class(Player1,MONK)~ THEN GOTO 76
 IF ~Class(Player1,SORCERER)~ THEN GOTO 78
END

 

On second thought, I think FIGHTER_ALL does include monks. If that's the case, this can be ignored:

 

// brus not directing monks to their stronghold
EXTEND_BOTTOM brus2 0
 IF ~Class(Player1,MONK)~ THEN GOTO 5
END

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...