Skip to content

Commit

Permalink
Update CrashAddresses.md (#1011)
Browse files Browse the repository at this point in the history
Removed the Click Button in Solution which didn't have link.
Got Some Solution Through internet

Added Few More Chat box Warning Codes
  • Loading branch information
karthigenius committed Jun 20, 2024
1 parent f5fc60f commit 3cc832d
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions docs/client/CrashAddresses.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,32 @@
title: Crash Addresses
---

The below table lists some common client crash addresses which you can use to help trace the problem and prevent it from occurring in future. In most cases client crashes occur because of a problem in the script. Although, it is worth mentioning that SA:MP is pretty stable nowadays.
The below table lists some common crash addresses which you can use to help trace the problem and prevent it from occurring in future. In most cases client crashes occur because of a problem in the script. Although, it is worth mentioning that SA:MP is pretty stable nowadays.

## Client Crash Addresses

| FREQUENCY | ADDRESS | CAUSE | SOLUTION |
| --------- | ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Rare | 0x00000000 | SA:MP is not initializing. | Re-install the game, ensure singleplayer works If you have any mods installed, remove them |
| Rare | 0x006E3D17 | Skin related. Often occurs when changing the skin of a player who is in a vehicle, or is just entering or exiting one. | Ensure the player is on foot prior to changing their skin. |
| Rare | 0x0058370A | Hard to trace. Appears to be vehicle / camera related. Occured when the script attempted to put the player in a vehicle. The vehicle the player is being teleported into is not yet available and/or rendered in the world | Wait a few hundred-ms before teleporting a player into a vehicle that is newly created. Another solution would potentially be to use SetCameraBehindPlayer prior to teleporting them to the vehicle. |
| Rare | 0x0040F64C | Issue in Windows 7 / Vista relating to permissions. Problem in the installer version that the SA:MP client uses | Update to SA:MP 0.3d. If it still occurs rename your GTASA directory. |
| Rare | 0x0040F64C | Issue in Windows 7 / Vista relating to permissions. Problem in the installer version that the SA:MP client uses | Update to SA:MP 0.3.7. If it still occurs rename your GTASA directory. |
| Rare | 0x0059F8B4 | Occurs when the client fails to load SA:MP objects. Usually a problem with one an essential file, samp.img being missing. | Re-install the client. Try running the installer as Administrator if using Windows Vista / 7. |
| Rare | 0x00746929 OR 0x0081214A | Badly configured client side setting. | Click |
| Rare | 0x00746929 OR 0x0081214A | Badly configured client side setting. | Terminate your "gta_sa.exe" using Task Manager |
| Frequent | 0x007F0BF7 | Related to vehicle upgrades. Often caused when the server attempts to put an invalid upgrade on a vehicle (EG nos or spoilers on a motorbike). Other causes could be bad client side vehicle mods. | There have been various scripts released on these forums which feature error checking for this. |
| Frequent | 0x00544BC8 | Object related. Typically occurs when too many objects are showing for the client, i.e. more than what it can handle. | One practical solution may be to use an object handler/streamer. Many streamers on these forums come with configuration settings to decrease the maximum amount of visible objects showing for a player at any given time |
| Frequent | 0x00415D47 | Object related. Typically occurs when too many object textures are loaded for the client. | Low-level problem that is hard to trace and fix. I think it's somehow related to collisions It occurs randomly depending on the object. Try to remove groups of objects and use the process of elimination to establish which objects are causing it and remove them from your mode. |
| Frequent | 0x00536DF4 | Object related. Typically occurs when too many object textures are loaded for the client. | See above. |
| Frequent | 0x00415D47 OR 0x00536DF4 | Object related. Typically occurs when too many object textures are loaded for the client. | Low-level problem that is hard to trace and fix. I think it's somehow related to collisions It occurs randomly depending on the object. Try to remove groups of objects and use the process of elimination to establish which objects are causing it and remove them from your mode. |
| Rare | 0x593C6F | When the number of burglary objects (that you pick up when robbing the house) is too high. | Reduce the number of burglary objects |

## Chatbox Warning Codes

| MESSAGE | CAUSE | SOLUTION |
| -------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------ |
| Exception 0xC0000005 at 0x5E5815 | Difficult to trace. The method this address points to does a whole load of things. It processes animation blending based on the surface the ped is standing on and then deals with audio, and is called right after a function which _gives_ you weapons... Perhaps what happened here is that some script-invoked event occurred right at the moment that you were entering a vehicle (e.g. receiving a weapon, teleporting or something similar). | - |
| Exception 0x0000005 at 0x534134 | Issue with Windows 7 / Vista Access levels | Running SA:MP as administrator appear to fix it. |
| Exception 0xC0000005 at 0x544BC8 | See 0x00544BC8 | See 0x00544BC8 |
| Exception 0xC0000005 at 0x536DF4 | See 0x00544BC8 | See 0x00544BC8 |
| Exception 0xC0000005 at 0x7F120E | Invalid vehicle upgrade applied | [See here](CommonClientIssues) |
| Exception 0xC0000005 at 0x7F120E | Invalid vehicle upgrade applied | You have installed vehicular modification(Handling, vehicles) because SAMP doesn't load your Handling. cfg & Vehicles. ide, because if you adjust the settings, you could ride faster than others, and it would unfair so that loading from Admin's SAMP Source. In short, SAMP will not load your modified vehicle settings. |
| Exception At Address: 0x0040FB80 | Common crash on windows 7 x64 computers. Happens when you run it in compatibility mode of Windows 2000, Windows XP, or Windows Vista (any service pack). | Fix by disabling compatibility and running gta_sa.exe as administrator. |
| Exception At Address:0x0071A708 | Unknown | Disabling Legend at Options > Display Options. |
| Exception at Address: 0x004DFE92 | Corrupted settings | Delete your gta_sa.set in Documents File. |

0 comments on commit 3cc832d

Please sign in to comment.