-
Posts
38 -
Joined
-
Last visited
Nexus Mods Profile
About AndyTheSaurus
Recent Profile Visitors
1065 profile views
AndyTheSaurus's Achievements
Explorer (4/14)
0
Reputation
-
Initially there seemed to be no problem. But then I found that after I fast travelled back to the Jail from The Boathoue, I could not leave the jail !!! If I attempt to walk out, the game locks up - theres plenty of memory left and the cpu's are not doing much. If I attempt to fast travel out, then for the first second or two on arrival, I can move (and so can the dog) but then it locks up again. Anyone got any ideas. Note, I do have a party of friendly npc's trying to follow me everywhere. They have been no trouble, so far....
-
Can someone tell me how a location is created???? Just creating a location entry in the editor is pretty useless. I cannot tell the location which cells are involved. I'm wanting the prescence of the player in the cells used by someone elses mod (Boston State Pen) to be visible - as a dummy location the scripting and packages can see - so that some npc's tracking the player will know that the player is in the jails area, and can go to be with him.
-
Creating an interior location
AndyTheSaurus replied to kitcat81's topic in Fallout 4's Creation Kit and Modders
In principle you are quite right, however, I don't get much response anyway. Call it desperation. -
Creating an interior location
AndyTheSaurus replied to kitcat81's topic in Fallout 4's Creation Kit and Modders
Can anyone tell me how to set up a "Dummy" location. In one mod I downloaded, it sets up a new location in Boston. In a mod I am making, I want to set up a dummy location corresponding to the Wilderness cells used so that some NPC's can then join the player when he is in the cells involved. Corrently the only way I can do it is to edit the downloaded mod to send a signal to my mod. -
Custom event WorkshopAddActor
AndyTheSaurus replied to SKKmods's topic in Fallout 4's Creation Kit and Modders
Perhaps you lot can help me. I'm trying to add some of my NPC's to the Red Rocket workstation. I dont have a clue how to do it, except that the NPC's have to carry a workshop script ( choice of 2 ). Some one passed me this in annother forum Actor Property DocHoffSharedRef Auto ;;; THIS DOES FILL WorkshopParentScript Property WorkshopParent Auto Const ;;;; THIS DOES NOT FILL function PlayerFunction() int workshopID = 10 ; RedRocketWorkshopREF WorkshopParent.AddPermanentActorToWorkshopPUBLIC(DocHoffSharedRef , workshopID ) endfunction Where do I get the workshopID from ??????????????. There is no info available about workshops except from a user level, and nothing about the settlement side. -
I came across this : In Creation Kit, edit your script so it includes in its properties: workshopparentscript Property WorkshopParent Auto Const Then add the line: WorkshopParent.AddPermanentActorToWorkshopPUBLIC(settlerRef, workshopID) where 'settlerRef' is the Object Reference of your spawned settler and 'workshopID' is the ID of the workshop you want to assign the settler to. Then compile the script and make sure the WorkshopParent property has filled properly. Unfortunately, they did not mention how to get the NPC reference. Using the Actor ID kepps the compiler (initially) happy, but does not fill. Then there's the WorkshopID
-
Thanks, but I'm not trying to spawn new NPC's, just puting up a beacon will do that - and provide a mixture of who knows what. I'm trying to link in existing npc's that I have created. Can your script be altered to do that?????? Also, I tried this anyway in a quest script and it does not compile - GetLinkedRef() is not known.
-
I wanted to add a number of my NPC's to a settlement (that does not yet exist). The NPC's all have workshop scripts and Faction workshop dialoges, but I cannot find a way to bind them into a settlement (even by selecting the master workshop station to do this). I have examined other preset settlment (agricultural) members but cannot see anything relevant in their faction settinge or packages.
-
I am trying to activate topic entries by talking to various NPC's. The standard function for this is GetTalkedToPC(). However all I ever get is Function Not Know replies. Coulsd some one tell me why this code is a total compiler failure ???/ I suspect that it has something to do with the Alias declaration. (which compiles and fills) ; Alias Property AlexDargon Auto ; points to actor reference in game ; ; theActor = AlexDargon.GetActorReference() ; FAILS ; if ( theActor != null ; ; if ( theActor.GetTalkedToPC() == 1 ) ; FAILS ; if ( Fallout3DocHoffAndFriendsQuest.GetStageDone(10) == true ) ; if ( Fallout3DocHoffAndFriendsQuest.GetStageDone(100) == false ) ; Fallout3DocHoffAndFriendsQuest.SetStage(100) ; endif ; endif ; endif ; endif