psrfreddyz06 Posted January 20, 2017 Share Posted January 20, 2017 So i have learned on how to make a weapon rack thanks to the underground hideout mod and user Mktavish (along with a few others who replied in my thread) What i want to learn now is how i can make an armorstand, I thought that i could use the same technique as i did with the weaporack, but since there are no static models of the armors (when it is equiped) I'm not really sure where to begin, any tips for me? Cheers! Link to comment Share on other sites More sharing options...
Mktavish Posted January 20, 2017 Share Posted January 20, 2017 Thats what the mannequins are for. But I'm sure somebody knows better than me if there is a special technique beyond just dropping one in the render window. Link to comment Share on other sites More sharing options...
Jokerine Posted January 20, 2017 Share Posted January 20, 2017 Hm... I know how to make the armors static, so I could probably throw together a tutorial for this and attach a mesh for a simple "mannequin" (like this) so the armors would fit. It would have to be something like that as an armor stand, because the vanilla mannequins are not posable, sadly. Link to comment Share on other sites More sharing options...
psrfreddyz06 Posted January 21, 2017 Author Share Posted January 21, 2017 (edited) Hm... I know how to make the armors static, so I could probably throw together a tutorial for this and attach a mesh for a simple "mannequin" (like this) so the armors would fit. It would have to be something like that as an armor stand, because the vanilla mannequins are not posable, sadly.That would be very nice of you, thank you, Fyi the armor i wanna make the stand for is the advanced recon armor if that helps. But it doesn't really matter since i want to learn how to make it myself (so that i can do it with any armor in the future) Cheers! Edited January 21, 2017 by psrfreddyz06 Link to comment Share on other sites More sharing options...
Ladez Posted January 21, 2017 Share Posted January 21, 2017 You can create an NPC that uses a custom race with an all-white texture and freeze it by stopping its AI processing. Then you can simply equip gear on it as you would any NPC. I've seen this done in player house mods before. Link to comment Share on other sites More sharing options...
psrfreddyz06 Posted January 21, 2017 Author Share Posted January 21, 2017 You can create an NPC that uses a custom race with an all-white texture and freeze it by stopping its AI processing. Then you can simply equip gear on it as you would any NPC. I've seen this done in player house mods before.Now that you said it i remember that I've seen this also. Do you have any idea how the script would look like? I don't wanna be able to equip the "NPC" with any armor, only the armor i choose. Like "Press E to remove armor from NPC and equip" "Press E to remove armor from self and quip on NPC" Cheers! Link to comment Share on other sites More sharing options...
Mktavish Posted January 22, 2017 Share Posted January 22, 2017 (edited) I think pressing E would bring up the barter window ... which shows your inventory and theirs ... then you just transfer the items to their inventory. (guess you have to be sneaking / pickpocket) Err I guess you just give them a dialogue topic that has a result script "OpenTeammateContainer 1" http://geck.bethsoft.com/index.php?title=OpenTeammateContainer For some reason , I thought the mannequins would work like that also. Edited January 22, 2017 by Mktavish Link to comment Share on other sites More sharing options...
psrfreddyz06 Posted January 23, 2017 Author Share Posted January 23, 2017 (edited) I think pressing E would bring up the barter window ... which shows your inventory and theirs ... then you just transfer the items to their inventory. (guess you have to be sneaking / pickpocket) Err I guess you just give them a dialogue topic that has a result script "OpenTeammateContainer 1" http://geck.bethsoft.com/index.php?title=OpenTeammateContainer For some reason , I thought the mannequins would work like that also.Nice thanks, gonna try with that command and see what happens! Update: That worked perfectly. I now have an NPC using that script and the NPC has a white texture so that is looks like a "statue" The only problem i have now is how do i make the NPC to stop moving/talking? I want him to be "disabled".. Cheers! Edited January 23, 2017 by psrfreddyz06 Link to comment Share on other sites More sharing options...
Ladez Posted January 23, 2017 Share Posted January 23, 2017 In the NPC script have an OnLoad block like this: begin OnLoad SetActorsAI 0 end This prevents the actor from animating and processing packages. In the NPC form, set the following flags in the Animation tab:Not PushableNo Rotating to Head-trackIn the Blood tab, remove the following flags:Blood SprayBlood DecalYou may also want to set these generic flags:No low level processingEssentialNo KnockdownsNo VATS MeleeAlso, in the NPC script, you may want to make sure that it never takes health damage: if (GetAV Health < GetBaseAV Health) ResetHealth endif Also give it some big value for base health, just to be extra safe. Lastly, I would implement some fail-safe that teleports the NPC back if something glitches and it ends up in a wrong position. Place an XMarkerHeading where you want the NPC, link-ref them together and do something like this: if (rLinkedRef) if (GetDistance rLinkedRef > 32) MoveTo rLinkedRef endif else set rLinkedRef to GetLinkedRef endif Link to comment Share on other sites More sharing options...
psrfreddyz06 Posted January 23, 2017 Author Share Posted January 23, 2017 (edited) Going to try this now!! Thanks for the detailed explination! Update: This is my script: It works find except for the "failsafe part". Could you help me? Still a beginner with scripting. Cheers! Edited January 23, 2017 by psrfreddyz06 Link to comment Share on other sites More sharing options...
Recommended Posts