Jump to content

Growing beards mod


tonyhammet

Recommended Posts

Hi everyone.

 

I would like to request a mod that make your beard grows till days pass ... I was trying with some scriptings, but... im a nooby, im not a goob script modder. for example, I thougth to change the facial hair type 1 in the day 1, then facial hair type 2 in day 2... so, when passing a month you will have the largest beard of the game. Using another mod like "skyrim barbers" you can shave, and the growing beard starts again.

 

In Papyrus wiki I saw this examples... maybe it will help :S

 

EXAMPLE 1:

 

SetNthHeadPart - ActorBase

 

Example

; gives the Player Aerin hair & eyes

HeadPart AerinHair = Aerin.GetNthHeadPart(1)

Player.SetNthHeadPart(AerinHair, 5)

Player.SetNthHeadPart(Aerin.GetNthHeadPart(4), 3)

 

; gives the Player the Ysmir's beard

if ( Player.GetNthHeadPart(6) != BeardList.GetAt(3) as HeadPart ) ; BeardList.GetAt(3) = YsmirBeard

Player.SetNthHeadPart(BeardList.GetAt(3) as HeadPart, 6)

endif

 

EXAMPLE 2

GetNthHeadPart - ActorBase

 

HeadPart PlayerEyes = Player.GetNthHeadPart(3) ; PlayerEyes = MaleEyesHumanLightBlue

 

int hp = Player.GetNumHeadParts()

Trace("Player HeadParts Num : "+hp)

int i = 0

WHILE i < hp

Trace("Player HeadPart("+i+") : "+Player.GetNthHeadPart(i).GetName())

i += 1

EndWHILE

 

; Has Player a beard ?

if ( Player.GetNthHeadPart(6) != BeardList.GetAt(0) as HeadPart ) ; BeardList.GetAt(0) = HumanBeard00NoBeard

Notification("Player has a beard !")

endif

 

 

Using it with "pumping iron" by Gopher will be a good combination for immersion.

 

thank you so much for reading, and sorry bad english. If anyone is reading this, and plan to do the mod, I will appreciate. ^^ thank you so much

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...