NoGutsNoCoins Posted August 14, 2017 Share Posted August 14, 2017 I'm looking to create a new follower for fallout 4 however i have no prior experience in modding so i'm currently clueless when it comes to actually doing it, so i'm looking for any advice or tips that can help me start up and create a new follower mod. Thanks :) Link to comment Share on other sites More sharing options...
JonathanOstrus Posted August 14, 2017 Share Posted August 14, 2017 https://www.youtube.com/watch?v=xKViKsNcXVY Link to comment Share on other sites More sharing options...
kesabelus Posted August 15, 2017 Share Posted August 15, 2017 I was about to link to that exact tutorial. There's also a Companion Template esp on the Nexus that has all the basic mechanics set up already. But if you want to learn how Creation Kit works I definitely recommend watching Seddon4494's tutorials. Link to comment Share on other sites More sharing options...
MissingMeshTV Posted August 15, 2017 Share Posted August 15, 2017 Definitely watch Seddon4494 videos. They are probably the best for FO4, NPC related or not. Here are two that helped me make my first NPC, especially the second one on turning an NPC you make into a merchant. Even if you don;t want to make a merchant, the info is good to understand how the merchant NPC system works. Make an NPC Make a Merchant If you find these two helpful, I suggest you download them and archive them locally. This is the third YT account the author has had them under in the past year. They disappear for a while then show up under a new account weeks later. Not what you want when you're stuck in the middle of a project, know you saw something in a video and that video is no longer available. This can be said for any video tutorial, actually. You never know when something on the Internets is going to go *poof*. Link to comment Share on other sites More sharing options...
JeloKing Posted May 7, 2019 Share Posted May 7, 2019 (edited) i tried this as well and keep getting an error. does anyone know how to fix this? i rewatched the video a couple of times and redid the steps 3 times but i keep ending with this error: Papyrus Compiler Version 2.8.0.4 for Fallout 4Copyright © ZeniMax Media. All rights reserved.Starting 1 compile threads for 1 files...Compiling "Fragments:Quests:QF_GwendolynCompanionQuest_02004C9A"...C:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(7,45): variable GwendolynCompanion is undefinedC:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(7,64): none is not a known user-defined script typeC:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(7,64): type mismatch on parameter 1 - cannot pass a void to a actorC:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(15,45): variable GwendolynCompanion is undefinedC:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(15,64): none is not a known user-defined script typeC:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(15,64): type mismatch on parameter 1 - cannot pass a void to a actorNo output generated for Fragments:Quests:QF_GwendolynCompanionQuest_02004C9A, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on Fragments:Quests:QF_GwendolynCompanionQuest_02004C9A anyone know what i am doing wrong? also i replaced the User\ stuff with ` so that is not what is wrong ;P Edited May 7, 2019 by JeloKing Link to comment Share on other sites More sharing options...
Reginald001 Posted May 7, 2019 Share Posted May 7, 2019 It means the property was not filled. When you add a property to a script, in the CK you need to either fill it manually, or 'autofill' it, if it's named correctly. Link to comment Share on other sites More sharing options...
JeloKing Posted May 8, 2019 Share Posted May 8, 2019 which property do you mean, i have these filled out (using the video and autofill) and am not sure which one i am missing. images are in my stash https://sta.sh/22aa5qjviguh Link to comment Share on other sites More sharing options...
Reginald001 Posted May 9, 2019 Share Posted May 9, 2019 which property do you mean, i have these filled out (using the video and autofill) and am not sure which one i am missing. images are in my stash https://sta.sh/22aa5qjviguh The error is quite specific. :) "Variable GwendolynCompanion is undefined" it says: type mismatch on parameter 1 - cannot pass a void to a actor. This means you are trying to either fill this Actor variable with a so called 'NONE' (empty) object or made a typo in the variables.Post your entire script, including variables. Link to comment Share on other sites More sharing options...
JeloKing Posted May 9, 2019 Share Posted May 9, 2019 well all i added aside from that was thise in the papyrus fragment bit FollowersScript.GetScript().DismissCompanion(GwendolynCompanion.GetActorReference())and the companionactorscript like shown in the video. not sure where i need to find the rest of the script or the part you need for it Link to comment Share on other sites More sharing options...
DieFeM Posted May 9, 2019 Share Posted May 9, 2019 C:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(7,45): variable GwendolynCompanion is undefinedYou need to add a property; ReferenceAlias GwendolynCompanion, and fill it. C:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(7,64): none is not a known user-defined script typeI guess, but not sure, that you need to install the source scripts, to fix this you can use the Bethesda launcher to repair the CK, when you run it after repairing it will ask if you want to install Base.zip C:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(7,64): type mismatch on parameter 1 - cannot pass a void to a actorI guess that, since GwendolynCompanion property is not defined, GetActorReference() returns void. C:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(15,45): variable GwendolynCompanion is undefined C:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(15,64): none is not a known user-defined script type C:\`\PapyrusTemp\Fragments\Quests\QF_GwendolynCompanionQuest_02004C9A.psc(15,64): type mismatch on parameter 1 - cannot pass a void to a actorSame, but at line 15 instead of line 7. Link to comment Share on other sites More sharing options...
Recommended Posts