by The Ultimate DooMer » Tue Sep 21, 2010 9:04 am
Finally, one more little menu-related thing...the default x-position of the Hexen skill settings is too far left:
Code: Select all
ListMenu "SkillMenu"
{
IfGame(Doom, Chex)
{
StaticPatch 96, 14, "M_NEWG"
}
IfGame(Strife)
{
StaticPatch 96, 14, "M_NGAME"
}
IfGame(Doom, Strife, Chex)
{
StaticPatch 54, 38, "M_SKILL"
Position 48, 63
}
IfGame (Heretic)
{
Position 38, 30
}
IfGame (Hexen)
{
StaticText 74, 16, "$MNU_CHOOSESKILL"
Position 38, 44
}
}
I recommend changing it from 38 to 120, that's pretty much the original position.
Finally, one more little menu-related thing...the default x-position of the Hexen skill settings is too far left:
[code]
ListMenu "SkillMenu"
{
IfGame(Doom, Chex)
{
StaticPatch 96, 14, "M_NEWG"
}
IfGame(Strife)
{
StaticPatch 96, 14, "M_NGAME"
}
IfGame(Doom, Strife, Chex)
{
StaticPatch 54, 38, "M_SKILL"
Position 48, 63
}
IfGame (Heretic)
{
Position 38, 30
}
IfGame (Hexen)
{
StaticText 74, 16, "$MNU_CHOOSESKILL"
Position 38, 44
}
}
[/code]
I recommend changing it from 38 to 120, that's pretty much the original position.