-
Posts
102 -
Joined
-
Last visited
Everything posted by NikaCola
-
Can't get 3rdPUseStimpakOnSelfOnGround to play
NikaCola replied to Pelgar's topic in Fallout 4's Creation Kit and Modders
Have you tried to play the _3rdPUseStimpakOnSelfOnGround animation on either the actor in question (or else the player character) in game via the console? In my experience that's a good way to ensure the animation is actually a valid idle in the first place. To do this just open the console, click on the actor you want to play the animation, and type playidle _3rdPUseStimpakOnSelfOnGround It's been awhile, but I think that's the right syntax. Hope that helps! -
Positive response will not trigger quest
NikaCola replied to WhiteTuxGroom's topic in Fallout 4's Creation Kit and Modders
What conditions did you place under the positive greeting? Also, SQV won't trigger anything, but instead will just show if a quest is running, the stage it's currently on, as well as any aliases that are filled (or not). -
How to get height above ground via a script
NikaCola replied to PJMail's topic in Fallout 4's Creation Kit and Modders
Ahh, I figured there was something I was missing! That does sound much more complicated than anything I did in Papyrus. :ohmy: -
How to get height above ground via a script
NikaCola replied to PJMail's topic in Fallout 4's Creation Kit and Modders
I may not be understanding what you're trying to do 100%, but if you look into how Cait's lockpicking quest/script is handled, there's papyrus logic for how high or low the lock is in comparison to her, and this decides which lock picking anim will play (the high one, or the low one where she has to crouch down). Hopefully that's helpful! -
It's a very complicated system! You need both the bird spawner and another trigger-box style activator in the CK (can't remember the name offhand, but it's got "bird" in the name) that defines where the birds can actually fly around to; if that's missing it probably explains why they can't fly anywhere. =)
-
Dialogue Topic Conditions only applying once
NikaCola replied to LtMattmoo's topic in Fallout 4's Creation Kit and Modders
I'm not 100% sure to be honest, as I haven't worked much with shared topics. Can I ask how you're testing this? Are you reloading the same save each time? It might be worth testing it without loading a save at all, which can be done by coc'ing to a cell directly from the main menu when you first start the game. -
Dialogue Topic Conditions only applying once
NikaCola replied to LtMattmoo's topic in Fallout 4's Creation Kit and Modders
From that screenshot the only thing I can think of looking at would be the "shared topic" source you're drawing from. It's possible that the game's checking for conditions from *that*, instead of this particular bit of dialogue? -
Custom Voiced Follower Trouble
NikaCola replied to Excisions's topic in Fallout 4's Creation Kit and Modders
That "NONE" in the file path should be the name of your plugin, if you've created one of your own. -
PLEASE Help me understand Quest Markers
NikaCola replied to Kit314's topic in Fallout 4's Creation Kit and Modders
For what it's worth, this is how I do most of my testing; it avoids loading a save game at all, which is a really useful variable to be able to eliminate in terms of testing/troubleshooting changes. -
What can I change when updating my mod?
NikaCola replied to SameOldBard's topic in Fallout 4's Creation Kit and Modders
This is really comprehensive and good advice, thanks for posting it! -
Honestly I always suggest people use Dropbox to backup their ESPs every time you save. This creates a version history which you can easily roll back to in the case of any weirdness happening. Doing this has saved my butt more times than I can possibly count. Seriously, use it (or some similar service) and make life easy on yourself!
-
3DS Max custom armor not appearing in-game
NikaCola replied to lb10111's topic in Fallout 4's Creation Kit and Modders
Is the chest piece equipped according to your pip-boy? -
Is it possible to remove unused dialog options
NikaCola replied to Indarello's topic in Fallout 4's Creation Kit and Modders
Bethesda always uses four dialogue options. This was my workaround for that, for the times where I didn't need that many. -
Is it possible to remove unused dialog options
NikaCola replied to Indarello's topic in Fallout 4's Creation Kit and Modders
Yes! Just add a condition that can't possibly be met to the items you don't want to appear in the dialogue wheel. I personally use "GetIsId -- _EmptyTextureSet" Wherever you put that condition, the dialogue will show up as blank and cannot be selected by the player. -
Quest Stages Companion Mod
NikaCola replied to d3dx10's topic in Fallout 4's Creation Kit and Modders
Quest stages (the numbers themselves) do not go backwards. So once stage 20 is set you won't be able to have stage 10 (or any stage less than 20) be the current stage. This is the problem you're running into. Look into using "GetStageDone" as your condition, instead of "GetStage" and that can help. I prefer to condition things like this without using stages for this very reason, but everyone does it differently! =) -
While you're in the render window, you can hit "W" to toggle through the different navmesh views, from 1. Normal 2. All (this is what you're looking for, as it will let you select any and all navmesh edges/vertices/etc. even when they're under world objects) 3. *Only* navmesh triangles As for moving vertices or edges/etc. up and down, just hold down "Z" and drag accordingly. Hope this helps! =)
-
How do the circuit breakers worK?
NikaCola replied to HuzzahBritain's topic in Fallout 4's Creation Kit and Modders
- 4 replies
-
- circuit breaker
- xmarker
-
(and 1 more)
Tagged with:
-
Radio scripting is a fairly complicated task to take on, because as you mentioned it is labor intensive when it's done correctly. There's a very good chance that no one simply has the time or interest to go about such a thing right now.
- 7 replies
-
- wip
- helpwanted
-
(and 1 more)
Tagged with:
-
Creation Kit Custom follower does not move
NikaCola replied to citronblood's topic in Fallout 4's Creation Kit and Modders
Hmm, I'm not sure that's the issue. I've made several companions in pretty much the same way (using GetScript) and it has worked every time for me. To the OP: Which sandbox package did you add to her? As in, what is the specific name. Did you use a default package, or create your own?- 5 replies
-
- creation kit
- follower
-
(and 4 more)
Tagged with:
-
Help with holotapes?
NikaCola replied to MackenzieBeyer's topic in Fallout 4's Creation Kit and Modders
Who was the actor you specified under that radio scene? If I recall correctly this needs to be set to the player if you want it to play where they can hear it. (unless you have a whole transmitter, etc. set up) -
Custom Quest Will Not Appear On PipBoy
NikaCola replied to MackenzieBeyer's topic in Fallout 4's Creation Kit and Modders
Are there any conditions on that objective? Honestly it would be easier to just post the main quest tab, stage tab, objective tab, and alias tab. And is this the only quest file you've made in this .esp so far? Are there any scripts attached to the quest? edit: I know this is frustrating but we'll get it figured out! =) There's always an identifiable reason when a quest won't start, and once you get the jist of it, this will happen much less if at all. -
Custom Quest Will Not Appear On PipBoy
NikaCola replied to MackenzieBeyer's topic in Fallout 4's Creation Kit and Modders
I still haven't seen the objective tab. I'm assuming you've got something listed under objective (1)? Also, you can uncheck "warn on alias fill failure" on your main quest tab. As far as I've ever seen it doesn't actually do anything? (someone correct me if I'm wrong!)