Native function
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
- List of native functions (GTA IV)
- GTA V Native declarations
- Scocl on gtaforums has some explanation
- GTA V Research