The Witcher 3
0 of 0

File information

Last updated

Original upload

Created by

crthdr

Uploaded by

crthdr

Virus scan

Safe to use

Tags for this mod

8 comments

  1. Ferroxius
    Ferroxius
    • premium
    • 44 kudos
    I'd be curious as to the specifics of what you modified in the redswf to achieve this, if you wouldn't mind sharing
    1. crthdr
      crthdr
      • member
      • 106 kudos
      function startCrafting
      original:
      Spoiler:  
      Show
      public function startCrafting() : void
      {
      if(this.mcCraftingProgress)
      {
      if(this._canCraftItem)
      {
      this.mcCraftingProgress.gotoAndPlay("start");
      dispatchEvent(new GameEvent(GameEvent.CALL,"OnStartCrafting"));
      }
      else
      {
      this.mcCraftingProgress.gotoAndPlay("CannotCraft");
      dispatchEvent(new GameEvent(GameEvent.CALL,"OnCraftItem",[this.selectedItemTag]));
      }
      }
      }

      modded:
      Spoiler:  
      Show

      public function startCrafting() : void
      {
      if(this.mcCraftingProgress)
      {
      dispatchEvent(new GameEvent(GameEvent.CALL,"OnCraftItem",[this.selectedItemTag]));
      }
      }

      but changes should be done in P-code
    2. crthdr
      crthdr
      • member
      • 106 kudos
      btw do you know by chance why my WolvenKit (7.2.0 but earlier too) have trouble importing SWF for panel_worldmap.redswf (map gets all messed up in game)
      only for this file and only in next-gen
      have you encountered this for your SGUI mod?
    3. Ferroxius
      Ferroxius
      • premium
      • 44 kudos
      Thanks for the info

      As for the import issue, me and some other modders were having difficulties with it as well when we were making the community patch map mod. Its very delicate and changes can very easily mess with it

      In SGUI I was only changing the header fps so its not too much of an edit but something I always do as a practice is export the swf file as a .gfx (Make sure the extension in the browser is empty as well) since Noodles taught me its more stable. Not sure if you also do that but could be worth a try
  2. Unknows00
    Unknows00
    • member
    • 0 kudos
    is this mod works on next gen version (v4,0)...?
    1. crthdr
      crthdr
      • member
      • 106 kudos
      Not yet
    2. crthdr
      crthdr
      • member
      • 106 kudos
      updated
  3. TigerTrek
    TigerTrek
    • supporter
    • 1 kudos
    For those who use Sort Everything. Give Instant Craft higher priority otherwise it won't work.