Fallout 4 Converting ESP to ESL Flagged ESP

Fallout 4 Converting ESP to ESL Flagged ESP


4777 , nan / #Fallout #Converting #ESP #ESL #Flagged #ESP / tp fo4

This tutorial teaches you how to convert a standard ESP to an ESL flagged ESP. The advantage is that ESL flagged ESP do not count towards your plugin limit of 250.
This process can also been done the EXACT same way on Skyrim SE!
►Enjoying the Content? Please Consider◄

►Join Schaken Mods!◄
►PayPal:
►Read Jon’s Story:
►Patreon Support:
►Follow◄
►Parler◄
►Twitch
►GAB:
►Join the Discord Channel
► Mighty Nine Mods:
====================
◄ *CHAT RULES* ►
1. BE NICE
2. Treat other people the way you want to be treated.
3. Use English in chat… PLEASE… failure to do so will result in a ban.
====================
Specs:
CPU: Intel Core I5-3570K 3.4GHz Quad-Core
Motherboard: Asus Maximus V Gene Micro ATX LGA1155
Operating System: Windows 7 64bit
Memory: 16 GB Corsair Vengenace Pro
Storage: Mushkin Chronos 240GB 2.5″ SSD
GPU: 4GB GTX 070
Case: Raidmax Viper GX II (Green) ATX Mid Tower Case
PSU: CoolerMaster RXII 750w
Monitor: Asus VH238H 23.0″ 1920×1080
====================
This Live Stream may Feature Music by Keith O’ Sullivan:

Multistreaming with
====================
Bethesda Game Studios FAIR USE policy

All content, images and audio falls under FAIR USE according to this policy
Any original modding content remains the intellectual property of Jon Houlden
==================
Fallout 4 Main Menu replacer by Rameses B & used under Creative Commons License
Rameses B Youtube
==================
►►DISCLAIMER◄◄
You MAY find something said in this stream to be offensive ESPECIALLY if you are on the political Left.
Consider this your trigger warning.I do not care about your feelings.
Follow the rules CLEARLY posted above and we will get along just fine.

Nguồn: https://lienket.vn/blog/

Xem thêm các Video Game khác tại: https://lienket.vn/blog/game

Đánh giá bài viết

16 bình luận về “Fallout 4 Converting ESP to ESL Flagged ESP”

  1. I thank you and my ever growing mod list thanks you. I'm assuming the smaller the mod, the more likely this is to work… any other guidelines on what ESPs will or won't allow an ESP to be flagged as an ESL?

    Trả lời
  2. Thank you very much for this helpful video! Now I can continue my vault experiment, which is how many mods can be crammed into Fallout 4 before it crashes and burns. Take care!

    Trả lời
  3. 364 active, most of them larger than ESL size. I guess there's a limit, I crash or bu out every 10-15 min. so hard a restart is needed, 90% Fallsouls' fault, but so worth it.

    Trả lời
  4. hello a query if I want to place the esl flag to an esp and it throws me this warning: this operation will modify the formid of 530 records. Records with the following signature are affected ammo arma armo avif cell cmpo cobj ench flor furn innr kywd lscr lvli mgef misc mswp omod perk pkin refr spel stat weap …
    warning: this will break existing save games that contain these formids and any module which uses (name of you mod) .esp as master and references them
    are you sure you wish to continue?
    Anyway this in theory you can place the flag esl starting a new game? or is it more complex than I can understand? Thank you very much for your videos !!!! a funny video that does not stop teaching us thanks !!!!! take care of yourself !!

    Trả lời
  5. Is there a way to change a mod with the extention of esl, back into an esp file? to many armor mods being converted into full esl files. they load above armorsmith even, andthey are dependant on armorsmith. my game keeps crashing.

    Trả lời
  6. You tube is now not counting likes or dislikes…at least I can't see how many likes or if there are any likes or dislikes…bizarro land in youtube, thanks for the tutorial…I don't have creation club yet but working on it. This will help so much with mods!

    Trả lời
  7. When in CK you hit "Compact Active File Form ID's"
    in a written tutorial on reddit, they said to "Convert Active File to Light Master"
    Seemingly skipping the FO4Edit step.

    Any reason for the difference? What is the difference really?

    Edit: Also, are we able to do multiple .esp's at a time? or just stick with one at a time as demonstrated?

    Trả lời
  8. To anyone watching, to find which esp can be flagged as an esl you can use this script in xedit (A link to the redit post were in found it https://www.reddit.com/r/skyrimmods/comments/8rnphy/tool_to_identify_esp_files_that_could_be_flagged/ ) Tried it myself, works wonders, I have a 760 pluggin stable moddlist. But be aware that the game still has to load the mods, so you will need to have a good rig if you want to go way beyond the pluggin limit.

    {

    Find ESP plugins which can be converted to ESL

    }

    unit FindESPtoESL;

    const

    iESLMaxRecords = $800; // max possible new records in ESL

    iESLMaxFormID = $3ff; // max allowed FormID number in ESL

    procedure CheckForESL(f: IInterface);

    var

    i: Integer;

    e: IInterface;

    RecCount, RecMaxFormID, fid: Cardinal;

    begin

    // iterate over all records in plugin

    for i := 0 to Pred(RecordCount(f)) do begin

    e := RecordByIndex(f, i);

    // override doesn't affect ESL

    if not IsMaster(e) then

    Continue;

    // increase the number of new records found

    Inc(RecCount);

    // get raw FormID number

    fid := FormID(e) and $FFFFFF;

    // determine the max one

    if fid > RecMaxFormID then

    RecMaxFormID := fid;

    end;

    // too many new records, can't be ESL

    if RecCount > iESLMaxRecords then

    Exit;

    AddMessage(Name(f));

    if RecMaxFormID <= iESLMaxFormID then

    AddMessage(#9'Can be turned into ESL by adding ESL flag in TES4 header and changing extension to *.ESL')

    else

    AddMessage(#9'Can be turned into ESL by using ESL convertion in Creation Kit (requires FormID renumbering)');

    // check if plugin has ESP masters

    for i := 0 to Pred(MasterCount(f)) do

    if not GetIsESM(MasterByIndex(f, i)) then begin

    AddMessage(#9'Plugin has ESP master(s), turning into ESL will shuffle load order and hence NOT recommended!');

    Break;

    end;

    end;

    function Initialize: integer;

    var

    i: integer;

    f: IInterface;

    begin

    // iterate over loaded plugins

    for i := 0 to Pred(FileCount) do begin

    f := FileByIndex(i);

    // check non-master plugins only

    if not GetIsESM(f) and SameText(ExtractFileExt(GetFileName(f)), '.esp') then

    CheckForESL(f);

    end;

    end;

    end.

    Trả lời
  9. You ought to trim the fat from your video. I mean, it's supposed to be tutorial.
    Don't get me wrong, joking around is totally cool, but I'm used to tutorials being straight to the point.

    I shouldn't have to use the scroll bar to separate the chaff from the wheat.

    Trả lời

Viết một bình luận