• Announcements

    • Ashal

      SITE MOVED - IN READ ONLY MODE   12/08/2015

      Please use http://www.loverslab.com moving forward. Site has been restored to a previous version, and this one placed into a read-only mode. This is available for a limited time so users may reference/copy content that has been lost in the transition. This will no longer be accessible by December 22nd, 2015.

Archived

This topic is now archived and is closed to further replies.

Disc78

Vampire Race

So i was making a very pale, blind eyed female using Desert Succubus mod and it hit me.

Why isn't there a Vampire race, or is there...... lol EDIT: Clearly there are many :)

The Vampire Race would start with both the Cannibalism Perks, and maybe even another that lets you devour all monsters. These would be renamed to Vampirism I, II and III or just one perk for all.

Would also like to have a race perk in place of Sandman, Vampire Bite or something, works almost the same as sandman except with the devour animation, or a new bite animation would be better.

I would like to turn all purified water into Blood, or make Blood bottles seperate, this would act the same as water,

If possible i would like blood to replace food. Meaning you no longer get dehydration only Blood Hunger or something to that effect, which would replace Hunger and Thirst, or combine the two if you like.

Eating ordinary vegetarian food has no effect on you, only raw meats (Not cooked meats) or people or monsters. But blood is where it's at, it gives you the most.

Also i would like to have new clothes added for this race, more vampiric clothes, maybe eventually some cool new weapons swords etc.. but i thing there is plenty of these already available.

But there is one problem and it's a pretty big one.....I have never modded but i want to try.

So how hard is it to make a new race with face presets, new eye designs, maybe makeup etc. New perks for Vampires etc...

And encorporate all of the above, obviously not immediately.

Eventually it'd be cool to add specific quests but i think that's taking on too much.

If anyone has any suggestions please let me know. Or if any modders are willing to show/help me with this let me know.

0

Share this post


Link to post

Ok so i can see that the perks are straight forward, however i don't seem to have the .dds images to edit in Photoshop to make the desired image on the pipboy.

Why do i have no .dds in my interface/pipboymages folder other than the condom one used in another mod?

0

Share this post


Link to post

http://fallout3nexus.com/downloads/file.php?id=1565


/>http://fallout3nexus.com/downloads/file.php?id=12619


/>http://fallout3nexus.com/downloads/file.php?id=16645


/>http://newvegasnexus.com/downloads/file.php?id=35029


/>http://newvegasnexus.com/downloads/file.php?id=36321
/>http://newvegasnexus.com/downloads/file.php?id=39385


/>http://newvegasnexus.com/downloads/file.php?id=41218

0

Share this post


Link to post

/>http://fallout3nexus.com/downloads/file.php?id=1565


/>http://fallout3nexus.com/downloads/file.php?id=12619


/>http://fallout3nexus.com/downloads/file.php?id=16645


/>http://newvegasnexus.com/downloads/file.php?id=35029


/>http://newvegasnexus.com/downloads/file.php?id=36321
/>http://newvegasnexus.com/downloads/file.php?id=39385


/>http://newvegasnexus.com/downloads/file.php?id=41218

Thanks for showing me these. Still going to continue with mine seen as these are either dead in the water or from Fallout 3.

0

Share this post


Link to post

Could a moderator please delete this thread. I quickly found out how much i suck at modding :)

0

Share this post


Link to post

Could a moderator please delete this thread. I quickly found out how much i suck at modding :)

Don't give in so easily, but a word of warning before you get serious make a backup copy of your NewVegas & Data folders somewhere so you can save yourself a 7 hour download when it all goes wrong but then find it's still broken and one mods texture file is the culprit :)

0

Share this post


Link to post

Don't give in so easily' date=' but a word of warning before you get serious make a backup copy of your NewVegas & Data folders somewhere so you can save yourself a 7 hour download when it all goes wrong but then find it's still broken and one mods texture file is the culprit :)

[/quote']

HEHE. thanks for the vote of confidence. Sounds like you had a pretty harsh experience. Sorry to hear that.

I really do suck at modding though, i got as far as Perks and All food only gives 1hp and stat effects removed. All raw meat gives HP, Thirst and Stavation restoration.

After that tried to make the race, got the face looking great in geck, looks messed up in the game, also messes up all other preset races, asian, hispanic etc... Then i couldn't work out how to make it so the race starts with some slighty improved stats.

But beyond this i think i would find it too hard to do anything beyond what has already been done in other mods. I can't even make a simple script to have daylight hurt you between hrs of 7pm and 7am.

More over wouldn't even know where to begin with making vamp cloth meshes for the race, or new eye textures.

Maybe i will plug along slowly when i have time.

0

Share this post


Link to post

I really do suck at modding though' date=' i got as far as Perks and All food only gives 1hp and stat effects removed. All raw meat gives HP, Thirst and Stavation restoration.

After that tried to make the race, got the face looking great in geck, looks messed up in the game, also messes up all other preset races, asian, hispanic etc... Then i couldn't work out how to make it so the race starts with some slighty improved stats.

But beyond this i think i would find it too hard to do anything beyond what has already been done in other mods. I can't even make a simple script to have daylight hurt you between hrs of 7pm and 7am.

More over wouldn't even know where to begin with making vamp cloth meshes for the race, or new eye textures.

Maybe i will plug along slowly when i have time.

[/quote']

This is a script I use to increase powers by Sunlight, perhaps it will give you a few clues on how use it in a reverse way.

; Sun Bonus/Penalty *****************************************************

If GameHour < 12
Set floatSunBonus to (GameHour - 5)
endif
If GameHour > 11.99
Set floatSunBonus to (20 - GameHour)
endif
if floatSunBonus > 0 && refOwner.IsRaining
Set floatSunBonus to floatSunBonus -2
endif
if floatSunBonus > 0 && refOwner.IsSnowing
Set floatSunBonus to floatSunBonus - 3
endif
if floatSunBonus > 0 && refOwner.IsInInterior
Set floatSunBonus to 0
endif
if floatSunBonus > 0 && refOwner.IsPleasant > 0
Set floatSunBonus to floatSunBonus + 2
endif
if floatSunBonus < 0
Set floatSunBonus to 0
endif

0

Share this post


Link to post

This is a script I use to increase powers by Sunlight' date=' perhaps it will give you a few clues on how use it in a reverse way.

; Sun Bonus/Penalty *****************************************************

If GameHour < 12
Set floatSunBonus to (GameHour - 5)
endif
If GameHour > 11.99
Set floatSunBonus to (20 - GameHour)
endif
if floatSunBonus > 0 && refOwner.IsRaining
Set floatSunBonus to floatSunBonus -2
endif
if floatSunBonus > 0 && refOwner.IsSnowing
Set floatSunBonus to floatSunBonus - 3
endif
if floatSunBonus > 0 && refOwner.IsInInterior
Set floatSunBonus to 0
endif
if floatSunBonus > 0 && refOwner.IsPleasant > 0
Set floatSunBonus to floatSunBonus + 2
endif
if floatSunBonus < 0
Set floatSunBonus to 0
endif

[/quote']

Thanks i will try again, i did find a script on another Vamp mod, but i got confused when trying to implement some kiind of warning to show the player they are being hurt.

But this is a great help thanks :)

0

Share this post


Link to post