Difference between revisions of "DrawTextEx"
Tehbugerz0r (talk | contribs) |
Tehbugerz0r (talk | contribs) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
'''Parameter Info:''' | '''Parameter Info:''' | ||
ID (Byte): Player ID to write text to. Set to 0 to write to all players! | ID (Byte): Player ID to write text to. Set to 0 to write to all players! | ||
− | Num (Byte): DrawText layer to use. 1 is used by default | + | Num (Byte): DrawText layer to use. 1 is used by default DrawText messages (eg. "You killed X", "X flag returned"). |
Text (String): Text to be written to the screen. | Text (String): Text to be written to the screen. | ||
Delay (Integer): Time in milliseconds for the text to remain on screen. | Delay (Integer): Time in milliseconds for the text to remain on screen. | ||
Line 13: | Line 13: | ||
'''Description:''' | '''Description:''' | ||
− | This function will draw text anywhere on the players screen (Like the You killed Major text). | + | This function will draw text anywhere on the players screen (Like the You killed Major text). |
Set ID to 0 to write the text to ALL Players in the server! | Set ID to 0 to write the text to ALL Players in the server! | ||
− | Difference from | + | Difference from DrawText is the Num variable. |
==See also== | ==See also== | ||
− | [[ | + | [[DrawText]] |
[[Category:Beta Server Scripting]] | [[Category:Beta Server Scripting]] |
Latest revision as of 10:42, 13 March 2013
From the Scripting Manual
procedure DrawTextEx(ID, Num: byte; Text: string; Delay: integer; Colour: longint; Scale: single; X, Y: integer); Parameter Info: ID (Byte): Player ID to write text to. Set to 0 to write to all players! Num (Byte): DrawText layer to use. 1 is used by default DrawText messages (eg. "You killed X", "X flag returned"). Text (String): Text to be written to the screen. Delay (Integer): Time in milliseconds for the text to remain on screen. Colour (Longint): Colour the text should be when drawn to the console. Scale (Single): Scale to use for drawing. X (Integer): X position for the text. 1 -> 640 Y (Integer): Y position for the text. 1 -> 480 Description: This function will draw text anywhere on the players screen (Like the You killed Major text). Set ID to 0 to write the text to ALL Players in the server! Difference from DrawText is the Num variable.