Jump to content

Recreating the holding of a baby


arciian

Recommended Posts

So I'm attempting to make an NPC hold the baby item like your spouse does during the opening section. I have gotten them to hold the baby item, but can't figure out the arm positioning.

There doesnt seem to be an idle for it, and it doesn't seems like its a crippled arm after testing on the player. Any clue on how to do it?

Link to comment
Share on other sites

base game MQ101 quest uses this:

Keyword Property AnimFlavorHoldingBaby Auto Const

;spouse is female, set outfit and anim archetype on her
If PlayerBASE .GetSex() == 0
  SpouseREF.SetOutfit(pMQ101SpouseFemaleBabyOutfit)
  Utility.Wait(0.1)
  SpouseREF.ChangeAnimFlavor(AnimFlavorHoldingBaby)
;spouse is male, set outfit and anim archetype on him
Else
  SpouseREF.SetOutfit(MQ101SpouseMaleBabyOutfit)
  Utility.Wait(0.1)
  SpouseREF.ChangeAnimFlavor(AnimFlavorHoldingBaby)
EndIf
Edited by SKK50
Link to comment
Share on other sites

  • Recently Browsing   0 members

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