Easy way to unload individual mods (1 Viewer)

The Hacker Known As Snow

Admin
Content Creator
Joined
Aug 30, 2012
I don't know what makes these mods different but I've noticed three types of mods.
  1. Mods that show up in there clothing slot and can be removed
  2. Mods that don't show up but can still be removed by pressing the back button
  3. Mods that don't show up and can't be removed
So far I've been removing type 3 mods by pressing the back arrow button next to the load SWF button on the modding page. But that removes everything.

Is there an easy way to remove type 3 mods individually?
 

sby

Content Creator
Coder
Joined
Sep 11, 2012
i can't think of an easy way to remove them, but it should be possible to if things are tracked.

some thoughts if i look into this further, maybe a combination of using autohuereg and some stuff from how that reset button works:
Code:
public function clearSwfModClicked(event:MouseEvent) : void
        {
            this.clearInstancedMods();
            g.soundControl.resetAudioMods();
            return;
        }// end function

        public function clearInstancedMods() : void
        {
            var _loc_2:* = null;
            var _loc_3:* = undefined;
            var _loc_1:* = new Dictionary();
            for each (_loc_2 in this.instancedModElements)
            {
                
                if (g.inGameMenu.onlyLoadingCostume)
                {
                    if (_loc_2.modType.match(/costume""costume/i))
                    {
                        _loc_1[this.getResetFunction(_loc_2.modType)] = true;
                        _loc_2.kill();
                    }
                    continue;
                }
                _loc_1[this.getResetFunction(_loc_2.modType)] = true;
                _loc_2.kill();
            }
            this.updateInstancedModElements();
            for (_loc_3 in _loc_1)
            {
                
                this._loc_3();
            }
            _loc_1 = null;
            this.loadedModPackages = new Array();
            return;
        }// end function
 

sby

Content Creator
Coder
Joined
Sep 11, 2012
i got vanilla mods working, now to try to get loader mods.
if you got some to test with that are of the various varieties, linking or uploading in a zip would help
 

sby

Content Creator
Coder
Joined
Sep 11, 2012
did end up throwing something together for this, probably has a ton of bugs because kinda dips into loader things with assumptions
 

Users who are viewing this thread

Top


Are you 18 or older?

This website requires you to be 18 years of age or older. Please verify your age to view the content, or click Exit to leave.