Wolfdie Posted June 10, 2016 Posted June 10, 2016 I made a follower out of a creature in Creation Kit (trying to learn it more) and its exactly where I placed him and everything. But when I try to talk/activate there is nothing there as in when I point at it there is no (E)Talk or no dialogue. Any ideas where I goofed up? Posted this on nexus and didn't get a reply hoping I can have some luck here
Guest Posted June 10, 2016 Posted June 10, 2016 If you used a custom race, then inside the race edit window just check the possibility to have dialogues. If the race is vanilla, then do the same for the vanilla race.
Wolfdie Posted June 10, 2016 Author Posted June 10, 2016 Thank you very much CPU that got the (E)Talk to come up when looking at him. Now my new issue when I talk to him nothing happens or the scene doesn't work Dunno if these scrips aren't working or what Recruit - FollowersScript.GetScript().SetCompanion(Jimmy.GetActorReference()) Dismiss - FollowersScript.GetScript().DismissCompanion(Jimmy.GetActorReference())
Guest Posted June 10, 2016 Posted June 10, 2016 Probably a missing property. I think "Jimmy" is a ReferenceAlias. While the function SetCompanion() requires an actor. Try to add a property in your script like: Actor property JimmyRef Auto Use it in the function ... SetCompanion(JimmyRef) And remember to fill the property with the actor.
Wolfdie Posted June 10, 2016 Author Posted June 10, 2016 Sorry I am a little ignorant with the CK right now first major time learning it. His full name is JimmyTheCrab I made him from a mirelurk spawn and it uses the radroach race heres how the scrips really look Under Papyrus Fragment: Index: 10 FollowersScript.GetScript().SetCompanion(JimmyTheCrab.GetActorReference()) Index: 20 FollowersScript.GetScript().DismissCompanion(JimmyTheCrab.GetActorReference())
Guest Posted June 10, 2016 Posted June 10, 2016 These script fragments are fragments of what? A Topic Info? A package? An Actor? Do they compile? Probably not. Without better understanding where this code is is hard to give real help, except the usual recommendations: Define and Set the Properties of the script.
Guest Posted June 10, 2016 Posted June 10, 2016 So probably they are a quest fragment. OK, go to the last tab of the quest, you will find the script. Be sure inside the script the properties are defined and set with the values (the Actor or the ReferenceAlias)
Wolfdie Posted June 10, 2016 Author Posted June 10, 2016 Looking at it and its blank. Attempting to figure out what values I need to put in it
Wolfdie Posted June 10, 2016 Author Posted June 10, 2016 If its any help this is the video I followed to make it
Recommended Posts
Archived
This topic is now archived and is closed to further replies.