List of opcodes
Revision as of 20:01, 9 February 2010 by Spaceeinstein (talk | contribs)
This is a list of all opcodes, including nops and unsupported ones, in GTA III, Vice City, and San Andreas. Brief descriptions and notes are added to the list for quick and easy access to information.
Opcode | P | Parameter type | Games | Brief description | Notes |
---|---|---|---|---|---|
0000 | 0 | nop | no operation | special use in CLEO | |
0001 | 1 | int | wait | ||
0002 | 1 | label | jump to label | ||
0003 | 1 | int | shake camera | ||
0004 | 2 | int, int | set global to int (G = I) | ||
0005 | 2 | float, float | set global to float (G = F) | ||
0006 | 2 | int, int | set local to int (L = I)) | ||
0007 | 2 | float, float | set local to float (L = F)) | unused in GTA III | |
0008 | 2 | int, int | add global to int (G += I) | ||
0009 | 2 | float, float | add global to float (G += F) | ||
000A | 2 | int, int | add local to int (L += I) | unused in GTA III | |
000B | 2 | float, float | add local to float (L += F) | unused in GTA III | |
000C | 2 | int, int | subtract global to int (G -= I) | ||
000D | 2 | float, float | subtract global to float (G -= F) | ||
000E | 2 | int, int | subtract local to int (L -= I) | unused in GTA III | |
000F | 2 | float, float | subtract local to float (L -= F) | unused in GTA III | |
0010 | 2 | int, int | multiply global to int (G *= I) | ||
0011 | 2 | float, float | multiply global to float (G *= F) | ||
0012 | 2 | int, int | multiply local to int (L *= I) | unused in GTA III and Vice City | |
0013 | 2 | float, float | multiply local to float (L *= F) | unused in GTA III and Vice City | |
0014 | 2 | int, int | divide global to int (G /= I) | ||
0015 | 2 | float, float | divide global to float (G /= F) | ||
0016 | 2 | int, int | divide local to int (L /= I) | unused in GTA III and Vice City | |
0017 | 2 | float, float | divide local to float (L /= F) | unused in GTA III and Vice City | |
0018 | 2 | int, int | check global greater than int (G > I) | ||
0019 | 2 | int, int | check local greater than int (L > I) | ||
001A | 2 | int, int | check int greater than global (I > G) | ||
001B | 2 | int, int | check int greater than local (I > L) | ||
001C | 2 | int, int | check global int greater than global int (G > G int) | ||
001D | 2 | int, int | check local int greater than local int (L > L int) | unused in GTA III and Vice City | |
001E | 2 | int, int | check global int greater than local int (G > L int) | unused in GTA III | |
001F | 2 | int, int | check local int greater than global int (L > G int) | ||
0020 | 2 | float, float | check global greater than float (G > F) | ||
0021 | 2 | float, float | check local greater than float (L > F) | unused in GTA III | |
0022 | 2 | float, float | check float greater than global (F > G) | ||
0023 | 2 | float, float | check float greater than local (F > L) | unused in GTA III | |
0024 | 2 | float, float | check global float greater than global float (G > G float) | ||
0025 | 2 | float, float | check local float greater than local float (L > L float) | unused in GTA III and Vice City | |
0026 | 2 | float, float | check global float greater than local float (G > L float) | unused in GTA III and Vice City | |
0027 | 2 | float, float | check local float greater than global float (L > G float) | unused in GTA III | |
0028 | 2 | int, int | check global greater than or equal to int (G >= I) | ||
0029 | 2 | int, int | check local greater than or equal to int (L >= I) | ||
002A | 2 | int, int | check int greater than or equal to global (I >= G) | ||
002B | 2 | int, int | check int greater than or equal to local (I >= L) | unused in Vice City | |
002C | 2 | int, int | check global int greater than or equal to global int (G >= G int) | unused in GTA III and Vice City | |
002D | 2 | int, int | check local int greater than or equal to local int (L >= L int) | unused in GTA III and Vice City | |
002E | 2 | int, int | check global int greater than or equal to local int (G >= L int) | unused in GTA III and Vice City | |
002F | 2 | int, int | check local int greater than or equal to local int (L >= G int) | unused in GTA III | |
0030 | 2 | float, float | check global greater than or equal to float (G >= F) | unused in GTA III | |
0031 | 2 | float, float | check local greater than or equal to float (L >= F) | unused in GTA III and Vice City | |
0032 | 2 | float, float | check float greater than or equal to global (F >= G) | unused in GTA III | |
0033 | 2 | float, float | check float greater than or equal to local (F >= L) | unused in GTA III and Vice City | |
0034 | 2 | float, float | check global float greater than or equal to global float (G >= G float) | unused in GTA III and Vice City | |
0035 | 2 | float, float | check local float greater than or equal to local float (L >= L float) | unused in GTA III and Vice City | |
0036 | 2 | float, float | check global float greater than or equal to local float (G >= L float) | unused in GTA III and Vice City | |
0037 | 2 | float, float | check local float greater than or equal to global float (L >= G float) | unused in GTA III and Vice City | |
0038 | 2 | int, int | check global equal to integer (G == I) | ||
0039 | 2 | int, int | check local equal to integer (L == I) | ||
003A | 2 | int, int | check global integer equal to global integer (G == G int) | ||
003B | 2 | int, int | check local integer equal to local integer (L == L int) | unused in GTA III and Vice City | |
003C | 2 | int, int | check global integer equal to local integer (G == L int) | unused in GTA III and Vice City | |
003D | 0 | unsupported | |||
003E | 0 | unsupported | |||
003F | 0 | unsupported | |||
0040 | 0 | unsupported | |||
0041 | 0 | unsupported | |||
0042 | 2 | float, float | check global equal to float (G == F) | ||
0043 | 2 | float, float | check local equal to float (L == F) | unused in GTA III | |
0044 | 2 | float, float | check global float equal to global float (G == G float) | unused in GTA III and Vice City | |
0045 | 2 | float, float | check local float equal to local float (L == L float) | unused in GTA III and Vice City | |
0046 | 2 | float, float | check global float equal to local float (G == L float) | unused in GTA III, Vice City, and San Andreas | |
0047 | 0 | unsupported | |||
0048 | 0 | unsupported | |||
0049 | 0 | unsupported | |||
004A | 0 | unsupported | |||
004B | 0 | unsupported | |||
004C | 1 | label | jump to label if true | unused in GTA III | |
004D | 1 | label | jump to label if false | ||
004E | 0 | end thread | |||
004F | -1 | label | create thread | ||
0050 | 1 | label | gosub | ||
0051 | 0 | return | |||
0052 | 0 | nop | no operation | ||
0053 | 5 | int, float, float, float, player handle | create player | parameters rearranged in SB | |
0054 | 4 | player handle, var, var, var | get player coordinates | ||
0055 | 4 | player handle, int, int, int | set player at coordinates | ||
0056 | 6 | player handle, float, float, float, float, int | check player is in 2D area | parameters rearranged in SB | |
0057 | 8 | player handle, float, float, float, float, float, float, int | check player is in 3D area | parameters rearranged in SB | |
0058 | 2 | int, int | add global integer to global integer (G += G int) | ||
0059 | 2 | float, float | add global float to global float (G += G float) | ||
005A | 2 | int, int | add local integer to local integer (L += L int) | unused in GTA III and Vice City | |
005B | 2 | float, float | add local float to local float (L += L float) | unused in GTA III and Vice City | |
005C | 2 | int, int | add local integer to global integer (L += G int) | unused in GTA III and Vice City | |
005D | 2 | float, float | add local float to global float (L += G float) | unused in GTA III and Vice City | |
005E | 2 | int, int | add global integer to local integer (G += L int) | unused in GTA III and Vice City | |
005F | 2 | float, float | add global float to local float (G += L float) | unused in GTA III and Vice City | |
0060 | 2 | int, int | subtract global integer to global integer (G -= G int) | ||
0061 | 2 | float, float | subtract global float to global float (G -= G float) | ||
0062 | 2 | int, int | subtract local integer to local integer (L -= L int) | unused in GTA III and Vice City | |
0063 | 2 | float, float | subtract local float to local float (L -= L float) | unused in GTA III and Vice City | |
0064 | 2 | int, int | subtract local integer to global integer (L -= G int) | unused in GTA III and Vice City | |
0065 | 2 | float, float | subtract local float to global float (L -= G float) | unused in GTA III and Vice City | |
0066 | 2 | int, int | subtract global integer to local integer (G -= L int) | unused in GTA III and Vice City | |
0067 | 2 | float, float | subtract global float to local float (G -= L float) | unused in GTA III | |
0068 | 2 | global, global | multiply global int to global int (G *= G int) | ||
0069 | 2 | global, global | multiply global float to global float (G *= G float) | ||
006A | 2 | local, local | multiply local int to local int (L *= L int) | unused in GTA III and Vice City | |
006B | 2 | local, local | multiply int float to int float (L *= L float) | unused in GTA III and Vice City | |
006C | 2 | local, float | multiply local to float (L *= F) | unused in GTA III, Vice City, and San Andreas | |
006D | 2 | global, float | multiply global to float (G *= F) | unused in GTA III and Vice City | |
006E | 2 | global, local | multiply global int to local int (G *= L int) | unused in GTA III and Vice City | |
006F | 2 | global, local | multiply global float to local float (G *= L float) | unused in GTA III and Vice City | |
0070 | 2 | global, global | divide global int by global int (G /= G int) | unused in San Andreas | |
0071 | 2 | global, global | divide global float by global float (G /= G float) | ||
0072 | 2 | local, local | divide local int by local int (L /= L int) | unused in GTA III and Vice City | |
0073 | 2 | local, local | divide local float by local float (L /= L float) | unused in GTA III and Vice City | |
0074 | 2 | local, global | divide local int by global int (L /= G int) | unused in GTA III and Vice City | |
0075 | 2 | local, global | divide local float by global float (L /= G float) | unused in GTA III and Vice City | |
0076 | 2 | global, local | divide global int by local int (G /= L int) | unused in GTA III, Vice City, and San Andreas | |
0077 | 2 | global, local | divide global float by local float (G /= L float) | unused in GTA III | |
0078 | 2 | unused in GTA III | |||
0079 | 2 | unused in GTA III and Vice City | |||
007A | 2 | unused in GTA III and Vice City | |||
007B | 2 | unused in GTA III and Vice City | |||
007C | 2 | unused in GTA III, Vice City, and San Andreas | |||
007D | 2 | unused in GTA III and Vice City | |||
007E | 2 | unused in GTA III and Vice City | |||
007F | 2 | unused in GTA III and Vice City | |||
0080 | 2 | unused in GTA III and Vice City | |||
0081 | 2 | unused in GTA III and Vice City | |||
0082 | 2 | unused in GTA III and Vice City | |||
0083 | 2 | unused in GTA III and Vice City | |||
0084 | 2 | global, global | set global integer equal to global integer | ||
0085 | 2 | local, local | set local integer equal to local integer | unused in GTA III | |
0086 | 2 | global, global | set global float equal to global float | ||
0087 | 2 | local, local | set local float equal to local float | unused in GTA III | |
0088 | 2 | global, local | set global float equal to local float | unused in GTA III | |
0089 | 2 | local, global | set local float equal to global float | unused in GTA III | |
008A | 2 | global, local | set global integer equal to local integer | unused in GTA III | |
008B | 2 | local, global | set local integer equal to global integer | unused in GTA III | |
008C | 2 | int, float | convert global float to global int | ||
008D | 2 | float, int | convert global int to global float | ||
008E | 2 | int, float | convert local float to global int | unused in GTA III and Vice City | |
008F | 2 | float, int | convert local int to global float | unused in GTA III and Vice City | |
0090 | 2 | int, float | convert global float to local int | unused in GTA III and Vice City | |
0091 | 2 | float, int | convert global int to local float | unused in GTA III and Vice City | |
0092 | 2 | int, float | convert local float to local int | unused in GTA III and Vice City | |
0093 | 2 | float, int | convert local int to local float | unused in GTA III and Vice City | |
0094 | 1 | int | absolute value of global int | unused in GTA III and Vice City | |
0095 | 1 | int | absolute value of local int | unused in GTA III and Vice City | |
0096 | 1 | float | absolute value of global float | unused in GTA III and Vice City | |
0097 | 1 | float | absolute value of local float | unused in GTA III and Vice City | |
0098 | 1 | float | generate random float in range 0 to 1 | unused in GTA III, Vice City, and San Andreas | |
0099 | 1 | int | generate random int in range 0 to 65535 | ||
009A | 6 | int, int, float, float, float, char handle | create char | parameters rearranged in SB | |
009B | 1 | char handle | delete char | ||
009C | 2 | char handle, int | set char to wander path | ||
009D | 0 | unused in GTA III | |||
009E | 6 | char handle, float, float, float, float, int | set char path | unused in GTA III | |
009F | 1 | char handle | set char objective to -1 | ||
00A0 | 4 | char, var, var, var | get char coordinates | ||
00A1 | 4 | char, float, float, float | set char at coordinates | ||
00A2 | 1 | char handle | check char alive | ||
00A3 | 6 | char handle, float, float, float, float, int | |||
00A4 | 8 | char handle, float, float, float, float, float, float, int | |||
00A5 | 5 | int, float, float, float, car handle | create car | parameters rearranged in SB | |
00A6 | 1 | car handle | delete car | ||
00A7 | 4 | car handle, float, float, float | car drive to coordinate | ||
00A8 | 1 | car handle | set car to psycho driver | ||
00A9 | 1 | car handle | reset car from psycho driver | ||
00AA | 4 | car handle, var, var, var | get car coordinates | ||
00AB | 4 | car handle, float, float, float | set car at coordinates | ||
00AC | 1 | car handle | check car is on land | ||
00AD | 2 | car handle, float | set car speed | ||
00AE | 2 | car handle, int | set car traffic behavior | ||
00AF | 2 | car handle, int | set car driver behavior | ||
00B0 | 6 | car handle, float, float, float, float, int | check car is in 2D area | ||
00B1 | 8 | car handle, float, float, float, float, float, float, int | check car is in 3D area | ||
00B2 | 0 | unsupported | |||
— | |||||
00B9 | |||||
00BA | 3 | string, int, int | print text big | ||
00BB | 3 | string, int, int | print text | ||
00BC | 3 | string, int, int | print text now | ||
00BD | 3 | string, int, int | print medium priority text | ||
00BE | 0 | clear all text | |||
00BF | 2 | var, var | get time of day | ||
00C0 | 2 | int, int | set time of day | ||
00C1 | 3 | int, int, var | get minutes to time of day | parameters rearranged in SB | |
00C2 | 4 | float, float, float, float | check is sphere on screen | ||
00C3 | 0 | enter debug mode | |||
00C4 | 0 | exit debug mode | |||
00C5 | 0 | true | |||
00C6 | 0 | false | |||
00C7 | 0 | unsupported | |||
— | |||||
00D5 | |||||
00D6 | 1 | int | if | ||
00D7 | 1 | label | create thread | like 004F but only one parameter | |
00D8 | 0 | mission cleanup | |||
00D9 | 2 | char handle, var | get char's car | parameters rearranged in SB | |
00DA | 2 | player handle, var | get player's car | parameters rearranged in SB | |
00DB | 2 | char handle, car handle | check char is in car | ||
00DC | 2 | player handle, car handle | check player is in car | ||
00DD | 2 | char handle, int | check char is in car model | unused in GTA III | |
00DE | 2 | player handle, int | check player is in car model | ||
00DF | 1 | char handle | check char is in any car | ||
00E0 | 1 | player handle | check player is in any car | ||
00E1 | 2 | int, int | check key is pressing | ||
00E2 | 2 | int, int, var | get key is pressing | unused in GTA III, Vice City, and San Andreas | |
00E3 | 6 | player handle, float, float, float, float, int | check player is in 2D area | parameters rearranged in SB | |
00E4 | 6 | player handle, float, float, float, float, int | check player is in 2D area on foot | parameters rearranged in SB | |
00E5 | 6 | player handle, float, float, float, float, int | check player is in 2D area in car | parameters rearranged in SB | |
00E6 | 6 | player handle, float, float, float, float, int | check player is stopped in 2D area | unused in Vice City, parameters rearranged in SB | |
00E7 | 6 | player handle, float, float, float, float, int | parameters rearranged in SB | ||
00E8 | 6 | player handle, float, float, float, float, int | unused in Vice City, parameters rearranged in SB | ||
00E9 | 5 | player handle, char handle, float, float, int | parameters rearranged in SB | ||
00EA | 5 | player handle, char handle, float, float, int | parameters rearranged in SB | ||
00EB | 5 | player handle, char handle, float, float, int | parameters rearranged in SB | ||
00EC | 6 | char handle, float, float, float, float, int | parameters rearranged in SB | ||
00ED | 6 | char handle, float, float, float, float, int | parameters rearranged in SB | ||
00EE | 6 | char handle, float, float, float, float, int | parameters rearranged in SB | ||
00EF | 6 | char handle, float, float, float, float, int | unused in Vice City, parameters rearranged in SB | ||
00F0 | 6 | char handle, float, float, float, float, int | parameters rearranged in SB | ||
00F1 | 6 | char handle, float, float, float, float, int | unused in Vice City and San Andreas, parameters rearranged in SB | ||
00F2 | 5 | char handle, char handle, float, float, int | unused in GTA III | ||
00F3 | 5 | char handle, char handle, float, float, int | unused in GTA III | ||
00F4 | 5 | char handle, char handle, float, float, int | unused in GTA III and Vice City | ||
00F5 | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
00F6 | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
00F7 | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
00F8 | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
00F9 | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
00FA | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
00FB | 6 | player handle, char handle, float, float, float, int | parameters rearranged in SB | ||
00FC | 6 | player handle, char handle, float, float, float, int | parameters rearranged in SB | ||
00FD | 6 | player handle, char handle, float, float, float, int | parameters rearranged in SB | ||
00FE | 8 | char handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
00FF | 8 | char handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
0100 | 8 | char handle, float, float, float, float, float, float, int | unused in GTA III | ||
0101 | 8 | char handle, float, float, float, float, float, float, int | unused in GTA III | ||
0102 | 8 | char handle, float, float, float, float, float, float, int | unused in GTA III | ||
0103 | 8 | char handle, float, float, float, float, float, float, int | unused in Vice City | ||
0104 | 6 | char handle, char handle, float, float, float, float, int | unused in GTA III | ||
0105 | 6 | char handle, char handle, float, float, float, float, int | unused in GTA III and Vice City | ||
0106 | 6 | char handle, char handle, float, float, float, float, int | unused in GTA III and Vice City | ||
0107 | 5 | int, float, float, float, object handle | create object | parameters rearranged in SB | |
0108 | 1 | object handle | delete object | ||
0109 | 2 | player handle, int | add player money | ||
010A | 2 | player handle, int | check money is greater than value | ||
010B | 2 | player handle, var | get player money value | ||
010C | 5 | player handle, float, float, float, float | change player into rc buggy | ||
010D | 2 | player handle, int | set player wanted level | ||
010E | 2 | player handle, int | set player minimum wanted level | ||
010F | 2 | player handle, int | check player wanted level greater than value | ||
0110 | 1 | player handle | clear player wanted level | ||
0111 | 1 | int | set wasted busted check | ||
0112 | 0 | check player wasted or busted | only works in missions | ||
0113 | 3 | player handle, int, int | add ammo to player weapon | ||
0114 | 3 | char handle, int, int | add ammo to char weapon | ||
0115 | 0 | unsupported | |||
0116 | 0 | unsupported | |||
0117 | 1 | player handle | check player dead | ||
0118 | 1 | char handle | check char dead | ||
0119 | 1 | car handle | check car dead | ||
011A | 2 | char handle, int | |||
011B | 0 | unsupported | |||
011C | 1 | char handle | |||
011D | 1 | ||||
011E | 0 | unsupported | |||
011F | 0 | unsupported | |||
0120 | 0 | unsupported | |||
0121 | 1 | player handle | |||
0122 | 1 | player handle | check player pressing horn | ||
0123 | 2 | char handle, player handle | check char spotting player | ||
0124 | 0 | unsupported | |||
0125 | 0 | unsupported | |||
0126 | 1 | char handle | check char is walking | ||
0127 | 0 | unsupported | |||
0128 | 0 | unsupported | |||
0129 | 4 | car handle, char handle, int, var | create char inside car | parameters rearranged in SB | |
012A | 4 | player handle, float, float, float | warp player from car to coord | ||
012B | 0 | unsupported | |||
012C | 0 | unsupported | |||
012D | 0 | unsupported | |||
012E | 0 | unsupported | |||
012F | 0 | unsupported | |||
0130 | 1 | player handle | check player is busted | ||
0131 | 0 | unsupported | |||
0132 | 0 | unsupported | |||
0133 | 0 | unsupported | |||
0134 | 0 | unsupported | |||
0135 | 2 | car handle, var | set car door status | parameters rearranged in SB | |
0136 | 0 | unsupported | |||
0137 | 2 | car handle, int | check car is model | ||
0138 | 0 | unsupported | |||
— | |||||
0148 | |||||
0149 | 1 | car handle | check car crushed by car crusher | ||
014A | 0 | unsupported | |||
014B | 13 | float, float, float, float, int, int, int, int, int, int, int, int, parked car handle | create parked car generator | parameters rearranged in SB | |
014C | 2 | parked car handle, int | switch car generator | ||
014D | 4 | string, int, int, int | text pager | ||
014E | 2 | int, int | set timer | ||
014F | 1 | int | stop timer | ||
0150 | 0 | ? | |||
0151 | 1 | int | remove status text | ||
0152 | 11 | string, int, int, int, int, int, int, int, int, int, int | set zone car info | 13 parameters in Vice City | |
0153 | 0 | unsupported | |||
0154 | 2 | char handle, string | check char is in zone | ||
0155 | 0 | unsupported | |||
0156 | 3 | string, int, int | set zone ped density | ||
0157 | 3 | player handle, int, int | set camera on player | ||
0158 | 3 | car handle, int, int | set camera on car | ||
0159 | 3 | char handle, int, int | set camera on char | ||
015A | 0 | restore camera | |||
015B | 3 | ||||
015C | 13 | ||||
015D | 1 | float | set gamespeed | ||
015E | 1 | car handle | check car wheels on ground | ||
015F | 6 | float, float, float, float, float, float | set camera position | ||
0160 | 4 | float, float, float, int | pont camera | ||
0161 | 4 | car handle, int, int, blip handle | add blip to car | parameters rearranged in SB | |
0162 | 4 | car handle, int, int, blip handle | add blip to char | parameters rearranged in SB | |
0163 | 0 | unsupported | |||
0164 | 1 | blip handle | delete blip | ||
0165 | 2 | blip handle, int | change blip color | ||
0166 | 2 | blip handle, int | change blip brightness | ||
0167 | 6 | float, float, float, int, int, blip handle | add blip to coordinate | parameters rearranged in SB | |
0168 | 2 | blip handle, int | change blip scale | ||
0169 | 3 | int, int, int | set fade color | ||
016A | 2 | int, int | fade | ||
016B | 0 | check is fading | |||
016C | 4 | float, float, float, float | add hospital restart | ||
016D | 4 | float, float, float, float | add police restart | ||
016E | 4 | float, float, float, float | override restart | ||
016F | 10 | int, float, float, float, float, float, int, int, int, int | create particle | ||
0170 | 2 | player handle, var | get player heading | parameters rearranged in SB | |
0171 | 2 | player handle, float | set player heading | ||
0172 | 2 | char handle, var | get char heading | parameters rearranged in SB | |
0173 | 2 | char handle, float | set char heading | ||
0174 | 2 | car handle, var | get car heading | parameters rearranged in SB | |
0175 | 2 | car handle, float | set car heading | ||
0176 | 2 | object handle, var | get object heading | parameters rearranged in SB | |
0177 | 2 | object handle, float | set object heading | ||
0178 | 2 | ||||
0179 | 2 | ||||
017A | 3 | player handle, int, int | |||
017B | 3 | ||||
017C | 0 | unsupported | |||
017D | 0 | unsupported | |||
017E | 0 | unsupported | |||
017F | 0 | unsupported | |||
0180 | 1 | var | set on mission flag | ||
0181 | 2 | ||||
0182 | 2 | ||||
0183 | 2 | player handle, int | check player health greater than value | ||
0184 | 2 | char handle, int | check char health greater than value | ||
0185 | 2 | car handle, int | check car health greater than value | ||
0186 | 2 | car handle, blip handle | add blip to car | ||
0187 | 2 | char handle, blip handle | add blip to char | ||
0188 | 2 | object handle, blip handle | add blip to object | ||
0189 | 2 | blip handle, float, float, float | add blip with sphere to coordinate | ||
018A | 2 | blip handle, float, float, float | add blip to coordinate | ||
018B | 2 | blip handle, int | change blip display | ||
018C | 4 | play sound | |||
018D | 5 | create sound | |||
018E | 1 | stop sound | |||
018F | 1 | car handle | check car is flipped for 2 seconds | ||
0190 | 1 | car handle | add car to flipped check | ||
0191 | 1 | car handle | remove car from flipped check | ||
0192 | 1 | char handle | set char objective to stand still | ||
0193 | 1 | char handle | set char objective to act like ped | ||
0194 | 1 | char handle | set char objective to go to point | ||
0195 | 0 | unsupported | |||
0196 | 0 | unsupported | |||
0197 | 6 | player handle, float, float, float, float, int | parameters rearranged in SB | ||
0198 | 6 | player handle, float, float, float, float, int | parameters rearranged in SB | ||
0199 | 6 | player handle, float, float, float, float, int | parameters rearranged in SB | ||
019A | 6 | player handle, float, float, float, float, int | parameters rearranged in SB | ||
019B | 6 | player handle, float, float, float, float, int | parameters rearranged in SB | ||
019C | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
019D | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
019E | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
019F | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01A0 | 8 | player handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01A1 | 6 | char handle, float, float, float, float, int | parameters rearranged in SB | ||
01A2 | 6 | char handle, float, float, float, float, int | parameters rearranged in SB | ||
01A3 | 6 | char handle, float, float, float, float, int | parameters rearranged in SB | ||
01A4 | 6 | char handle, float, float, float, float, int | parameters rearranged in SB | ||
01A5 | 6 | char handle, float, float, float, float, int | parameters rearranged in SB | ||
01A6 | 8 | char handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01A7 | 8 | char handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01A8 | 8 | char handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01A9 | 8 | char handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01AA | 8 | char handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01AB | 6 | car handle, float, float, float, float, int | parameters rearranged in SB | ||
01AC | 8 | car handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01AD | 6 | car handle, float, float, float, float, int | parameters rearranged in SB | ||
01AE | 6 | car handle, float, float, float, float, int | parameters rearranged in SB | ||
01AF | 8 | car handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01B0 | 8 | car handle, float, float, float, float, float, float, int | parameters rearranged in SB | ||
01B1 | 3 | player handle, int, int | give player weapon | ||
01B2 | 3 | char handle, int, int | give char weapon | ||
01B3 | 0 | unsupported | |||
01B4 | 2 | player handle | set player control | ||
01B5 | 1 | int | force weather | ||
01B6 | 1 | int | force weather now | ||
01B7 | 0 | release weather | |||
01B8 | 2 | ||||
01B9 | 2 | ||||
01BA | 0 | unsupported | |||
01BB | 4 | object handle, var, var, var | get object coordinates | ||
01BC | 4 | object handle, float, float, float | set object at coordinates | ||
01BD | 1 | var | current time in ms | ||
01BE | 4 | char handle, float, float, float | task look at coord | ||
01BF | 0 | unsupported | |||
01C0 | 2 | player handle, var | store wanted level | parameters rearranged in SB | |
01C1 | 1 | car handle | check car is stopped | ||
01C2 | 1 | char handle | mark char as no longer needed | ||
01C3 | 1 | car handle | mark car as no longer needed | ||
01C4 | 1 | object handle | mark object as no longer needed | ||
01C5 | 1 | char handle | remove char from mission cleanup list | ||
01C6 | 1 | car handle | remove car from mission cleanup list | ||
01C7 | 1 | object handle | remove object from mission cleanup list | ||
01C8 | 5 | car handle, char handle, int, int, var | create char as passenger | parameters rearranged in SB | |
01C9 | 2 | char handle, char handle | char kill char | ||
01CA | 2 | char handle, player handle | char kill player | ||
01CB | 2 | char handle, char handle | char kill char | ||
01CC | 2 | char handle, player handle | char kill player | ||
01CD | 0 | unsupported | |||
01CE | 2 | char handle, player handle | char avoid player | ||
01CF | 2 | char handle, char handle | char avoid char | ||
01D0 | 2 | char handle, player handle | char avoid player | ||
01D1 | 2 | char handle, char handle | char follow char | ||
01D2 | 2 | char handle, player handle | char follow player | ||
01D3 | 2 | char handle, car handle | task leave car | ||
01D4 | 2 | char handle, car handle | task enter car as passenger | ||
01D5 | 2 | char handle, car handle | task enter car as driver | ||
01D6 | 0 | unsupported | |||
01D7 | 0 | unsupported | |||
01D8 | 2 | ||||
01D9 | 2 | ||||
01DA | 0 | unsupported | |||
01DB | 0 | unsupported | |||
01DC | 0 | unsupported | |||
01DD | 0 | unsupported | |||
01DE | 2 | tie char to char | |||
01DF | 2 | tie char to player | |||
01E0 | 1 | clear leader | |||
01E1 | 3 | set char follow route | |||
01E2 | 4 | ||||
01E3 | 4 | string, int, int, int | print text with number big | ||
01E4 | 4 | string, int, int, int | print text with number | ||
01E5 | 4 | string, int, int, int | print text with number now | ||
01E6 | 4 | ||||
01E7 | 6 | float, float, float, float, float, float | switch roads off | ||
01E8 | 6 | float, float, float, float, float, float | switch roads on | ||
01E9 | 2 | car handle, var | get number of passengers | parameters rearranged in SB | |
01EA | 2 | car handle, var | get maximum number of passengers | parameters rearranged in SB | |
01EB | 1 | float | set car density multiplier | ||
01EC | 2 | car handle, int | set car heavy | ||
01ED | 1 | char handle | reset char flag | ||
01EE | 10 | float, float, float, float, float, float, float, float, float, float | activate crane | ||
01EF | 2 | float, float | deactivate crane | ||
01F0 | 1 | int | set max wanted level | ||
01F1 | 0 | unsupported | |||
01F2 | 0 | unsupported | |||
01F3 | 1 | ||||
01F4 | 1 | ||||
01F5 | 2 | parameters rearranged in SB | |||
01F6 | 0 | cancel override restart | |||
01F7 | 2 | player handle, int | set police ignore player | ||
01F8 | 0 | unsupported | |||
01F9 | 9 | string, int, int, int, int, int, int, int, int | init rampage | ||
01FA | 1 | var | get rampage status | ||
01FB | 2 | ||||
01FC | 5 | ||||
01FD | 5 | ||||
01FE | 5 | ||||
01FF | 6 | ||||
0200 | 6 | ||||
0201 | 6 | ||||
0202 | 5 | ||||
0203 | 5 | ||||
0204 | 5 | ||||
0205 | 6 | ||||
0206 | 6 | ||||
0207 | 6 | ||||
0208 | 2 | float, float, var | generate random float in range | parameters rearranged in SB | |
0209 | 2 | int, int, var | generate random int in range | parameters rearranged in SB | |
020A | 2 | car handle, int | set car door state | ||
020B | 1 | car handle | explode car | ||
020C | 4 | ||||
020D | 1 | ||||
020E | 2 | ||||
020F | 2 | ||||
0210 | 2 | ||||
0211 | 3 | ||||
0212 | 0 | unsupported | |||
0213 | 6 | int, int, float, float, float, var | create pickup | parameters rearranged in SB | |
0214 | 1 | pickup handle | check has pickup been collected | ||
0215 | 1 | pickup handle | remove pickup | ||
0216 | 2 | car handle, int | set taxi lights | ||
0217 | 3 | string, int, int | print text big | ||
0218 | 4 | ||||
0219 | 10 | float, float, float, float, float, float, float, float, int, int | create garage | parameters rearranged in SB | |
021A | 0 | unsupported | |||
021B | 2 | ||||
021C | 1 | ||||
021D | 1 | int | set free bomb shop | ||
021E | 0 | unsupported | |||
021F | 0 | unsupported | |||
0220 | 0 | unsupported | |||
0221 | 2 | player handle, int | set player trapped in car | ||
0222 | 2 | player handle, int | set player health | ||
0223 | 2 | char handle, int | set char health | ||
0224 | 2 | car handle, int | set car health | ||
0225 | 2 | get player health | parameters rearranged in SB | ||
0226 | 2 | get char health | parameters rearranged in SB | ||
0227 | 2 | car handle, var | get car health | parameters rearranged in SB | |
0228 | 2 | car handle, var | get car bomb state | ||
0229 | 3 | car handle, int, int | change car color | ||
022A | 6 | ||||
022B | 6 | ||||
022C | 2 | ||||
022D | 2 | ||||
022E | 2 | ||||
022F | 1 | ||||
0230 | 1 | ||||
0231 | 0 | unsupported | |||
0232 | 0 | unsupported | |||
0233 | 0 | unsupported | |||
0234 | 0 | unsupported | |||
0235 | 3 | int, int, int | set gang models | ||
0236 | 2 | int, int | set gang car | ||
0237 | 3 | int, int, int | set gang weapons | ||
0238 | 0 | unsupported | |||
0239 | 2 | ||||
023A | 2 | ||||
023B | 2 | char handle, object handle | check char is touching object | ||
023C | 2 | int, string | load special actor | ||
023D | 1 | string | check special actor loaded | ||
023E | 0 | unsupported | |||
023F | 0 | unsupported | |||
0240 | 2 | ||||
0241 | 1 | player handle | check player is in remote mode | ||
0242 | 2 | ||||
0243 | 2 | ||||
0244 | 3 | ||||
0245 | 2 | ||||
0246 | 0 | unsupported | |||
0247 | 1 | int | request model | ||
0248 | 1 | int | check model has loaded | ||
0249 | 1 | int | mark model as no longer needed | ||
024A | 3 | float, float, var | get phone | ||
024B | 2 | ||||
024C | 2 | ||||
024D | 1 | ||||
024E | 1 | phone (object?) handle | disable phone | ||
024F | 9 | float, float, float, float, int, int, int, int, int | create corona | ||
0250 | 6 | float, float, float, int, int, int | create light | ||
0251 | 0 | unsupported | |||
0252 | 0 | unsupported | |||
0253 | 0 | save current time | |||
0254 | 0 | restore current time | |||
0255 | 4 | set critical mission restart | |||
0256 | 1 | player handle | check player is defined | ||
0257 | 0 | unsupported | |||
— | |||||
0290 | |||||
0291 | 2 | char handle, int | set char attack when provoked | ||
0292 | 0 | unsupported | |||
0293 | 2 | ||||
0294 | 2 | car handle, int | set car can respray | ||
0295 | 0 | unsupported | |||
0296 | 1 | int | release special actor | ||
0297 | 0 | reset number of models killed by player | 1 parameter in San Andreas | ||
0298 | 2 | int, var | get number of models killed by player | 3 parameters in San Andreas, parameters rearranged in SB | |
0299 | 1 | garage ID | activate garage | ||
029A | 0 | unsupported | |||
029B | 5 | ||||
029C | 1 | ||||
029D | 0 | unsupported | |||
029E | 0 | unsupported | |||
029F | 1 | check player stopped | |||
02A0 | 1 | ||||
02A1 | 2 | ||||
02A2 | 5 | ||||
02A3 | 1 | int | set widescreen borders | ||
02A4 | 0 | unsupported | |||
02A5 | 0 | unsupported | |||
02A6 | 0 | unsupported | |||
02A7 | 5 | parameters rearranged in SB | |||
02A8 | 5 | parameters rearranged in SB | |||
02A9 | 2 | char handle, int | set char only damaged by player | ||
02AA | 2 | car handle, int | set car only damaged by player | ||
02AB | 6 | char handle, int, int, int, int, int | set char proofs | ||
02AC | 6 | char handle, int, int, int, int, int | set car proofs | ||
02AD | 7 | ||||
02AE | 7 | ||||
02AF | 7 | ||||
02B0 | 7 | ||||
02B1 | 7 | ||||
02B2 | 7 | ||||
02B3 | 9 | ||||
02B4 | 9 | ||||
02B5 | 9 | ||||
02B6 | 9 | ||||
02B7 | 9 | ||||
02B8 | 9 | ||||
02B9 | 1 | garage ID | deactivate garage | ||
02BA | 0 | unsupported | |||
02BB | 0 | unsupported | |||
02BC | 1 | ||||
02BD | 0 | unsupported | |||
02BE | 0 | unsupported | |||
02BF | 1 | ||||
02C0 | 6 | ||||
02C1 | 6 | ||||
02C2 | 4 | set car drive to coordinates | |||
02C3 | 1 | ||||
02C4 | 0 | unsupported | |||
02C5 | 1 | ||||
02C6 | 0 | ||||
02C7 | 5 | ||||
02C8 | 1 | ||||
02C9 | 0 | ||||
02CA | 1 | check car bounding sphere visible | |||
02CB | 1 | check char bounding sphere visible | |||
02CC | 1 | check object bounding sphere visible | |||
02CD | 2 | ||||
02CE | 4 | get ground z for 3D coord | parameters rearranged in SB | ||
02CF | 4 | float, float, float, var | create fire | parameters rearranged in SB | |
02D0 | 1 | fire handle | check fire is extinguished | ||
02D1 | 1 | fire handle | remove fire | ||
02D2 | 0 | unsupported | |||
02D3 | 4 | car handle, float, float, float | set car drive to coord ignore paths | ||
02D4 | 1 | car handle | turn off car engine | ||
02D5 | 6 | player handle, float, float, float, float, int | check player is shooting in area | ||
02D6 | 6 | char handle, float, float, float, float, int | check char is shooting in area | ||
02D7 | 2 | player handle, int | get current player weapon | ||
02D8 | 2 | char handle, int | get char player weapon | ||
02D9 | 0 | ||||
02DA | 0 | unsupported | |||
02DB | 2 | ||||
02DC | 0 | unsupported | |||
02DD | 5 | string, float, float, float, var | get random char in area | ||
02DE | 1 | player handle | check char is in taxi | ||
02DF | 1 | player handle | check player is aggressive | ||
02E0 | 1 | char handle | check char is aggressive | ||
02E1 | 5 | float, float, float, int, var | create money pickup | parameters rearranged in SB | |
02E2 | 2 | char handle, int | set char accuracy | ||
02E3 | 2 | car handle, var | get car speed | parameters rearranged in SB | |
02E4 | 1 | ||||
02E5 | 2 | parameters rearranged in SB | |||
02E6 | 2 | ||||
02E7 | 0 | start cutscene | |||
02E8 | 1 | var | get cutscene time | ||
02E9 | 0 | check cutscene has finished | |||
02EA | 0 | end cutscene | |||
02EB | 0 | ||||
02EC | 3 | float, float, float | put hidden package | ||
02ED | 1 | int | set total hidden packages | ||
02EE | 6 | float, float, float, float, float, float | check projectile is in area | ||
02EF | 6 | float, float, float, float, float, float | remove projectile in area | ||
02F0 | 0 | unsupported | |||
02F1 | 3 | float, float, float | create exploding barrel | ||
02F2 | 2 | char handle, int | check char is model | ||
02F3 | 2 | load special object | |||
02F4 | 3 | create cutscene actor | |||
02F5 | 2 | set head anim | |||
02F6 | 2 | get cosine | parameters rearranged in SB | ||
02F7 | 2 | get sine | parameters rearranged in SB | ||
02F8 | 2 | car handle, var | get car z angle cosine | ||
02F9 | 2 | car handle, var | get car z angle sine | ||
02FA | 2 | garage ID, int | change garage type | ||
02FB | 10 | float, float, float, float, float, float, float, float, float, float | create crusher crane | ||
02FC | 5 | string, int, int, int, int | print text with 2 numbers big | ||
02FD | 5 | string, int, int, int, int | print text with 2 numbers | ||
02FE | 5 | string, int, int, int, int | print text with 2 numbers now | ||
02FF | 6 | ||||
0300 | 6 | ||||
0301 | 6 | ||||
0302 | 7 | ||||
0303 | 7 | ||||
0304 | 7 | ||||
0305 | 8 | ||||
0306 | 8 | ||||
0307 | 8 | ||||
0308 | 9 | ||||
0309 | 9 | ||||
030A | 9 | ||||
030B | 0 | unsupported | |||
030C | 1 | int | add to progress made | ||
030D | 1 | int | set max progress | ||
030E | 1 | save jump distance | |||
030F | 1 | save jump height | |||
0310 | 1 | save jump flips | |||
0311 | 1 | save jump rotation | |||
0312 | 1 | int | save jump type | ||
0313 | 0 | increment unique jumps found | |||
0314 | 1 | int | set total unique jumps | ||
0315 | 0 | increment taxi dropoffs | |||
0316 | 1 | int | add taxi earnings | ||
0317 | 0 | increment mission attempts | |||
0318 | 1 | string | set latest mission passed | ||
0319 | 2 | ||||
031A | 0 | remove all fires | |||
031B | 0 | unsupported | |||
031C | 0 | unsupported | |||
031D | 2 | char handle, int | check char has been damaged by weapon | ||
031E | 2 | car handle, int | check car has been damaged by weapon | ||
031F | 2 |
External links
- GTAForums: Opcodes for Bartons Editor (GTA3 + VC)
- GTAForums: GTA:SA Opcodes
- GTAForums: MISSION CODING IV - GTA: Liberty City project
- Vice City Opcode Database - retrieved from archive.org
- San Andreas Opcode Database - retrieved from archive.org
- Unified Opcode Database - by PLPynton, hosted by ZAZ
- Latest Vice City opcodes - last update by spaceeinstein
- San Andreas Opcode Database - last update by Deji at GTAGaming.com