Difference between revisions of "0109"

From GTAMods Wiki
Jump to navigation Jump to search
m
m
 
Line 1: Line 1:
{{Icon|trilogy}} '''ADD_SCORE'''
+
{{OpCode
<hr />
+
| games      = {{Icon|t}}
'''Description'''
+
| command    = ADD_SCORE
: Adds the player's money
+
| description = Adds the player's money
'''Syntax'''
+
| syntax1    = 0109: player [''player handle''] money += [''int'']
: 0109: player [''player handle''] money += [''int'']
+
| p1t        = [''player handle'']
'''Parameters'''
+
| p1d        = The [[0053|handle of the player]]
: [''player handle'']
+
| p2t        = [''int'']
:: The handle of the player
+
| p2d        = Amount of money to add
: [''int'']
+
| native      = [[ADD_SCORE]]
:: Amount of money to add
+
}}
'''Native analog'''
 
: [[ADD_SCORE]]
 
  
Adds the integer value to the player's current amount of money. A negative value subtracts the player's money.  
+
This opcode adds the integer value to the player's current amount of money. A negative value subtracts the player's money.  
  
GTA III's upper limit for the money balance is $2,147,483,647. An additional reward will cause an integer overflow and the money negates to -$2,147,483,648{{Ref|1}}. Vice City introduced new upper limit $999,999,999, and the player's money can not go below $0. Negative money balance is possible in San Andreas along with the same upper limit.
+
GTA III's upper limit for the money balance is $2,147,483,647. An additional reward will cause an integer overflow and the money negates to -$2,147,483,648.{{Ref|1}} Vice City introduced a new upper limit of $999,999,999, and the player's money cannot go below $0. Negative money balance is possible in San Andreas along with the same upper limit.
  
==Keywords==
+
== Keywords ==
 
player, add, money, cash, score
 
player, add, money, cash, score
  
==See also==
+
== See also ==
* [[010A]] &ndash; checks if the player's money is greater than value
+
* {{Icon|t}} [[010A]], checks if the player's money is greater than value
* [[010B]] &ndash; stores the player's money
+
* {{Icon|t}} [[010B]], stores the player's money
  
==Notes==
+
== Reference ==
* {{Note|1}} {{GTAF|796495}} &ndash; Negative Money Amount Issue
+
* {{Note|1}} {{GTAF|796495}}, negative money issue discussion
 
 
[[Category:OpCodes]]
 

Latest revision as of 01:25, 4 December 2016

GTA III Vice City San Andreas ADD_SCORE


Description
Adds the player's money
Syntax
0109: player [player handle] money += [int]
Parameter
[player handle]
The handle of the player
[int]
Amount of money to add
Native analog
ADD_SCORE

This opcode adds the integer value to the player's current amount of money. A negative value subtracts the player's money.

GTA III's upper limit for the money balance is $2,147,483,647. An additional reward will cause an integer overflow and the money negates to -$2,147,483,648.[1] Vice City introduced a new upper limit of $999,999,999, and the player's money cannot go below $0. Negative money balance is possible in San Andreas along with the same upper limit.

Keywords

player, add, money, cash, score

See also

  • GTA III Vice City San Andreas 010A, checks if the player's money is greater than value
  • GTA III Vice City San Andreas 010B, stores the player's money

Reference