0 of 0

File information

Last updated

Original upload

Created by

Jonathan Feenstra

Uploaded by

JonathanFeenstra

Virus scan

Safe to use

Mod articles

  • How to modify dialoguemenu.swf to make dialogue unskippable

    In Skyrim Classic/Legendary Edition ("oldrim"), you can make dialogue unskippable by modifying dialoguemenu.swf directly instead of using the SKSE plugin. The only disadvantage is that you'll have to do it again every time you use a different mod for the dialogue menu UI.

    Download and install JPEXS Free Flash Decompiler (FFDec) and use it to open dialoguemenu.swf. 
    In the tag list, navigate to scripts/__Packages/<default package>/DialogueMenu. 
    Click the Edit ActionScript button at the bottom of the screen.

    Change
    function SkipText()
    {
       if(this.bAllowProgress)
       {
          gfx.io.GameDelegate.call("SkipText",);
          this.bAllowProgress = false;
       }
    }
    to
    function S...