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