Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions assets/data0_21/huds/inc/adem/team_message.hud
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
if %MESSAGE_SELF
setColor 1 1 1 1
setCursor #WIDTH / 2, 420
setAlign 2 1
setFontFamily "Droid Sans"
setFontStyle "Bold"
setFontSize %VIDHEIGHT / 45
setColor 0 0 0 1
drawCleanStatString %MESSAGE_SELF
moveCursor 0, -1
drawCleanStatString %MESSAGE_SELF
moveCursor 1, 0
drawCleanStatString %MESSAGE_SELF
moveCursor 0, 1
drawCleanStatString %MESSAGE_SELF
moveCursor -0.5, -0.5
setColor 1 1 1 1
drawStatString %MESSAGE_SELF
setFontStyle Normal
endif

if %MESSAGE_OTHER
setColor 1 1 1 1
setCursor #WIDTH / 2, 400
setAlign 2 1
setFontFamily "Droid Sans"
setFontStyle "Bold"
setFontSize %VIDHEIGHT / 45
setColor 0 0 0 1
drawCleanStatString %MESSAGE_OTHER
moveCursor 0, -1
drawCleanStatString %MESSAGE_OTHER
moveCursor 1, 0
drawCleanStatString %MESSAGE_OTHER
moveCursor 0, 1
drawCleanStatString %MESSAGE_OTHER
moveCursor -0.5, -0.5
setColor 1 1 1 1
drawStatString %MESSAGE_OTHER
setFontStyle Normal
endif

//shows value of alive players as "fat" numbers
//setSize 14 * 1.333 * %VIDHEIGHT / %VIDWIDTH, 14
setFontFamily Virtue
Expand Down
22 changes: 22 additions & 0 deletions assets/data0_21/huds/inc/spec/team_message.hud
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
if %MESSAGE_SELF
setAlign #CENTER #MIDDLE
setCursor #WIDTH / 2, #HEIGHT - 56
setColor 1 1 1 1
setFontFamily "Droid Sans"
setFontStyle "Bold"
setFontSize %VIDWIDTH / 64
drawStatString %MESSAGE_SELF
setFontStyle "normal"
endif

if %MESSAGE_OTHER
setAlign #CENTER #MIDDLE
setCursor #WIDTH / 2, #HEIGHT - 56 + 24
setColor 1 1 1 1
setFontFamily "Droid Sans"
setFontStyle "Bold"
setFontSize %VIDWIDTH / 64
drawStatString %MESSAGE_OTHER
setFontStyle "normal"
endif

//shows value of alive players

setFontFamily "Virtue"
Expand Down