Dataraven
Initiate
I am very new to coding in general and I apologize if this is a stupid question. I would like to change the MythicCharacterToken to let characters select 7 instead of 5 skills.
I changed the array Selected = new Skill[7]; and that seems to work properly but I want to change the text at the top of the gump.
AddHtmlLocalized(Width / 3, 45, (Width / 3) * 2, 20, 1152357, White, false, false); // <CENTER>Select Five Skills to Advance</CENTER>
This line appears to generate the text I want to change. Digging around I figured out that the number arg 1152357 seems to be what is giving the text but I cant figure out where to change the actual html.
I assume the reason this is done is to localize the language? Is there some dictionary somewhere that I can update that says: 1152357 = "Select Five Skills to Advance" ?
Thanks in advance, and sorry if I am just being dense.
I changed the array Selected = new Skill[7]; and that seems to work properly but I want to change the text at the top of the gump.
AddHtmlLocalized(Width / 3, 45, (Width / 3) * 2, 20, 1152357, White, false, false); // <CENTER>Select Five Skills to Advance</CENTER>
This line appears to generate the text I want to change. Digging around I figured out that the number arg 1152357 seems to be what is giving the text but I cant figure out where to change the actual html.
I assume the reason this is done is to localize the language? Is there some dictionary somewhere that I can update that says: 1152357 = "Select Five Skills to Advance" ?
Thanks in advance, and sorry if I am just being dense.