Difference between revisions of "Hardcoded"

From GTAMods Wiki
Jump to navigation Jump to search
(i played gta1 mod that had altered exe to allow passing on 1 and 2 blocks slopes on any Z level, i think it was SWGTA, so there was small amout of gta1 hacking present in those times.)
Line 15: Line 15:
 
<dt>Spawners</dt>
 
<dt>Spawners</dt>
 
<dd>Insert instances of default objects (usually vehicles) into the game environment at the request of the user.</dd>
 
<dd>Insert instances of default objects (usually vehicles) into the game environment at the request of the user.</dd>
 +
<dt>Advanced Gameplay Modifications</dt>
 +
<dd>Creating an interface to the GTA engine to add specific gameplay, e.g. [[Multiplayer]] functionality.</dd>
 
</dl>
 
</dl>
 +
 +
==See Also==
 +
[[San Andreas Multiplayer]]
  
 
==External Links==
 
==External Links==
 
* [http://www.gtatools.com/pafiledb/pafiledb.php?action=file&id=1 Delfi's GTAVC Developer Console] - allows hundreds of game environment features to be adjusted while the game is running.
 
* [http://www.gtatools.com/pafiledb/pafiledb.php?action=file&id=1 Delfi's GTAVC Developer Console] - allows hundreds of game environment features to be adjusted while the game is running.
 +
* [http://www.sa-mp.com/ San Andreas Multiplayer] - A multiplayer modification for GTA: San Andreas.
  
 
[[Category:GTA 1]][[Category:GTA 2]][[Category:GTA 3]][[Category:GTA VC]][[Category:GTA SA]]
 
[[Category:GTA 1]][[Category:GTA 2]][[Category:GTA 3]][[Category:GTA VC]][[Category:GTA SA]]

Revision as of 02:30, 12 April 2006

The term "hardcoded" refers to a feature which is built into the game engine (the EXE file). As such, a hardcoded feature cannot be altered from text or binary file formats. Alternative methods have to be used instead.

History

Although it would be possible to edit hardcoded features of GTA1 and GTA2, no significant tools have been developed to do so, except some modifications that kept information about them secret. From GTA3 onwards, there was sufficient interest and expertise in the modding community to develop techniques for altering hardcoded features in the PC versions.

Memory Hacking

When the game is running, all parts of the game which are in use are stored in memory. It is possible to alter these values as they are structured in a stable manner. The modding community has documented many of the memory address used by some editions of the GTA series.

The techniques for finding and altering values in memory are generally referred to as "memory hacking" and can be very complicated. However, they have been implemented by modders for several applications in the GTA series:-

Trainers
Typically enable player health, player location, current weapons and many other statistics to be manipulated.
Admin/Developer Consoles
Capable of making advanced alterations to many specific aspects of game environment, from the cars parked in garages to the strength of gravity.
Spawners
Insert instances of default objects (usually vehicles) into the game environment at the request of the user.
Advanced Gameplay Modifications
Creating an interface to the GTA engine to add specific gameplay, e.g. Multiplayer functionality.

See Also

San Andreas Multiplayer

External Links