-
Posts
48 -
Joined
-
Last visited
Everything posted by Elec0
-
Keep an eye on this mod: http://www.nexusmods.com/fallout4/mods/479/? Assuming nobody does it first, I'll be replacing all the models of insects and bugs with other things (most probably molerats) in the near future.
-
Here's a radroach one: http://www.nexusmods.com/fallout4/mods/479/?
-
Indeed, thank you. I'd also like to point out that Imp's More Complex Needs also prevents the feed dialog from showing up.
-
You should use the Publish to Workshop function in the CK, it'll pack everything into a .bsa file for you.
-
Is the Creation Kit/Skyrim preventing us from flying?
Elec0 replied to Jopon's topic in Skyrim's Skyrim LE
The Killmove Plus mod didn't import in any animations, it only enabled ones that Beth disabled before launch for whatever reason. But I think it only has to do with that we haven't figured out all the quirks of the CK yet. Just be patient, it'll come. -
Yup. The CK will package your resources into .bsa files for you, if you just do the first step it'll make you your .bsa with all your scripts in it.
-
As palasx said, since there isn't any base whatsoever for chameleon it'd have to be coded in completely from scratch. That means that all the behaviors would have to be modified so actors could deal with it. I don't know if it's even possible without SKSE, but it wouldn't be any shade of easy. But I agree it would be awesome.
-
LE What makes character to move?
Elec0 replied to Hayk94's topic in Skyrim's Creation Kit and Modders
It should still be the walking animation that translates the actors root node. the locomotion anims used to be all animate in motion. Unless they changed that... Oh. Right. My bad. -
The .ckm and .bsl files are, I believe, just information on your mod. The actual content resides in the .esp and .bsa files generated.
-
LE What makes character to move?
Elec0 replied to Hayk94's topic in Skyrim's Creation Kit and Modders
That is handled by the engine, you can't mess with it. The animation plays and the character moves ahead at a speed defined by a variable. The animation isn't moving the character, it just looks like it. -
LE Finding PlaceAtMe's ObjectReference
Elec0 replied to Elec0's topic in Skyrim's Creation Kit and Modders
Yeah, I suppose it would, but it just helps me keep it more organized in my mind. I'm trying to place the object, then rotate it to the rotation of the previous object. But the Furniture property extends Form, which has no rotation functions. Edit: It just hit me, I actually read about this on the Wiki: ObjectReference newBox = TargetMarker.PlaceAtMe(BoxBase) That's what I need to do. Sorry I didn't see this earlier. -
I'm doing this: Furniture property activatorToPlace auto ObjectReference toPlace float xRot float yRot float zRot Event OnInit() ; Stop the item from being picked up, since that's not what we want Self.BlockActivation() EndEvent Event OnActivate(ObjectReference activator) If Game.GetPlayer().IsSneaking() == True xRot = Self.GetAngleX() yRot = Self.GetAngleY() zRot = Self.GetAngleZ() toPlace = Self.PlaceAtMe(activatorToPlace) ;Debug.Trace("Place & deactivate.") Self.PlaceAtMe(activatorToPlace) Self.Disable() Else Game.GetPlayer().AddItem(Self, 1) Self.Disable() EndIf It obviously isn't working. I'm placing a new object of the activatorToPlace, but it's a Furniture which extends Form, which has no rotation functions. I'm aware this is because it turns into an ObjectReference when you place it, but my question is how do you figure out what said ObjectReference is called?
-
Whoops, missed that. Thanks.
-
It's most likely a variable, or condition, that would need to be changed. It probably wouldn't be hard to do.
-
I can't find any documentation on looping in Papyrus on the CK wiki, which leads me to believe that looping can't happen at this point. Am I wrong?
-
[LE] Adding Items to a merchant via scripting
Elec0 replied to LittleBaron's topic in Skyrim's Creation Kit and Modders
Unfortunately merchants only get items out of a single chest, that won't work. -
I'd be interested in fiddling with this idea, and I see that Papyrus has the function needed to do it, whereas in Oblivion it was added by OBSE. The only problem is that I don't see any loop functions on the CK wiki. Does anyone know if they exist, because if not we'll have to wait for SKSE to add them.
-
I think it has something to do with the Strings files. Try validating files of Skyrim in Steam, see if it tries to redownload something.
-
[LE] Adding Items to a merchant via scripting
Elec0 replied to LittleBaron's topic in Skyrim's Creation Kit and Modders
Why not add a script to the merchant that activates when the player talks to her, then waits a second and then adds the items? That might get around the respawning of the chest. -
Have you made sure you defined NPC to an NPC base, and not a reference? Also, be careful when spawning new NPCs, make sure they're generic and not specific, as bad things could happen. I'm not sure how case-sensitive Papyrus is, but you define Actor Target in the OnEffectFinish line, and use target.PlaceAtMe. If that still doesn't work, you might try making a dummy cell and placing all the NPCs you want to put into your script there, then using an ObjectReference and PlaceAtMe to make a copy of them from the dummy cell. That should work, I think.
-
Check out this mod. Open it up in the CK and see how it works, it does what you want.
-
LE Here are some really good ideas for mods from the Bethesda team.
Elec0 replied to Sibastion's topic in Skyrim's Mod Ideas
Can't wait until we can figure out how to do cool stuff like this. :D -
Why would it keep you from fast traveling even if it's disabled? You could also do a normal spell with a script lowering the player's health by x amount every second or what have you with Wait() or GetCurrentRealTime(), but using a magic effect would probably the more elegant and easy solution.
-
[LE] Adding Items to a merchant via scripting
Elec0 replied to LittleBaron's topic in Skyrim's Creation Kit and Modders
That's odd, it looks like it should work. I can only think that you might have chosen the wrong chest ref, or--this is a long shot--your script is adding the items to the chest before the game is setting it up, so the game overwrites your items. I don't think the latter would actually happen, but I don't know how chests work all that well. -
Here's a basic tutorial on scripting. I don't really explain the script, but the wiki documents that part well enough.