010A

From GTAMods Wiki
Revision as of 01:19, 4 December 2016 by Spaceeinstein (talk | contribs) (highlight)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

GTA III Vice City San Andreas IS_SCORE_GREATER


Description
Checks if the player has more than enough money
Syntax
010A: player [player handle] money > [int]
Parameter
[player handle]
The handle of the player
[int]
Money
Native analog
IS_SCORE_GREATER

This conditional opcode returns true if the player's money is greater than (but not equal to) the value.

Example

The following example, using Sanny Builder, lets you decrease your money by $1000 by pressing button 13 (CAMERA key), as long as you have more than $999.

0109: player $PLAYER_CHAR money += 2500

while true
    wait 10
    if 
        00E1:   key_pressed 0 13  // camera key
    then
        if
            010A:   player $PLAYER_CHAR money > 999
        then
            0109: player $PLAYER_CHAR money += -1000
        end
    end
end

Keywords

player, check, money, cash, greater, more, than

See also

  • GTA III Vice City San Andreas 0109, adds the player's money
  • GTA III Vice City San Andreas 010B, stores the player's money