18
Dec
2008
Sacred 2: Removing Clothes Howto
As part of a previous post, Sacred 2 Mods, I posted a modified items file for version 2.12.0 to remove basic no-clothes outfits and turn them into the game’s default underwear, or less if you have a underwear-changing mod.
For those with a different version, or who want to remove more clothes than just the birthday suits, here’s how.
First, find your “scripts\shared\itemtype.txt” file, make a backup copy of it, then open in Notepad.
Search for “/heroes” or “/default/” or something similar until you find the item you’re after (ex. “models/heroes/highelve/default/a_helve-belly-top01.GR2” for the High Elf’s top).
Once you’ve found the item, change the model name line to “models/dummy.GR2” and flags line to flags = “0”.
For example, if for the High Elf’s top, you start with this:
newItemType = {
-- standard info
renderfamily = "RENDERFAM_ARMOR",
family = "FAMILY_ARMOR",
subfamily = "SUBFAM_ARMOR_CHEST",
classification = "CLF_CHEST_ORNAMENT",
flags = "FLAG_EQUIPCUT + FLAG_BLACKBACK",
weargroup = "WEARGROUP_INVALID",
-- 3d model + animation info
model0Data = {
name = "models/heroes/highelve/default/a_helve-belly-top01.GR2",
user = "WEARGROUP_HIGHELVE",
},
-- logic bounding box
logicBox = {
minx=-6.185, miny=-6.595, minz=45.592,
maxx=6.185, maxy=2.018, maxz=61.896,
},
dangerclass = 0,
}
mgr.typeCreate(3970, newItemType);
And finish with this:
newItemType = {
-- standard info
renderfamily = "RENDERFAM_ARMOR",
family = "FAMILY_ARMOR",
subfamily = "SUBFAM_ARMOR_CHEST",
classification = "CLF_CHEST_ORNAMENT",
flags = "0",
weargroup = "WEARGROUP_INVALID",
-- 3d model + animation info
model0Data = {
name = "models/dummy.GR2",
user = "WEARGROUP_HIGHELVE",
},
-- logic bounding box
logicBox = {
minx=-6.185, miny=-6.595, minz=45.592,
maxx=6.185, maxy=2.018, maxz=61.896,
},
dangerclass = 0,
}
mgr.typeCreate(3970, newItemType);
Repeat for every item of clothing you want to remove.
Here’s some pictures of what the three PC women look like normally, in their underwear, and with my topfree mod:
Dryad
Seraphim
High Elf
The underwear thing can be done for any class and at least some NPCs, but I figure these are going to be the ones in which people are the most interested. 😉
Somyunguy on January 23rd, 2009 at 4:35 AM
Any pictures of your mods, i have no interest in modifying the game without any visual indication of what i modifying it for.
Maeyanie on January 23rd, 2009 at 5:38 AM
If you have no interest, then by all means, don't. Doesn't bother me. :p
I'll work on getting a few pictures up, though. Unfortunately after reinstalling Windows I seem to have hit the DRM activation limit (grrr, activation limits) so it won't be immediate.
Somyunguy on January 24th, 2009 at 2:55 AM
I didn't say i had no interest in modifying the game period 😛
Thank you for deciding to put up pictures though :D... got to love that DRM :/
Maeyanie on January 24th, 2009 at 9:27 AM
Ok, preview pics are posted... not sure why the lighting changed from the first shot, the others ended up pretty washed out. Looks better in game. But should at least give an idea.
Somyunguy on January 25th, 2009 at 11:37 AM
Thank you, now i think its worth it 😉
holla on August 10th, 2010 at 7:31 PM
er... what is about the seraphim...??
Dan on September 12th, 2010 at 1:13 PM
Hello.
Applying the underwear mod lead to some pretty bad things to happen to the seraphim skin. After changing the hairstyle 2 times, the body geos all over the place. I am using 2.65.1 as of now. Is there anyway you could e-mail me the original itemtype.txt? I accidently didn't make a copy and would like to play the Seraphim normally.
Thank you.
Maeyanie on September 17th, 2010 at 1:10 AM
I haven't played Sacred 2 in well over a year, so it's entirely possible things have changed and this no longer works. Back then, 2.12.0 was the latest.
Unfortunately, I also don't have it installed any more (and even if I did, it'd be an ancient version) so can't help with any original files.
Sorry to hear it didn't work out though. 🙁
Wolf470 on September 13th, 2014 at 5:08 AM
I have installed this on Sacred 2 Gold which is 2.65.1 or so. I have seen no problems with any of the actors. Thank you for explaining how to do this with no problems.