Jump to content

Class title change


Kish

Recommended Posts

The spell GREAT_DRUID_TITLE changes all a character's class titles to Great Druid.

 

Is there a way to change them separately? That is, a way to make Jaheira show up on her character sheet as a Fighter and Great Druid, rather than a Great Druid and Great Druid?

Link to comment

The trouble with changing the title to Fighter/Great Druid, is that that would just make her class names show up on her character sheet as Fighter/Great Druid and Fighter/Great Druid. (For example, at 3 million XP, she'd be a level 16 Fighter/Great Druid and a level 14 Fighter/Great Druid.) I need something that will change both her class titles to something different from each other.

Link to comment

If you apply the Kit after the dualing is complete or the multiclassed character already exists, then you don't need to change "the class":

35asxs9.jpg

This was done via a character running this, well actually 6 triplets, whatever:

IF
	Global("IJ#mage1c","GLOBAL",0)
	Class(PLAYER1,CLERIC)
	Level(PLAYER1,2)
THEN
	RESPONSE #100
		SetGlobal("IJ#mage1c","GLOBAL",1)
		Continue()
END

IF
	Global("IJ#mage1c","GLOBAL",1)
	Class(PLAYER1,CLERIC)
	LevelGT(PLAYER1,2)
THEN
	RESPONSE #100
		SetGlobal("IJ#mage1c","GLOBAL",0)
		Continue()
END

IF
	Class(PLAYER1,CLERIC_MAGE)
	Level(PLAYER1,3)
	Global("IJ#mage1c","GLOBAL",1)
THEN
	RESPONSE #100
		SetGlobal("IJ#mage1c","GLOBAL",2)
		ActionOverride(PLAYER1,AddSuperKit(ij#mage))
		Continue()
END
Link to comment

Archived

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

×
×
  • Create New...