tonyhammet Posted January 7, 2013 Share Posted January 7, 2013 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 & eyesHeadPart 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 2GetNthHeadPart - ActorBase HeadPart PlayerEyes = Player.GetNthHeadPart(3) ; PlayerEyes = MaleEyesHumanLightBlue int hp = Player.GetNumHeadParts()Trace("Player HeadParts Num : "+hp)int i = 0WHILE i < hpTrace("Player HeadPart("+i+") : "+Player.GetNthHeadPart(i).GetName())i += 1EndWHILE ; 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 More sharing options...
tonyhammet Posted January 7, 2013 Author Share Posted January 7, 2013 Soy español, por si algun español sabe algo, que contacte conmigo! Link to comment Share on other sites More sharing options...
Recommended Posts