004F

From GTAMods Wiki
Revision as of 06:26, 27 January 2016 by Spaceeinstein (talk | contribs) (page updates)
Jump to navigation Jump to search

GTA III Vice City San Andreas START_NEW_SCRIPT


Description
Starts a new script
Syntax
004F: create_thread [label] ( [
create_thread [label] ( [
Parameter
[label]
The position in the script it will go to, usually identified by a label
[any]
Parameters if there are ones (optional), up to 16+2 for GTA III and Vice City, 32+2 for San Andreas
Native analog
START_NEW_SCRIPT

This opcode starts a new script and begins an execution from the label. It has a variable number of parameters. The first parameter of the opcode is required, with extra parameters depending on the scripter needs. The extra parameters set the values of the local variables of the new script. The first extra parameter (the second parameter of the opcode) sets the value for the new script's local variable 0@, the second extra parameter sets the value for 1@, and so forth. The total number of extra parameters varies from game to game: 16+2 for GTA III and Vice City, 32+2 for San Andreas. Opcodes 004E or 0459 can be used to terminate the scripts. This opcode is similar to opcode 00D7 but the latter has only one parameter, without extra ones.

Example

$VAR = 10
004F: create_thread @MONEY 10 $VAR
 ...
 ...
:MONEY
03A4: name_thread 'MONEY'
00D6: if 0
003B:   0@ == 1@
004D: jump_if_false @EXIT
0109: player $PLAYER_CHAR money += 0@
  
:EXIT
004E: end_thread

When the game starts, it will execute this code and the player will receive 10 dollars.

Keywords

thread, script, create, start

See also