07F2

From GTAMods Wiki
Revision as of 09:58, 17 July 2015 by Seemann (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

San Andreas IS_PLAYER_PERFORMING_STOPPIE


Description

Checks if the player is performing a stoppie

Syntax

07F2:   player [player handle] performing_stoppie

Parameter

[player handle]
The handle of the player

Native analog

IS_PLAYER_PERFORMING_STOPPIE

This conditional opcode returns true when the player is performing a stoppie. A stoppie is being performed if only the front wheel of a motorcycle or bicycle is touching the ground. The body of the bike and the rear wheel cannot touch any solid surface.

For Vice City

This opcode does not exist in Vice City but it is possible to detect if the player is performing a stoppie. The following example, using Sanny Builder with CLEO for Vice City in an external script (not the main one) and tested on US v1.0, should work similarly to this opcode.

:opcode_07F2
05E0: 0@ = read_memory 0x94AE2C size 4 virtual_protect 0  // get stoppie duration
0@ > 0  // change duration limit to suit your needs
05F6: ret 0

Use this line as a substitute for opcode 07F2. This can be placed anywhere within the external script as a conditional statement.

if
  05F5: call_scm_func @opcode_07F2 inputs 0
then
  ...
end

Keywords

check, player, performing, stoppie