Equiping/Removing Clothing at All Times

Is there any way that the game can be manipulated to allow for constant access (like when just walking about Steelport) to the player's wardrobe, or maybe even a way to hotkey specific outfits/ body parts (upper, lower, wrist, etc.)?
 
If someone wanted to attempt such a mod, it appears to be possible by pushing the correct UI screens from script. There happens to be a Lua script function to do just that - hud_push_screen(screen_name).

The screen name uses the document name defined in code for each screen. The shop screen names are as follows:
Code:
"store_character" -> Image as Designed
"store_clothing"  -> Planet Saints (hard coded to this particular store)
"store_crib"      -> Crib UI
"store_tattoo"    -> Rusty's Needle
"store_vehicle"   -> Rim Jobs
"store_weapon"    -> Friendly Fire

Some of the stores may not function 100% correctly (or at all) when accessed from this route, but most of the stores should work most of the way.

NOTE: many of these screens (especially Planet Saints) use a lot of UI memory and can cause the game to run out of memory and crash if opened while other custom UI is displayed. In general, the shops should only be opened during regular open world gameplay while no other shops or full screen UI is loaded. You should be able to safeguard against running out of UI memory by checking hud_is_screen_on_stack(screen_name) & store_interface_is_active().
 
This sounds like something that can be added to Sandbox+
However, I don't think this needs to be in the Adult Corner.. I'm sure everyone would like the ability to change their wardrobe at any time.
 
This sounds like something that can be added to Sandbox+
However, I don't think this needs to be in the Adult Corner.. I'm sure everyone would like the ability to change their wardrobe at any time.

Agreed. Moving to regular mod requests. (I think mini may have accidentally put it here in the adult section by mistake.)
 
Back
Top