Is there a way to change (by a HUD OXP) the position of the text box where messages are shown while flying ?
I am using MilHUD-v3.4.oxp and often find myself in situations where during busy battles there are a lot of messages coming up about missiles and ECM systems and ships asking for help and whatnot. The scrolling messages obscure my aiming reticule which bothers me, so I'd like to shift the messages to the left edge of the screen if possible.
Thanks in advance!
Position of scrolling text messages
Moderators: winston, another_commander
- Cody
- Sharp Shooter Spam Assassin
- Posts: 16081
- Joined: Sat Jul 04, 2009 9:31 pm
- Location: The Lizard's Claw
- Contact:
Re: Position of scrolling text messages
Hi zsozso... try this (it works for Fighter Hud):
make a copy of the core hud.plist (it’s found here: ~\Oolite\oolite.app\Resources\Config), create a ‘Config’ folder in Addons, and drop the copy in there.
Then paste this bit of code:
at the bottom of the C&P’d hud.plist as per:
then tinker with the ‘x’ and ‘y’ co-ords (and the row height, if needed) until it looks right.
Don’t forget to restart holding the shift key down until the spinning Cobra appears after every 'tinker'.
make a copy of the core hud.plist (it’s found here: ~\Oolite\oolite.app\Resources\Config), create a ‘Config’ folder in Addons, and drop the copy in there.
Then paste this bit of code:
Code: Select all
message_gui =
{
width = 210;
height = 160;
x = -210;
y = -35;
row_height=10;
};
comm_log_gui =
{
width = 250;
height = 100;
x = -195;
y = 200;
row_height=10;
};
}
Code: Select all
);
overall_alpha = 0.75;
reticle_target_sensitive = no;
cloak_indicator_on_status_light = yes;
message_gui =
{
width = 210;
height = 160;
x = -210;
y = -35;
row_height=10;
};
comm_log_gui =
{
width = 250;
height = 100;
x = -195;
y = 200;
row_height=10;
};
}
Don’t forget to restart holding the shift key down until the spinning Cobra appears after every 'tinker'.
I would advise stilts for the quagmires, and camels for the snowy hills
And any survivors, their debts I will certainly pay. There's always a way!
And any survivors, their debts I will certainly pay. There's always a way!