Native function

From GTAMods Wiki
Revision as of 12:45, 23 August 2014 by Gta.bullet (talk | contribs)
Jump to navigation Jump to search

Native function is a specific parameter used in GTA IV and GTA V script engine that perform various tasks. There is a "call" opcode for calling natives.

GTA IV

There are something like ~3000 of natives in GTA IV. Comparing to the scm-engine from previous GTA 3D series, which had one native to one opcode assigned, RAGE has less than 100 opcodes and they look like a real assembler, there is only one opcode for native calling. Native to call is the param of this opcode, this param is a hash of the native name.

GTA V

GTA V features ~4500 natives and almost all of these functions are in use in the original game scripts, this means that while building game's main executable only the natives required by the scripts are included (IV scripts were using only 2/3 of them). There is no original native name list in GTA V (IV had one), name hashes were used instead.

See Also