Frequently Asked Questions

From GTAMods Wiki
Revision as of 14:22, 14 March 2011 by Suction Testicle Man (talk | contribs) (IMG Tool read-only error message)
Jump to navigation Jump to search

Please help filling this article with content, by adding and answering frequently asked questions, or by giving explanations how to solve common problems.

"Read beyond end of file" error message in IMG Tool

You must turn off the read-only filesystem option for your GTA installation folder. If you have installed the game to the default location, navigate to "C:\Program Files\Rockstar Games", right-click the installation folder (eg. GTA San Andreas) and click "Properties". Un-check the read-only box and apply to all files (recursively).

GTASA-specific Frequently Asked Questions

I bought GTA: San Andreas version 2.0, am I still able to modify my game?

Yes, although modding is somewhat limited. The whole purpose of a second release was to disable the so-called Hot Coffee content, which was accomplished by deleting the affected files and protecting the game's archives against modification. However, thanks to DexX and jarjar the game's gta3.img file is now 100% moddable, along with SA SCM modding possibilities. See San Andreas v2.0 Modding for further information, links, guides, tutorials and tools.

GTAVC-specific Frequently Asked Questions

Why does GTA: Vice City crash during loading?

Your game could crash for an infinite amount of reasons, but below are the most likely causes after modding your game.

  • You have too many IPL objects in the game. To get past this, use VC Limit Adjuster. Simply change the editable values until the bottommost values turn green.
  • You have not added both the DFF and the TXD for a new vehicle to your IMG archive, or you have duplicates. Use your IMG editor to sort the contents by name, and check for duplicates of anything you have recently added/deleted/replaced.

GTA3-specific Frequently Asked Questions

Why does GTA3 crash during loading?

  • You have not added both the DFF and the TXD for a new vehicle to your IMG archive, or you have duplicates. Use your IMG editor to sort the contents by name, and check for duplicates of anything you have recently added/deleted/replaced.

General scripting

Where do I start to learn coding

Here.

Why does my game crash?

Common mistakes in coding:

  • Almost all loops need at least one "wait" in the code. Without one, it will almost always lock up the game.
  • Almost all car, ped, and weapon models need to be loaded. If you try to spawn a model without loading it, the game can crash.
  • Not all opcodes are supported. Refer to the list of opcodes to see if you are using an unsupported opcode.

Where can I find this mod? / Where can I find people who will make this mod?

If you are too lazy to search, know that such mod does not exist, or don't feel like learning, please refer to the Request Topic in the forums. There is no guarantee that you will get a reply.

How do I merge these mods?

First, script files need to be decompiled using a program, Sanny Builder recommended. To "merge" the mods, you have to copy and paste relevant codes from one file to another. Depending on the complexity of the mods, the code from one file could conflict with the code from another file so a ton of debugging is needed to fix those conflicts. Usually it is not worth the time and energy to "merge" these mods.

External link