Guest jtav Posted May 18, 2006 Share Posted May 18, 2006 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
Grim Squeaker Posted May 18, 2006 Share Posted May 18, 2006 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.