This is my first mod that allows the player to wear their clothing from the simulation on the ship.
Place both files(game_lib.lua and sr3_city.lua) in the Saints Row IV Directory.
If you are using IdolNinja's Sandbox+ then download the Sandbox+ Patch.
Perhaps the mod interferes with the mission because the mission has you wearing the holiday clothes instead of your sim clothes? Maybe something in the DLC files needs to be changed to go along with this mod's files?
I don't believe I have the game_lib.lua extracted to be able to compare with the original but could you tell us what you changed to get the result of wearing clothes on the ship and maybe other modders can help you debug what's going on?
Was it:
Code:--This function should correctly apply the ship suit for any players in the player list function mission_apply_ship_suit_to_players() local player_list = player_names_get_all() local add_to_wardrobe = false --Remove all clothing before we put on the correct clothes players_naked(false) end
Perhaps the mod interferes with the mission because the mission has you wearing the holiday clothes instead of your sim clothes? Maybe something in the DLC files needs to be changed to go along with this mod's files?
-- wait until everyone is good and nekkid before we proceed
for i, player in pairs(player_list) do
while player_customization_is_finalized(player) == false do
thread_yield()
end
end
Just the Game_lib.luaDid you make additional changes to the sr3_city.lua or just the game_lib.lua?