TribesReplay/base/gui/TaskHudDlg.gui
Robert MacGregor 116be1648d v22460 (04/13/01):
**Tweak, Spider Clamp turrets need more Surface area for legal deploy space now**:

*Minor tweak to improve long-term server stability.
*A new voice Codec, 'GSM' was added to allow voice communication between Linux and Windows users.
*Minor Sound system tweaks and fixes.
*Minor BOT navigation and seeking improvements.
*Fix removing BOTs counting toward the Vote Meter representation.
*Improvement for Vehicle Physics, particularly instances when Vehicles would get stuck on their edge.
*Fix for BOT's skins not dynamically updating to correct team skin, when Admin team changed them.
*Fixed bug where certain cases would cause Cursor to vanish when it should not.
*Minor Server query improvements.
*Fix Players can be added to the 'Admin List'.
*No more voting to BAN, only Super ADMIN may now BAN.
*Various GUI improvements, notably the Voice Com. elements in the Lobby, and some minor pointer Icon improvements for certain cases.
*Linux 'Penguin' Symbol added for Server List Screen when joining, so users may identify Windows and Linux servers at a glance.
2017-07-17 23:10:36 -04:00

85 lines
1.8 KiB
Plaintext

//--- OBJECT WRITE BEGIN ---
new GuiControl(TaskHudDlg) {
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "640 480";
minExtent = "8 8";
visible = "0";
helpTag = "0";
bypassHideCursor = "1";
new ShellFieldCtrl() {
profile = "GuiChatBackProfile";
horizSizing = "right";
vertSizing = "top";
position = "8 230";
extent = "380 204";
minExtent = "8 8";
visible = "1";
helpTag = "0";
new GuiControl() {
profile = "TaskHudBox";
horizSizing = "right";
vertSizing = "bottom";
position = "1 1";
extent = "378 19";
minExtent = "8 8";
visible = "1";
helpTag = "0";
};
new GuiTextCtrl() {
profile = "TaskHudTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "6 2";
extent = "60 16";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Issued By";
};
new GuiTextCtrl() {
profile = "TaskHudTextProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "164 2";
extent = "80 16";
minExtent = "8 8";
visible = "1";
helpTag = "0";
text = "Description";
};
new GuiControl()
{
profile = "GuiDefaultProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "2 20";
extent = "377 200";
new GuiTextListCtrl(TaskList) {
profile = "TaskHudProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "377 8";
minExtent = "8 8";
visible = "1";
helpTag = "0";
enumerate = "0";
resizeCell = "1";
columns = "2 160";
fitParentWidth = "1";
clipColumnText = "1";
};
};
};
};
//--- OBJECT WRITE END ---