-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
37 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
setFontFamily con_fontSystem | ||
if %SOFTKEYBOARD | ||
setFontSize %VIDHEIGHT / 35 | ||
endif | ||
ifnot %SOFTKEYBOARD | ||
setFontSize %VIDHEIGHT / 50 | ||
endif | ||
|
||
setAlign 1 1 | ||
setSize #WIDTH - 20 * 1.3333333333 * %VIDHEIGHT / %VIDWIDTH, 130 | ||
setCursor 10 * 1.3333333333 * %VIDHEIGHT / %VIDWIDTH, 56 | ||
ifnot %CHAT_MODE && %SOFTKEYBOARD | ||
moveCursor 0, 305 | ||
if %CHASING != #NOTSET | ||
moveCursor 0, -30 | ||
endif | ||
endif | ||
|
||
if %CHAT_MODE > 0 | ||
setColor 0 0 0 1 | ||
endif | ||
if %CHAT_MODE == 0 | ||
setColor 0 0 0 0 | ||
endif | ||
|
||
drawChat 7 * 1.3333333333 * %VIDHEIGHT / %VIDWIDTH, 6, "gfx/2d/chat1" | ||
|
||
if %CHAT_MODE > 0 | ||
setSize 32 * 1.3333333333 * %VIDHEIGHT / %VIDWIDTH, 32 | ||
moveCursor #WIDTH - 60 * 1.3333333333 * %VIDHEIGHT / %VIDWIDTH, 90 | ||
drawPicByName "gfx/2d/bubblechat" | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
if %RACE == 0 | ||
// draws the kill log in the lower left corner of the screen | ||
setAlign #LEFT, #BOTTOM | ||
setCursor 10 * 1.3333333333 * %VIDHEIGHT / %VIDWIDTH, #HEIGHT - 40 | ||
setCursor 10 * 1.333 * %VIDHEIGHT / %VIDWIDTH, #HEIGHT - 43 | ||
// character-space vs resolution | ||
setSize 400 * 1.3333333333 * %VIDHEIGHT / %VIDWIDTH, 30 | ||
setSize 400 * 1.333 * %VIDHEIGHT / %VIDWIDTH, 60 | ||
setFontFamily con_fontSystem | ||
setFontStyle Bold | ||
setFontSize %VIDHEIGHT / 48 | ||
drawObituaries #LEFT, 24 | ||
setFontSize %VIDHEIGHT / 50 | ||
drawObituaries #LEFT 18 | ||
setFontStyle "Normal" //resets font style to default | ||
endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters