03F0

From GTAMods Wiki
Revision as of 07:19, 26 January 2016 by Spaceeinstein (talk | contribs) (page rewrite)
Jump to navigation Jump to search

GTA III Vice City San Andreas USE_TEXT_COMMANDS


Description
Sets text display
Syntax
03F0: enable_text_draw [int]
Parameter
[int]
0 = remove text, 1 = enable text

This opcode allows the removal of all text displayed using opcodes such as 033E.

Example

The following example using Sanny Builder demonstrates the usage of this opcode along with a display text opcode in a loop. Press the CAMERA key to increase the value of the counter on the screen.

const
NUMBER = 0@
end

while true
    wait 10
    if
        00E1:   player 0 pressed_button 13  // camera key
    then
        NUMBER += 1
    end
    045A: text_draw_1number 10.0 10.0 'NUMBER' NUMBER
    03F0: enable_text_draw 0
end

Keywords

use, enable, text, draw, commands