Difference between revisions of "029C"
Jump to navigation
Jump to search
m |
m |
||
Line 1: | Line 1: | ||
{{Icon|3}} '''IS_BOAT''' | {{Icon|3}} '''IS_BOAT''' | ||
<hr /> | <hr /> | ||
− | |||
'''Description''' | '''Description''' | ||
: Checks if the vehicle is a boat | : Checks if the vehicle is a boat | ||
'''Syntax''' | '''Syntax''' | ||
− | : 029C: | + | : 029C: is [''car handle''] boat |
'''Parameter''' | '''Parameter''' | ||
: [''car handle''] | : [''car handle''] | ||
:: The handle of the vehicle | :: The handle of the vehicle | ||
− | This opcode returns true if the vehicle is of type boat. | + | This opcode returns true if the vehicle is of type boat. Legacy documentations had incorrectly described this opcode as "car stopped," which had remained uncorrected for a long time. |
− | |||
== For Vice City == | == For Vice City == | ||
− | This opcode does not exist in Vice City | + | This opcode does not exist in Vice City but the game can recognize vehicles by type. The following example, using Sanny Builder with [[CLEO]] for Vice City, and tested on US v1.0, should work similarly to this opcode. Place this at the end of the file: |
<source lang="scm"> | <source lang="scm"> | ||
:opcode_029C | :opcode_029C |
Revision as of 19:01, 23 June 2015
Description
- Checks if the vehicle is a boat
Syntax
- 029C: is [car handle] boat
Parameter
- [car handle]
- The handle of the vehicle
This opcode returns true if the vehicle is of type boat. Legacy documentations had incorrectly described this opcode as "car stopped," which had remained uncorrected for a long time.
For Vice City
This opcode does not exist in Vice City but the game can recognize vehicles by type. The following example, using Sanny Builder with CLEO for Vice City, and tested on US v1.0, should work similarly to this opcode. Place this at the end of the file:
:opcode_029C
05E7: 0@ = car {car handle} struct
// change {car handle} to the actual handle of the vehicle
0@ += 0x29C // vehicle type offset
05E0: 0@ = read_memory 0@ size 1 virtual_protect 0
if
0@ == 1 // is type boat
then
0485: return_true
else
059A: return_false
end
return
Use the gosub as a substitute for opcode 029C. This can be placed only within an IF statement:
if
gosub @opcode_029C
then
// [RETURNED TRUE]
else
// [RETURNED FALSE]
end
Keywords
check, stopped, car, boat