Crash Offsets
-
Sill in test - works well
-
ntdll.dll crashes - Not supported parameter or typing error, not supported/equipable archetype in players char file.
06F47BC4 - incorrect base position?
-
Those are the two offsets we get as the most frequent crash reasons. What makes me helpless is, that you can’t pinpoint a special player or NPC activity as the crashes happen randomly, some times the server runs crash free for three weeks and then crashes happen two or three times in a row. It happens with one player or ten players, in different systems and with players flying missions or simply trading.
I hope with a hint what is triggered I can get an idea where to look at.
-
Ah X) Dirty saying image base + offset
-
Here’s a new plugin for the content 124bd problem. This one only logs on a bad address (also eliminating the crash), so you should have no problem on a running server. It will generate EXE\EngBase-0124BD-bad.txt, logging the values of the previous call.
-
:Reviving stale thread…
Seeing the same 0x47bc4 error in content.dll. What’s interesting me is the idea that it’s related to NPC chatter. I can hear the NPCs chattering to each other, and when I ‘hail’ them. They seem to know who they are but most do not seem to know where they are going or where they’re from.
Every now and again I’ll get the ‘this is patrol white-1, we’re out of the tau-31 system’ or something like that, but in most cases the chatter just dead ends after the we’re out of the/ and no system or base is indicated.
Where would that info be added to the NPCs characteristics? It seems to be related to the added NPCs in the system (Order and DSE in Omicron Minor) and not elsewhere in the universe.
Also, most times you hail an NPC you get the identifier and the destination or origin points. If you want more you have to keep ‘hailing’ them. Usually within a couple hails they start getting rude, but they don’t talk to you without you hitting the hail button.
In some cases I’m experiencing a chatterbox. I’ll hail once and the response will be something like:
idenifier, (chokes just before stating origin)
then an additional choked message will also be played. Most I’ve had were three statements with one press of the hail button, all choked. -
Assuming these are new bases and systems?
-
robocop wrote:
Where would that info be added to the NPCs characteristics? It seems to be related to the added NPCs in the system (Order and DSE in Omicron Minor) and not elsewhere in the universe.Looking at the decoded wav files, only system St01 has a refer line, and there are no St base lines at all.
-
DwnUndr wrote:
Assuming these are new bases and systems?Good God Almighty…
-
I might’ve isolated that content.dll error ( 0x47bc4 ) to a bad encounter. Specifically, I had neglected to add a formation to the factionprop of the faction spawning added armored transport spawns. Once I added the formation to the factionprop, the content error has not reappeared
-
I have strange crashes at content.dll 0005ccd4 sometimes when docking to tradelane.
Anyone experienced this?
-
Getting a strange ctd at offset 0000109c in engclass.dll
engclass is ver 2.0 for multicruise
ctd is reproduce-able by either scanning npcs/players in space or opening the personal cargo window on the hud.
only seems to affect capships. currently testing the rh_cruiser and battleship (you have to love turret zoom for this) tested the engine on an eagle and it worked fine
-
adoxa wrote:
Looks to be a missing/mistyped formation.Maybe. I have changed TTX of vanilla ships, have made pilotable Lifter and Repair ship from vanilla, have added some new ships. And all
SDK - yours, JFLP ))
FLScan 1.3 says 0 errorsMystic…
-
@Helloween: It really looks like it wants a formation - it’s the function to test if the position is for NPC or player. It’s crashing because it can’t read the position data (if you look at the report, ECX should be 0). It appears neither FLScan nor FLEC pick up this error. Here’s a perl script to test it (run it in DATA\MISSIONS).
open(FORMATIONS, 'formations.ini') || die('no formations.ini'); while (<formations>) { if (/^nickname = (.*)/) { $formations{$1} = 1; } } close(FORMATIONS); open(PROPS, 'faction_prop.ini') || die('no faction_prop.ini'); while (<props>) { ++$line; if (/^formation = .*?, (.*)/) { if (!$formations{$1}) { print "Missing formation '$1' at line $line.\n"; } } }</props></formations>