Jump to content

Stronghold Choice


Guest jtav

Recommended Posts

Guest jtav

Is there a way to give a single class character a choice between two strongholds ala a multi-class characters? Specifically, is there a way to allow paladins to choose either the Order or the De'Arnise keep as a stronghold?

Link to comment

Basically you'd want to:

 

COPY_EXISTING ~nalia.dlg ~override~
   DECOMPILE_DLG_TO_D, 
   REPLACE_TEXTUALLY ~Global("PlayerHasStronghold","GLOBAL",0) 
Class(Player1,FIGHTER_ALL)~ ~Global("PlayerHasStronghold","GLOBAL",0) 
OR(2) 
Class(Player1,FIGHTER_ALL)
Class(Player1,PALADAIN_ALL)~
   REPLACE_TEXTUALLY ~OR(2)
!Class(Player1,FIGHTER_ALL)
Global("PlayerHasStronghold","GLOBAL",1)~ ~OR(3)
!Class(Player1,FIGHTER_ALL)
!Class(Player1,PALADIN_ALL)
Global("PlayerHasStronghold","GLOBAL",1)~
   COMPILE_D_TO_DLG

 

That code may not be perfect, as I can't remember what the formatting of a series of actions looks like when you decompile a .dlg file. But that's basically it.

Link to comment

Archived

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

×
×
  • Create New...