Portal-Zone Gothic-Zone Gothic II-Zone Gothic 3-Zone Gothic 4-Zone Modifikationen-Zone Download-Zone Foren-Zone RPG-Zone Almanach-Zone Spirit of Gothic

 

Seite 8 von 27 « Erste ... 4567891011121519 ... Letzte »
Ergebnis 141 bis 160 von 538
  1. Beiträge anzeigen #141 Zitieren
    Knight
    Registriert seit
    Aug 2009
    Ort
    Hessen
    Beiträge
    1.484
     
    Cryp18Struct ist offline
    Falls du weisst um welche Art mob es sich handelt könnte auch AI_UseMob reichen. Beispielsweise kann man in einem Dialog sowas machen:
    Code:
    AI_UseMob (self, "LAB", 1); // Alchemitisch benutzen
    AI_Wait(self, 3); // 3 Sekunden warten
    AI_UseMob (self, "LAB", -1); // Alchemitisch Nutzung beenden

  2. Beiträge anzeigen #142 Zitieren
    Knight Commander Avatar von Neconspictor
    Registriert seit
    Jan 2009
    Beiträge
    2.749
     
    Neconspictor ist offline
    Zitat Zitat von Cryp18Struct Beitrag anzeigen
    Falls du weisst um welche Art mob es sich handelt könnte auch AI_UseMob reichen. Beispielsweise kann man in einem Dialog sowas machen:
    Code:
    AI_UseMob (self, "LAB", 1); // Alchemitisch benutzen
    AI_Wait(self, 3); // 3 Sekunden warten
    AI_UseMob (self, "LAB", -1); // Alchemitisch Nutzung beenden
    Hey Danke, funktionert wie gewünscht Dass ich darauf nicht alleine gekommen bin

  3. Beiträge anzeigen #143 Zitieren
    Knight Commander Avatar von Neconspictor
    Registriert seit
    Jan 2009
    Beiträge
    2.749
     
    Neconspictor ist offline
    @Lehona:
    Ich hätte einen Vorschlag für die LeGo Talente: Und zwar kann man im Moment zwar neue Talente für einen Npc erstellen, aber nicht mehr löschen. Wenn ein Npc stirbt, wäre es wünschenswert, wenn man den PermMem-Speicher wieder freigeben könnte.
    Für LoA habe ich folgende Funktion geschrieben, die du theoretsch als Vorlage benutzen könntest:

    Code:
    func void Npc_ClearTalents(var c_npc npc) {
    	
    	if (!Hlp_IsValidNpc(npc)) {return; };
    
    	var int hndl; hndl = npc.aivar[AIV_TALENT];
    	
    	if (!Hlp_IsValidHandle(hndl)) { return; };
    	
    	var zCArray arr; arr = get(hndl);
    	
    	// free memory 
    	MEM_Free(arr.array);
    	arr.array = 0;
    	arr.numInArray = 0;
    	arr.numAlloc = 0;
    	
    	// delete hndl
    	delete(hndl);
    	
    	// update npc
    	npc.aivar[AIV_TALENT] = 0;
    };

  4. Beiträge anzeigen #144 Zitieren
    now also in your universe  Avatar von Milky-Way
    Registriert seit
    Jun 2007
    Beiträge
    15.205
     
    Milky-Way ist offline
    In TAL_GetValue sieht es ja so aus:
    Code:
    func int TAL_GetValue(var c_npc npc, var int talent) {
    	if (!Hlp_IsValidNpc(npc)) { return -1; };
    	if (!npc.aivar[AIV_TALENT]) {
    		npc.aivar[AIV_TALENT] = _TAL_CreateArray();
    	};
    	_TAL_CheckSize(npc.aivar[AIV_TALENT]);
    	MEM_ArrayRead(getPtr(npc.aivar[AIV_TALENT]), talent);
    };
    Gibt es einen guten Grund, in der rot-markierten Zeile das Array anzulegen, statt irgendwie den default-Wert zurückzugeben? (Schwierigkeit vermutlich, dass es der richtige Typ ist?) Bei uns werden dadurch letztlich für alle Npc die Talente angelegt, auch wenn wir sie nur für vereinzelte Npc tatsächlich auf einen anderen Wert setzen. Im Prinzip braucht man ja nur die Talent-Arrays anlegen für Npc, bei denen der Wert auf einen nicht-default-Wert gesetzt werden soll.

  5. Beiträge anzeigen #145 Zitieren
    Ehrengarde Avatar von mud-freak
    Registriert seit
    Dec 2005
    Beiträge
    2.199
     
    mud-freak ist offline
    Zitat Zitat von Milky-Way Beitrag anzeigen
    Gibt es einen guten Grund, in der rot-markierten Zeile das Array anzulegen, statt irgendwie den default-Wert zurückzugeben? (Schwierigkeit vermutlich, dass es der richtige Typ ist?) Bei uns werden dadurch letztlich für alle Npc die Talente angelegt, auch wenn wir sie nur für vereinzelte Npc tatsächlich auf einen anderen Wert setzen. Im Prinzip braucht man ja nur die Talent-Arrays anlegen für Npc, bei denen der Wert auf einen nicht-default-Wert gesetzt werden soll.
    Nach dem Aufruf von _TAL_CreateArray() sollte MEM_ArrayRead(getPtr(npc.aivar[AIV_TALENT]), talent) sowieso Null zurückgeben. Ich habe es im LeGo SVN entsprechend geändert.

  6. Beiträge anzeigen #146 Zitieren
    now also in your universe  Avatar von Milky-Way
    Registriert seit
    Jun 2007
    Beiträge
    15.205
     
    Milky-Way ist offline
    Von einem Tester habe ich nun einen Spielstand erhalten, in dem die SCRPTSAVE.SAV so aussieht:
    Code:
    PermMem::v2
    
    HNDL:1
    :
    
    HNDL:3
    :
    
    HNDL:4
    :
    
    HNDL:5
    :
    
    HNDL:6
    :
    
    HNDL:7
    :
    
    HNDL:8
    :
    
    HNDL:14
    :
    
    HNDL:15
    :
    
    HNDL:16
    :
    
    HNDL:17
    :
    
    HNDL:18
    :
    
    HNDL:19
    :
    
    HNDL:20
    :
    
    HNDL:21
    :
    
    HNDL:22
    :
    
    HNDL:23
    :
    
    HNDL:24
    :
    
    HNDL:25
    :
    
    HNDL:26
    :
    
    HNDL:28
    :
    
    HNDL:29
    :
    
    HNDL:30
    :
    
    HNDL:31
    :
    
    HNDL:32
    :
    
    HNDL:33
    :
    
    HNDL:34
    :
    
    HNDL:35
    :
    
    HNDL:36
    :
    
    HNDL:37
    :
    
    HNDL:38
    :
    
    HNDL:39
    :
    
    HNDL:40
    :
    
    HNDL:41
    :
    
    HNDL:42
    :
    
    HNDL:43
    :
    
    HNDL:44
    :
    
    HNDL:45
    :
    
    HNDL:54
    :
    
    HNDL:55
    :
    
    HNDL:56
    :
    
    HNDL:57
    :
    
    HNDL:58
    :
    
    HNDL:59
    :
    
    HNDL:60
    :
    
    HNDL:61
    :
    
    HNDL:62
    :
    
    HNDL:63
    :
    
    HNDL:64
    :
    
    HNDL:65
    :
    
    HNDL:66
    :
    
    HNDL:70
    :
    
    HNDL:71
    :
    
    HNDL:72
    :
    
    HNDL:73
    :
    
    HNDL:76
    :
    
    HNDL:77
    :
    
    HNDL:83
    :
    
    HNDL:89
    :
    
    HNDL:90
    :
    
    HNDL:91
    :
    
    HNDL:100
    :
    
    HNDL:101
    :
    
    HNDL:102
    :
    
    HNDL:103
    :
    
    HNDL:106
    :
    
    HNDL:112
    :
    
    HNDL:113
    :
    
    HNDL:116
    :
    
    HNDL:117
    :
    
    HNDL:118
    :
    
    HNDL:119
    :
    
    HNDL:127
    :
    
    HNDL:128
    :
    
    HNDL:136
    :
    
    HNDL:137
    :
    
    HNDL:138
    :
    
    HNDL:139
    :
    
    HNDL:140
    :
    
    HNDL:141
    :
    
    HNDL:142
    :
    
    HNDL:143
    :
    
    HNDL:144
    :
    
    HNDL:145
    :
    
    HNDL:146
    :
    
    HNDL:147
    :
    
    HNDL:148
    :
    
    HNDL:149
    :
    
    HNDL:150
    :
    
    HNDL:151
    :
    
    HNDL:152
    :
    
    HNDL:153
    :
    
    HNDL:154
    :
    
    HNDL:155
    :
    
    HNDL:156
    :
    
    HNDL:157
    :
    
    HNDL:158
    :
    
    HNDL:159
    :
    
    HNDL:161
    :
    
    HNDL:162
    :
    
    HNDL:171
    :
    
    HNDL:172
    :
    
    HNDL:173
    :
    
    HNDL:174
    :
    
    HNDL:175
    :
    
    HNDL:177
    :
    
    HNDL:178
    :
    
    HNDL:179
    :
    
    HNDL:180
    :
    
    HNDL:183
    :
    
    HNDL:185
    :
    
    HNDL:186
    :
    
    HNDL:187
    :
    
    HNDL:188
    :
    
    HNDL:191
    :
    
    HNDL:192
    :
    
    HNDL:193
    :
    
    HNDL:194
    :
    
    HNDL:195
    :
    
    HNDL:196
    :
    
    HNDL:197
    :
    
    HNDL:198
    :
    
    HNDL:207
    :
    
    HNDL:209
    :
    
    HNDL:210
    :
    
    HNDL:211
    :
    
    HNDL:212
    :
    
    HNDL:213
    :
    
    HNDL:214
    :
    
    HNDL:215
    :
    
    HNDL:218
    :
    
    HNDL:219
    :
    
    HNDL:220
    :
    
    HNDL:221
    :
    
    HNDL:222
    :
    
    HNDL:224
    :
    
    HNDL:231
    :
    
    HNDL:232
    :
    
    HNDL:234
    :
    
    HNDL:235
    :
    
    HNDL:239
    :
    
    HNDL:240
    :
    
    HNDL:241
    :
    
    HNDL:243
    :
    
    HNDL:248
    :
    
    HNDL:249
    :
    
    HNDL:250
    :
    
    HNDL:251
    :
    
    HNDL:252
    :
    
    HNDL:253
    :
    
    HNDL:264
    :
    
    HNDL:267
    :
    
    HNDL:269
    :
    
    HNDL:278
    :
    
    HNDL:279
    :
    
    HNDL:280
    :
    
    HNDL:281
    :
    
    HNDL:282
    :
    
    HNDL:283
    :
    
    HNDL:284
    :
    
    HNDL:285
    :
    
    HNDL:286
    :
    
    HNDL:288
    :
    
    HNDL:289
    :
    
    HNDL:290
    :
    
    HNDL:291
    :
    
    HNDL:292
    :
    
    HNDL:293
    :
    
    HNDL:294
    :
    
    HNDL:297
    :
    
    HNDL:298
    :
    
    HNDL:299
    :
    
    HNDL:300
    :
    
    HNDL:301
    :
    
    HNDL:302
    :
    
    HNDL:303
    :
    
    HNDL:304
    :
    
    HNDL:309
    :
    
    HNDL:314
    :
    
    HNDL:320
    :
    
    HNDL:322
    :
    
    HNDL:323
    :
    
    HNDL:324
    :
    
    HNDL:325
    :
    
    HNDL:326
    :
    
    HNDL:327
    :
    
    HNDL:328
    :
    
    HNDL:335
    :
    
    HNDL:336
    :
    
    HNDL:340
    :
    
    HNDL:341
    :
    
    HNDL:342
    :
    
    HNDL:343
    :
    
    HNDL:344
    :
    
    HNDL:357
    :
    
    HNDL:358
    :
    
    HNDL:359
    :
    
    HNDL:360
    :
    
    HNDL:364
    :
    
    HNDL:368
    :
    
    HNDL:373
    :
    
    HNDL:374
    :
    
    HNDL:375
    :
    
    HNDL:379
    :
    
    HNDL:380
    :
    
    HNDL:384
    :
    
    HNDL:394
    :
    
    HNDL:395
    :
    
    HNDL:409
    :
    
    PermMem::End
    Hat jemand Ideen, wie es dazu gekommen sein könnte?

  7. Beiträge anzeigen #147 Zitieren
    now also in your universe  Avatar von Milky-Way
    Registriert seit
    Jun 2007
    Beiträge
    15.205
     
    Milky-Way ist offline
    Vermutlich als Folge der Ikarus-Problematik mit negativen Pointern scheint dieser Fehler in PermMem aufzutreten:
    Code:
    Info:  0 Q: ===  PermMem::Archive  ===
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269901744, 9057)                          +   63 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847024280)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847024280, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901360, -2119085416, 269018816, 269018816, 20314692, 1, 748117359, 4, 269080208) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  5 X: Store Device: NVIDIA GeForce GTX 960 .... <zError.cpp,#465>
    Info:  5 X: XD3D_SetDevice: Switching to windowed on same device ... .... <zError.cpp,#465>
    Info:  5 X: XD3D_ClearDevice: Releasing old mode ... .... <zError.cpp,#465>
    Info:  5 X: Start to save textures (lightmaps) ... .... <zError.cpp,#465>
    Info:  5 X: Number of saved textures:171 .... <zError.cpp,#465>
    Info:  5 X: zCDXTCCache_D3D :: ClearCache: Surfaces to clear - 0 .... <zRndD3D_DxtcCache.cpp,#177>
    Info:  5 X: Destroy all vertexbuffers. .... <zError.cpp,#465>
    Info:  5 X: zCDXTCCache_D3D :: ClearCache: Surfaces to clear - 0 .... <zRndD3D_DxtcCache.cpp,#177>
    Info:  5 X: XD3D_InitPort: 2560 x 1440 x 32(device:0 mode:0) .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPerDX: D3DXInitialize done .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPerDX: Found NVIDIA GeForce GTX 960 \ Microsoft Direct3D Hardware Transform and Lighting acceleration capable device .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPerDX: Switching to NVIDIA GeForce GTX 960 \ Microsoft Direct3D Hardware Transform and Lighting acceleration capable device .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPerDX: Hardware TnL supported. .... <zError.cpp,#465>
    Info:  5 X: XD3D_TestCapabilities: Device has passed capability tests. .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: szDriver=nvd3dum.dll .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: szDescription=NVIDIA GeForce GTX 960 .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: wProduct=0 .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: wVersion=0 .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: wSubVersion=0 .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: wBuild=0 .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: dwVendorId=4318 .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: dwDeviceId=5121 .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: dwSubSysId=963065922 .... <zError.cpp,#465>
    Info:  5 X: D3D Device-Info: dwRevision=161 .... <zError.cpp,#465>
    Info:  5 X: XD3D_EnumTextureCallback: Store RGB Format .... <zError.cpp,#465>
    Info:  5 X: XD3D_EnumTextureCallback: Store RGB Format .... <zError.cpp,#465>
    Info:  5 X: XD3D_EnumTextureCallback: Store RGB Format .... <zError.cpp,#465>
    Info:  5 X: XD3D_EnumTextureCallback: Store RGB Format .... <zError.cpp,#465>
    Info:  5 X: XD3D_EnumTextureCallback: Device supports DXT1 .... <zError.cpp,#465>
    Info:  5 X: XD3D_EnumTextureCallback: Device supports DXT2 .... <zError.cpp,#465>
    Info:  5 X: XD3D_EnumTextureCallback: Device supports DXT3 .... <zError.cpp,#465>
    Info:  5 X: XD3D_EnumTextureCallback: Device supports DXT4 .... <zError.cpp,#465>
    Info:  5 X: XD3D_EnumTextureCallback: Device supports DXT5 .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: Maximal texture width  -> 16384 .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: Maximal texture height -> 16384 .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: Alpha testing supported .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: no w-buffering .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: Color-Buffer depth:32 .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: Z-Buffer depth:32 .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: caps - windowed mode possible .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: caps - gamma correction enabled .... <zRndD3D_Init.cpp,#852>
    Info:  5 X: XD3D_InitPort: caps - total videomem:3901233152 .... <zRndD3D_Init.cpp,#879>
    Info:  5 X: XD3D_InitPort: caps - free videomem:3838498816 .... <zRndD3D_Init.cpp,#880>
    Info:  5 X: XD3D_InitPort: caps - w-based fog supported .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: Start to rebuild vertexbuffers ... .... <zError.cpp,#465>
    Info:  5 X: XD3D_InitPort: Vertexbuffers rebuild done. .... <zError.cpp,#465>
    Info:  5 X: Start to rebuild saved textures (lightmaps) ... .... <zError.cpp,#465>
    Info:  5 X: Number of rebuild textures:171 .... <zError.cpp,#465>
    Info:  5 X: Vid_SetScreenMode: Switched to windowed mode   ... .... <zRndD3D_Vid.cpp,#580>
    Info:  5 X: Vid_SetScreenMode: No changes ... .... <zRndD3D_Vid.cpp,#559>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CURROFFS .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    Fault: 0 Q:         MEM_ERROR('PermMem: Unbekannte Klasse. ')                      +   21 bytes
    Fault: 0 Q:         _PM_ERROR('Unbekannte Klasse. ')                               +   95 bytes
    Fault: 0 Q:         _PM_DATATOSAVEOBJECT('', '')                                   +  574 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269901744, 9057)                          +  275 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847024280)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(10903)                                            +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847024280, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(10903)                                            +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(10903)                                            +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: PermMem: Unbekannte Klasse. 
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_WRITESAVESTRUCT()                                          +   10 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847024280)                                 +  119 bytes
    Fault: 0 Q:         MEM_CALLBYID(10903)                                            +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847024280, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(10903)                                            +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(10903)                                            +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         FREE(-2040114800, 8416)                                        +   98 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577986840, 9222)                          +   37 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010152)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010152, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577986840, 9222)                          +   63 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010152)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010152, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CURROFFS .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    Fault: 0 Q:         MEM_ERROR('PermMem: Unbekannte Klasse. ')                      +   21 bytes
    Fault: 0 Q:         _PM_ERROR('Unbekannte Klasse. ')                               +   95 bytes
    Fault: 0 Q:         _PM_DATATOSAVEOBJECT('', '')                                   +  574 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577986840, 9222)                          +  275 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010152)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010152, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: PermMem: Unbekannte Klasse. 
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_WRITESAVESTRUCT()                                          +   10 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010152)                                 +  119 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010152, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         FREE(-2040114800, 8416)                                        +   98 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577986872, 9222)                          +   37 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847012264)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847012264, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577986872, 9222)                          +   63 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847012264)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847012264, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CURROFFS .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    Fault: 0 Q:         MEM_ERROR('PermMem: Unbekannte Klasse. ')                      +   21 bytes
    Fault: 0 Q:         _PM_ERROR('Unbekannte Klasse. ')                               +   95 bytes
    Fault: 0 Q:         _PM_DATATOSAVEOBJECT('', '')                                   +  574 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577986872, 9222)                          +  275 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847012264)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847012264, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: PermMem: Unbekannte Klasse. 
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_WRITESAVESTRUCT()                                          +   10 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847012264)                                 +  119 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847012264, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         FREE(-2040114800, 8416)                                        +   98 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269901696, 9057)                          +   37 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007560)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007560, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269901696, 9057)                          +   63 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007560)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007560, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CURROFFS .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    Fault: 0 Q:         MEM_ERROR('PermMem: Unbekannte Klasse. ')                      +   21 bytes
    Fault: 0 Q:         _PM_ERROR('Unbekannte Klasse. ')                               +   95 bytes
    Fault: 0 Q:         _PM_DATATOSAVEOBJECT('', '')                                   +  574 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269901696, 9057)                          +  275 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007560)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007560, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: PermMem: Unbekannte Klasse. 
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_WRITESAVESTRUCT()                                          +   10 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007560)                                 +  119 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007560, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         FREE(-2040114800, 8416)                                        +   98 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269901960, 8976)                          +   37 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007368)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007368, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269901960, 8976)                          +   63 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007368)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007368, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CURROFFS .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    Fault: 0 Q:         MEM_ERROR('PermMem: Unbekannte Klasse. ')                      +   21 bytes
    Fault: 0 Q:         _PM_ERROR('Unbekannte Klasse. ')                               +   95 bytes
    Fault: 0 Q:         _PM_DATATOSAVEOBJECT('', '')                                   +  574 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269901960, 8976)                          +  275 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007368)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007368, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: PermMem: Unbekannte Klasse. 
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_WRITESAVESTRUCT()                                          +   10 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007368)                                 +  119 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007368, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         FREE(-2040114800, 8416)                                        +   98 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269902032, 8976)                          +   37 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847021752)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847021752, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269902032, 8976)                          +   63 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847021752)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847021752, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CURROFFS .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    Fault: 0 Q:         MEM_ERROR('PermMem: Unbekannte Klasse. ')                      +   21 bytes
    Fault: 0 Q:         _PM_ERROR('Unbekannte Klasse. ')                               +   95 bytes
    Fault: 0 Q:         _PM_DATATOSAVEOBJECT('', '')                                   +  574 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269902032, 8976)                          +  275 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847021752)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847021752, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: PermMem: Unbekannte Klasse. 
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_WRITESAVESTRUCT()                                          +   10 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847021752)                                 +  119 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847021752, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         FREE(-2040114800, 8416)                                        +   98 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269902104, 8976)                          +   37 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010712)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010712, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269902104, 8976)                          +   63 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010712)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010712, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CURROFFS .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    Fault: 0 Q:         MEM_ERROR('PermMem: Unbekannte Klasse. ')                      +   21 bytes
    Fault: 0 Q:         _PM_ERROR('Unbekannte Klasse. ')                               +   95 bytes
    Fault: 0 Q:         _PM_DATATOSAVEOBJECT('', '')                                   +  574 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(269902104, 8976)                          +  275 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010712)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010712, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: PermMem: Unbekannte Klasse. 
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_WRITESAVESTRUCT()                                          +   10 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010712)                                 +  119 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010712, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         FREE(-2040114800, 8416)                                        +   98 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577987000, 9222)                          +   37 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010184)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010184, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577987000, 9222)                          +   63 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010184)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010184, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CURROFFS .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    Fault: 0 Q:         MEM_ERROR('PermMem: Unbekannte Klasse. ')                      +   21 bytes
    Fault: 0 Q:         _PM_ERROR('Unbekannte Klasse. ')                               +   95 bytes
    Fault: 0 Q:         _PM_DATATOSAVEOBJECT('', '')                                   +  574 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577987000, 9222)                          +  275 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010184)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010184, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: PermMem: Unbekannte Klasse. 
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_WRITESAVESTRUCT()                                          +   10 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847010184)                                 +  119 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847010184, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         FREE(-2040114800, 8416)                                        +   98 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577987064, 9222)                          +   37 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007096)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007096, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8556)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'MEM_PtrToInst: Invalid pointer: -2040114800') +   62 bytes
    Fault: 0 Q:         MEM_ERROR('MEM_PtrToInst: Invalid pointer: -2040114800')       +   21 bytes
    Fault: 0 Q:         MEM_PTRTOINST(461993168)                                       +  101 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577987064, 9222)                          +   63 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007096)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007096, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    Fault: 0 Q: MEM_PtrToInst: Invalid pointer: -2040114800
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENTSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.OFFSSTACK .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CURROFFS .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CONTENT .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.INSTNAME .... <zParser_Symbol.cpp,#365>
    Info:  2 U:PAR: Adressing an empty Instance : _PM_SAVESTRUCT.CLASSNAME .... <zParser_Symbol.cpp,#365>
    Fault: 0 Q: [start of stacktrace]
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    Fault: 0 Q:         MEM_ERROR('PermMem: Unbekannte Klasse. ')                      +   21 bytes
    Fault: 0 Q:         _PM_ERROR('Unbekannte Klasse. ')                               +   95 bytes
    Fault: 0 Q:         _PM_DATATOSAVEOBJECT('', '')                                   +  574 bytes
    Fault: 0 Q:         _PM_INSTTOSAVESTRUCT(577987064, 9222)                          +  275 bytes
    Fault: 0 Q:         _PM_ARCHIVE_LISTSUB(847007096)                                 +   84 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         LIST_FORF(847007096, _PM_ARCHIVE_LISTSUB)                      +   75 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         MEM_CALL(LIST_FORF.FNC)                                        +   21 bytes
    Fault: 0 Q:         _PM_ARCHIVE()                                                  +  199 bytes
    Fault: 0 Q:         _BW_SAVEGAME()                                                 +   89 bytes
    Fault: 0 Q:         MEM_CALLBYID(8428)                                             +  224 bytes
    Fault: 0 Q:         _HOOK(269901504, 102959520, 1, 102957088, 20310516, 8578800, 0, 102957088, 8630468) +  468 bytes
    Fault: 0 Q:         [UNKNOWN]                                                      +530864101 bytes
    Fault: 0 Q: [end of stacktrace]
    
    // und immer so weiter
    
    Info:  0 Q: buffer used:     0
    Info:  0 Q: buffer cleaned:  0
    Info:  0 Q: objects created: 0
    Info:  0 Q: objects cleaned: 0
    Info:  0 Q: ellapsed time:   8191
    Info:  0 Q: ===        Done        ===
    Ich schreibe es hier hauptsächlich für den Fall, dass die Folgefehler (?)
    Code:
    Fault: 0 Q:         MEMINT_HANDLEERROR(3, 'PermMem: Unbekannte Klasse. ')          +   62 bytes
    etwas sind, was PermMem selbst noch abfangen sollte. Mein Eindruck (meine Hoffnung) ist, dass diese Problematik mit dem neuesten Ikarus-Fix gar nicht erst auftritt (auftreten kann), aber zur Sicherheit hier noch die Info, da wir aktuell mit diesen Logs hier deutlich mehr Infos haben als zuvor.

    Meine Vermutung ist, dass dieses Problem die zuvor berichteten korrumpierten SCRPTSAVE.SAV verursacht. Würdet ihr dem zustimmen?

  8. Beiträge anzeigen #148 Zitieren
    Knight Avatar von GenerationLost
    Registriert seit
    Apr 2009
    Ort
    Whereabouts Unknown
    Beiträge
    1.773
     
    GenerationLost ist offline
    Zitat Zitat von Lehona Beitrag anzeigen
    Bezüglich der Bugs: Hier wurden schon ein paar Grundbausteine für zukünftige Versionen gelegt, so dass fortlaufende Funktionen (FrameFunctions) individuell bei pausiertem Spiel ebenfalls angehalten werden können (oder eben nicht). Aber auch das sind gute Inputs, die in der jetzigen Version der Buffs nicht berücksichtigt wurden. Habe ich also aufgenommen
    Gefunden hier: https://forum.worldofplayers.de/foru...1#post25789444

    Gibt es dazu eigentlich Neuigkeiten oder Vorabversionen? Gerade das Pausieren von FrameFunctions bei pausiertem Spiel könnte ich gerade gut gebrauchen.

  9. Beiträge anzeigen #149 Zitieren
    Knight
    Registriert seit
    Aug 2009
    Ort
    Hessen
    Beiträge
    1.484
     
    Cryp18Struct ist offline
    Pausierte FrameFunctions sind schon im LeGo dev branch:
    https://app.assembla.com/spaces/lego...on/commits/171
    (sind die Funktionen die mit GT enden wie FF_ApplyGT und so)

  10. Beiträge anzeigen #150 Zitieren
    Dea
    Registriert seit
    Jul 2007
    Beiträge
    10.446
     
    Lehona ist offline
    Zitat Zitat von GenerationLost Beitrag anzeigen
    Gefunden hier: https://forum.worldofplayers.de/foru...1#post25789444

    Gibt es dazu eigentlich Neuigkeiten oder Vorabversionen? Gerade das Pausieren von FrameFunctions bei pausiertem Spiel könnte ich gerade gut gebrauchen.
    Für dich reicht es vermutlich auch, wenn du einfach Timer_SetPauseInMenu(true) aufrufst. Das ist eine globale Einstellung, die für alle FFs gilt.

  11. Beiträge anzeigen #151 Zitieren
    Knight Avatar von GenerationLost
    Registriert seit
    Apr 2009
    Ort
    Whereabouts Unknown
    Beiträge
    1.773
     
    GenerationLost ist offline
    Zitat Zitat von Lehona Beitrag anzeigen
    Für dich reicht es vermutlich auch, wenn du einfach Timer_SetPauseInMenu(true) aufrufst. Das ist eine globale Einstellung, die für alle FFs gilt.
    Ja, das reicht schon, danke.
    Damit funktioniert es auch. FF_ApplyOnceExtGT() ist bei auch mit offenem Menü noch weitergelaufen.

  12. Beiträge anzeigen #152 Zitieren
    Serima Avatar von Fisk2033
    Registriert seit
    Dec 2010
    Ort
    Dresden
    Beiträge
    5.802
     
    Fisk2033 ist offline
    Ich habe 2 Sachen.

    1. Scheinbar wird durch die neuste/neueren LeGo Versionen mein (bzw. war es ursprünglich von Umfi) altes Giftsystem, in Kombination mit Bloodsplats, nicht mehr umgesetzt.
    Das alte Giftsystem machte quasi das gleiche wie die Bloodsplats. Dort wurde auch "Npc_PercEnable(hero, PERC_ASSESSDAMAGE, _B_Gift);" das AssesDamage Perc gesetzt. Allerdings wird es ignoriert, wenn die Bloodsplats initialisiert sind. Ich habe mich gestern halb tot gesucht, weil es mit einer alten Gothic-Installation prima funktionierte und dann mit meiner neusten nicht mehr... In der alten Gothic Installation ist LeGo in Version 2.2.1 installiert.
    Ist das ein Bug oder durch irgendeine Umstellung in LeGo nun einfach so?

    €dit: Folgendes Problem konnte ich gerade lösen, indem ich " | LeGo_Buffs" für "LeGo_Init" hinzugefügt hab
    Spoiler:(zum lesen bitte Text markieren)

    2. In diesem Zug wollte ich das Giftsystem mit Buffs aktualisieren, aber es möchte nicht so richtig klappen.
    Ich habe die Bloodsplats nicht initialisiert um das PERC_ASSESSDAMAGE zu nutzen und das Buff-Beispiel aus dem Wiki genommen. Sieht dann so aus.
    Code:
    //========================================
    // Loop
    //========================================
    func void _B_HeroDamage_Loop() 
    {
        Npc_PercEnable(hero, PERC_ASSESSDAMAGE, _B_HeroDamage_Ver);
    };
    
    
    
    //========================================
    // Perception für den Helden
    //========================================
    func void _B_HeroDamage_Ver() {
    	var int currDam;
    	currDam = Hero_LastHPs - hero.attribute[ATR_Hitpoints];
    	if(currDam) 
    	{
    		IF (Hlp_GetInstanceID(other) == Hlp_GetInstanceID(Bloodfly))
    		|| (Hlp_GetInstanceID(other) == Hlp_GetInstanceID(Minecrawler))
    		{
    			Buff_ApplyOrRefresh  (hero, deadly_poison);
    		}; 
    	};
    };
    
    instance deadly_poison(lCBuff) {
            name = "tödliches Gift";
            bufftype = BUFF_BAD;
            
            durationMS = 10*1000; //10 Sekunden lang
            tickMS = 1000; // Jede Sekunde
            
            onTick = SAVE_GetFuncID(deadly_poison_damage); // Every second, after 1 second, the damage should be applied
            buffTex = "POISON.TGA";
    };
    
    func void deadly_poison_damage(var int bh) 
    {
        var int ptr; ptr = Buff_GetNpc(bh);
        if (!ptr) { return; }; // Kann passieren, falls z.B. die Welt gewechselt wurde
        var c_npc n; n = _^(ptr);
        Npc_ChangeAttribute(n, ATR_HITPOINTS, -3); // 3 Schaden
    };
    Spawne ich nun Ingame eine Blutfliege, dann kriege ich eine Ikarus-Warnung sobald sie mich sticht. Danach klappt der Buff auch erstmal gut (HP wird sekündlich abgezogen), aber sobald die 10 Sekunden rum sind flieg ich mit einer AV raus.
    Code:
    ======================================= UNHANDLED EXCEPTION OCCURED ======================================================
    ======================================= CRASH INFOS: =====================================================================
    Gothic II - 2.6 (fix), Parser Version: 50
    User:  Flo,  CPUType: 586,  Mem: 2048 MB total, 2048 MB free
    Camera: Pos(26261.1152/64.0450668/-11130.1221), At(0.163913444/-0.0703853071/0.983960509)
    Startup Options:-game:testmod.ini -zreparse -znomusic -znosound -zlog:5,s
    =============================================== CALLSTACK : ==============================================================
    
    0023:00792568 (0x00001755 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+3080 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1433
    0023:00792504 (0x00001969 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1415
    0023:00792504 (0x00001F5E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00002066 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00002092 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B038 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x00002066 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00002092 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B038 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x00002092 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B038 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x0001B038 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x0000403B 0x0ADA2C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792504 (0x00010DA3 0x0DBC5BFC 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00792CBF (0x00400000 0x01403EE2 0x0135FEC4 0x00312000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551
    0023:00425E6E (0x00000000 0x00503270 0x0000002C 0x041EACD7) Gothic2.exe, CGameManager::Run()+1598 byte(s), P:\dev\g2addon\release\Gothic\_bert\oGameManager.cpp, line 767+47 byte(s)
    0023:0082933B (0x00000000 0x00000000 0x00000000 0x00000000) Gothic2.exe, SetFileAttributesA()+284535 byte(s)
    ZSpy:
    Code:
    [i] [....2302...]
    [f] 08:38 Fault: 0 Q:             [UNKNOWN]                                                      +-1601496663 bytes
    [f] 08:38 Fault: 0 Q:             _FF_HOOK()                                                     +   32 bytes
    [f] 08:38 Fault: 0 Q:             MEM_CALLBYID(9906)                                             +  224 bytes
    [f] 08:38 Fault: 0 Q:             _HOOK(529888424, 257826628, 0, 20315296, 20315164, 0, 8635020, 257826628, 542064968) +  498 bytes
    [f] 08:38 Fault: 0 Q:             [UNKNOWN]                                                      +-1601497909 bytes
    [f] 08:38 Fault: 0 Q:     [end of stacktrace]
    [w] 08:38 Warn:  0 Q:     MEM_PtrToInst: ptr is NULL. Use MEM_NullToInst if that's what you want.
    [i] 08:38 Info:  2 U:    PAR: Adressing an empty Instance : ZCOBJECT.OBJECTNAME .... <zParser_Symbol.cpp,#365>
    [f] 08:38 Fault: 0 Q:     [start of stacktrace]
    [f] 08:38 Fault: 0 Q:             MEMINT_HANDLEERROR(3, 'MEM_ReadStatArr: Offset < 0!')          +   62 bytes
    [f] 08:38 Fault: 0 Q:             MEM_ERROR('MEM_ReadStatArr: Offset < 0!')                      +   21 bytes
    [f] 08:38 Fault: 0 Q:             MEMINT_READSTATARR(-1)                                         +   32 bytes
    [f] 08:38 Fault: 0 Q:             BUFFLIST_REMOVE(31)                                            +  143 bytes
    [f] 08:38 Fault: 0 Q:             BUFF_REMOVE(31)                                                +   93 bytes
    [f] 08:38 Fault: 0 Q:             MEM_CALLBYID(9906)                                             +  224 bytes
    [f] 08:38 Fault: 0 Q:             MEM_CALL(BUFF_REMOVE)                                          +   21 bytes
    [f] 08:38 Fault: 0 Q:             _BUFF_DISPATCHER(31)                                           +  106 bytes
    [f] 08:38 Fault: 0 Q:             FRAMEFUNCTIONS(32)                                             +  104 bytes
    [f] 08:38 Fault: 0 Q:             FOREACHHNDL(9141, FRAMEFUNCTIONS)                              +  263 bytes
    [f] 08:38 Fault: 0 Q:             [UNKNOWN]                                                      +-1601496663 bytes
    [f] 08:38 Fault: 0 Q:             _FF_HOOK()                                                     +   32 bytes
    [f] 08:38 Fault: 0 Q:             MEM_CALLBYID(9906)                                             +  224 bytes
    [f] 08:38 Fault: 0 Q:             _HOOK(529888424, 257826628, 0, 20315296, 20315164, 0, 8635020, 257826628, 542064968) +  498 bytes
    [f] 08:38 Fault: 0 Q:             [UNKNOWN]                                                      +-1601497909 bytes
    [f] 08:38 Fault: 0 Q:     [end of stacktrace]
    [f] 08:38 Fault: 0 Q:     MEM_ReadStatArr: Offset < 0!
    [i] 08:38 Info:  5 X:     EmergencyExit: Releasing all DirectX-Objects ... .... <zRndD3D_Render.cpp,#283>
    [i] 08:38 Info:  5 X:     EmergencyExit: D3DXUninitialize done .... <zRndD3D_Render.cpp,#301>
    [w] 08:38 Warn:  0 X:     [RND3D-Destructor]: Can't uninitialize D3DX Utility Library ! Error: D3DXERR_D3DXNOTSTARTEDYET .... <zRndD3D.h,#127>
    [i] 08:38 Info:  5 X:     [RND3D-Destructor]: D3DXUninitialize done .... <zRndD3D_Render.cpp,#309>
    [w] 08:38 Warn:  0 ==    ===================================== UNHANDLED EXCEPTION OCCURED ====================================================== .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 ==    ============================================ CRASH INFOS: ============================================================== .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 Go    thic II - 2.6 (fix), Parser Version: 50 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 Us    er:  Flo,  CPUType: 586,  Mem: 2048 MB total, 2048 MB free .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 Ca    mera: Pos(25961.2969/50.4958916/-12104.6045), At(-0.817649484/-0.29560551/-0.494031042) .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 St    artup Options: .... <zWin32.cpp,#2976>
    [w] 08:38 Warn:  0 -g    ame:testmod.ini -zreparse -znomusic -znosound -zlog:5,s
    
     .... <zWin32.cpp,#2977>
    [w] 08:38 Warn:  0 ==    ============================================= CALLSTACK : ============================================================== .... <zError.cpp,#474>
    [w] 08:38 Warn:  0      .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792568 (0x00001755 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+3080 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1433 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00001969 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1415 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00001F5E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00002066 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00002092 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B038 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00002066 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00002092 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B038 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00002092 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B038 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x0001B038 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x0001B06E 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x0001D412 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x0000403B 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x000041BC 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00011D31 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00011D2C 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00000EEF 0x00AB4108 0x00000000 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x0000403B 0x0AB72C08 0x00AB4118 0x00AB40C0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792504 (0x00010DA3 0x0F5E1F44 0x00000000 0x0135FCA0) Gothic2.exe, zCParser::DoStack()+2980 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 14150023:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00792CBF (0x00400000 0x01473EE2 0x0135FEC4 0x00245000) Gothic2.exe, zCParser::CallFunc()+719 byte(s), P:\dev\g2addon\release\ZenGin\_ulf\zParser.cpp, line 1551 .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:00425E6E (0x00000000 0x00503270 0x0000002C 0x041E02F5) Gothic2.exe, CGameManager::Run()+1598 byte(s), P:\dev\g2addon\release\Gothic\_bert\oGameManager.cpp, line 767+47 byte(s) .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 00    23:0082933B (0x00000000 0x00000000 0x00000000 0x00000000) Gothic2.exe, SetFileAttributesA()+284535 byte(s) .... <zError.cpp,#474>
    [w] 08:38 Warn:  0 ==    ===================================== UNHANDLED EXCEPTION OCCURED ====================================================== .... <zError.cpp,#474>
    [w] 17:28 Warn:  0 B:     GMAN: gameSession is existing. Call CGameManager::Done() before! .... <oGameManager.cpp,#375>
    Kann mir jemand auf die Sprünge helfen, was ich falsch mache?
    Geändert von Fisk2033 (30.09.2018 um 00:54 Uhr)

  13. Beiträge anzeigen #153 Zitieren
    Knight
    Registriert seit
    Aug 2009
    Ort
    Hessen
    Beiträge
    1.484
     
    Cryp18Struct ist offline
    Es kann halt nur eine Funktion beim hero für Schadenswahrnehmung angemeldet sein. Euer skript so umzuschreiben das sowohl euer Giftsystem als auch der kram für die bloodsplats in der gleichen Funktion behandelt wird ist schon richtig.

  14. Beiträge anzeigen #154 Zitieren
    Serima Avatar von Fisk2033
    Registriert seit
    Dec 2010
    Ort
    Dresden
    Beiträge
    5.802
     
    Fisk2033 ist offline
    Zitat Zitat von Cryp18Struct Beitrag anzeigen
    Es kann halt nur eine Funktion beim hero für Schadenswahrnehmung angemeldet sein. Euer skript so umzuschreiben das sowohl euer Giftsystem als auch der kram für die bloodsplats in der gleichen Funktion behandelt wird ist schon richtig.
    Das dachte ich mir ja auch schon, ich prüfe es heute Abend nochmal...Mit meiner alten Installation und dem alten Giftsystem hat es auf jeden Fall zusammen funktioniert (Blut + Gift-Effekte)

  15. Beiträge anzeigen #155 Zitieren
    Dea
    Registriert seit
    Jul 2007
    Beiträge
    10.446
     
    Lehona ist offline
    Ich habe gerade einen miesen Bug gefunden, der vielleicht für die LoA-Abstürze verantwortlich sein könnte. Voraussetzung dafür ist, dass eine von PermMem verwaltete HashTable erzeugt wurde (d.h. HT_Create oder HT_CreateSized). Die Funktion HT_Array_Delete nimmt als Parameter einen int entgegen, die Dekonstruktoren von PermMem bekommen aber das konkrete Objekt als Instanz (im Nachhinein vielleicht keine so kluge Entscheidung). Für einen Fix muss man in der Hashtable.d (nicht _Hashtable.d!) die Funktion HT_Array_Delete (37-39) ersetzen:

    Code:
    func void HT_Array_delete(var HT_Array ht) {
    	_HT_Destroy(_@(ht));
    };


    Das wäre auf jedenfall etwas, das nur in ungewöhnlichen Konstellationen direkt zu einem Crash führt, aber definitiv den Daedalus-Stack korrumpiert. Es könnte sich lohnen, das zu überprüfen.

  16. Beiträge anzeigen #156 Zitieren
    Knight Commander Avatar von Neconspictor
    Registriert seit
    Jan 2009
    Beiträge
    2.749
     
    Neconspictor ist offline
    Zitat Zitat von Lehona Beitrag anzeigen
    Ich habe gerade einen miesen Bug gefunden, der vielleicht für die LoA-Abstürze verantwortlich sein könnte. Voraussetzung dafür ist, dass eine von PermMem verwaltete HashTable erzeugt wurde (d.h. HT_Create oder HT_CreateSized). Die Funktion HT_Array_Delete nimmt als Parameter einen int entgegen, die Dekonstruktoren von PermMem bekommen aber das konkrete Objekt als Instanz (im Nachhinein vielleicht keine so kluge Entscheidung). Für einen Fix muss man in der Hashtable.d (nicht _Hashtable.d!) die Funktion HT_Array_Delete (37-39) ersetzen:

    Code:
    func void HT_Array_delete(var HT_Array ht) {
    	_HT_Destroy(_@(ht));
    };


    Das wäre auf jedenfall etwas, das nur in ungewöhnlichen Konstellationen direkt zu einem Crash führt, aber definitiv den Daedalus-Stack korrumpiert. Es könnte sich lohnen, das zu überprüfen.
    In LoA verwenden wir bis jetzt keine has tables.
    Aber danke, dass du uns darauf hinweist

  17. Beiträge anzeigen #157 Zitieren
    Ehrengarde Avatar von mud-freak
    Registriert seit
    Dec 2005
    Beiträge
    2.199
     
    mud-freak ist offline
    Zitat Zitat von Fisk2033 Beitrag anzeigen
    Das dachte ich mir ja auch schon, ich prüfe es heute Abend nochmal...Mit meiner alten Installation und dem alten Giftsystem hat es auf jeden Fall zusammen funktioniert (Blut + Gift-Effekte)
    Das kann daran liegen, dass in den älteren LeGo Versionen die Schadenswahrnehmung der Bloodsplats für PC_Hero angemeldet wurde und dein Gift über hero. So konnten beide gleichzeitig existieren. Die Anmeldung für PC_Hero wurde später in hero geändert, weil PC_Hero nach Weltenwechsel leer ist.

  18. Beiträge anzeigen #158 Zitieren
    Knight
    Registriert seit
    Aug 2009
    Ort
    Hessen
    Beiträge
    1.484
     
    Cryp18Struct ist offline
    Kannst du da kurz erklären wie das möglich ist?
    Ich dachte Wahrnehmungen landen in der percList eines NPC Objektes.
    Ob man jetzt für PC_HERO oder hero eine Wahrnehmung anmeldet bleibt der engine doch eigentlich nichts anderes übrig als bei dem einen NPC Objekt die percList zu ändern?
    Wo wird das denn gespeichert wenn für hero und PC_HERO unterschiedliche Funktionen angegeben sind, aber nur ein Objekt existiert?

  19. Beiträge anzeigen #159 Zitieren
    Ehrengarde Avatar von mud-freak
    Registriert seit
    Dec 2005
    Beiträge
    2.199
     
    mud-freak ist offline
    Zitat Zitat von Cryp18Struct Beitrag anzeigen
    Kannst du da kurz erklären wie das möglich ist?
    Ich dachte Wahrnehmungen landen in der percList eines NPC Objektes.
    Ob man jetzt für PC_HERO oder hero eine Wahrnehmung anmeldet bleibt der engine doch eigentlich nichts anderes übrig als bei dem einen NPC Objekt die percList zu ändern?
    Wo wird das denn gespeichert wenn für hero und PC_HERO unterschiedliche Funktionen angegeben sind, aber nur ein Objekt existiert?
    Gute Fragen. Das war nur so eine Vermutung. Ich habe das nicht nachgeschaut/-geprüft. Mit den Wahrnehmungen habe ich mich noch nie groß auseinander gesetzt. Es kann gut sein, dass ich mich da irre. Das erschien mir auf den ersten Blick nur plausibel.

  20. Beiträge anzeigen #160 Zitieren
    Serima Avatar von Fisk2033
    Registriert seit
    Dec 2010
    Ort
    Dresden
    Beiträge
    5.802
     
    Fisk2033 ist offline
    Ich kann heute Abend ja mal ein Video aufnehmen... Wie Cryp es erklärt hat, macht es schon Sinn, aber es hat nun mal wirklich funktioniert

Seite 8 von 27 « Erste ... 4567891011121519 ... Letzte »

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
Impressum | Link Us | intern
World of Gothic © by World of Gothic Team
Gothic, Gothic 2 & Gothic 3 are © by Piranha Bytes & Egmont Interactive & JoWooD Productions AG, all rights reserved worldwide