gorlomi Posted July 1, 2019 Share Posted July 1, 2019 Hello, is it possible to remove all clothes from the player's wardrobe with a script line? Specifically, at the end of a mission when the "mission passed" words appear, I want to delete the entire wardrobe of the player except the clothes they are currently wearing. Link to comment Share on other sites More sharing options...
OrionSR Posted July 1, 2019 Share Posted July 1, 2019 (edited) This is the section of code I've been using to add all clothing to the wardrobe (SA-PC). If you write a value of 0 then it should remove the clothing instead. for [email protected] = 0xa9734c to 0xa97442 step 1 0A8C: write_memory [email protected] size 1 value 1 virtual_protect 0 end Special outfits are managed with global variables. Again, I was adding clothing to the wardrobe, so change the values to 0 to remove. 0004: $Gimp_Suit_Available = 1 0004: $Valet_Uniform_Available = 1 0004: $Rural_Clothes_Available = 1 0004: $Croupier_Uniform_Available = 1 0004: $Cop_Uniform_Available = 1 0004: $Pimp_Suit_Available = 1 0004: $Racing_Suit_Available = 1 0004: $Medic_Uniform_Available = 1 Edited July 1, 2019 by OrionSR Link to comment Share on other sites More sharing options...