-
Similar Content
-
By TrippyPanda
Whenever I hit Compile, I only get an error saying:
papyrusAssembler.exe - Application Error
The application was unable to start correctly (0xc000007b). Click OK to close the application
And then a second error box:
Papyrus Compiler Version 2.8.0.4 for Fallout 4
Copyright (C) ZeniMax Media. All rights reserved.
Starting 1 compile threads for 1 files...
Compiling "Fragments:Quests:QF_BoS302_000B9F9D"...
No output generated for Fragments:Quests:QF_BoS302_000B9F9D, compilation failed.
Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on Fragments:Quests:QF_BoS302_000B9F9D
Ive been stuck with these errors for days now. I have tried everything I could find but I cannot find the solution. Please help.
-
By Ricemachine88
So I found this Step Skyrim Special Edition guide after installing a bunch of mods and following youtube and other websites guides and advice, needless to say there are some things in the STEP guide that wasnt covered by other sources. Now Im encountering an issue that is explicitly covered in the guide, but doesnt have a remedy for the situation. The situation at hand occured when i cleaned the master files of the game using SSEEdit (xedit), I havent launched the game with mods yet besides the initial vanilla steam game to get the base reference files. After I cleaned the masters the overwrite button in mod list window of MO2 appeared with the folder "SSEEdit Backups" shown. In the Step guide it refers to this issue saying- "Overwrite at the bottom of the MO mod list (left) pane id previous instructions were NOT followed!)"... My question is, since I have this problem already, how do i fix it? (See Pics for ref)
-
By Daemonjax
I need to use the "Make New Record From Overrides" script in SSEdit to fix a mod with large ref problems... however it fails on line 21:
[00:00] Start: Applying script "Make new records from overrides"
Override to new record: [REFR:04036C19] (places _SNSnowDriftL02 "Snow" [ACTI:0A001826] in GRUP Cell Temporary Children of [CELL:0400EDC5] (in DLC2SolstheimWorld "Solstheim" [WRLD:04000800] at 16,16))
Updating ref: REFR \ NAME - Base \ _SNSnowDriftL02 "Snow" [ACTI:0A001826]
[00:00] Exception in unit line -1: Error in unit 'OverridesToNewRecords' on line 21 : Type mismatch
[00:00] Error during Applying script "Make new records from overrides": Error in unit 'OverridesToNewRecords' on line 21 : Type mismatch
Here's the script code:
{ Convert overrides into new records, all references are updated with reindexed FormIDs too so they must already exist in a plugin. For example if you have an override of worldspace record [WRLD:00001234] which references water [WATR:00005678], after applying script it would become [WRLD:01001234] referencing [WATR:01005678] (assuming plugin is loaded at index 01). } unit OverridesToNewRecords; procedure UpdateReferences(e: IInterface; ModLoadOrder: integer); var ref: IInterface; i: integer; begin ref := LinksTo(e); if Assigned(ref) then if GetLoadOrder(GetFile(ref)) <> ModLoadOrder then begin i := GetLoadOrderFormID(ref); i := (i and $FFFFFF) or (ModLoadOrder shl 24); AddMessage('Updating ref: ' + Path(e) + ' \ ' + GetEditValue(e)); SetEditValue(e, IntToHex(i, 8)); end; if CanContainFormIDs(e) then for i := 0 to ElementCount(e) - 1 do UpdateReferences(ElementByIndex(e, i), ModLoadOrder); end; function Process(e: IInterface): integer; var i, fid: integer; begin // not an override if IsMaster(e) then Exit; AddMessage('Override to new record: ' + Name(e)); i := GetLoadOrder(GetFile(e)); UpdateReferences(e, i); fid := GetLoadOrderFormID(e); fid := (fid and $FFFFFF) or (i shl 24); SetLoadOrderFormID(e, fid); end; end.
Line 21 is SetEditValue(e, IntToHex(i, 8));
I could really use some help making this script work -- it comes with SSEdit, I didn't write it.
-
-
Recently Browsing 0 members
No registered users viewing this page.