-
Posts
48 -
Joined
-
Last visited
Everything posted by SAC020
-
Crash While Walking Through Town
SAC020 replied to swampfox162's topic in Mount & Blade II: Bannerlord's Discussion
Having the same issue. Have you found a solution? -
Any luck? Looking for the same
-
How to extend a cloak spell range (area of effect)
SAC020 replied to SAC020's topic in Fallout 4's Discussion
bump -
Hi, I have managed to create a cloak spell / magic effect that works as intended, it runs a script on surrounding NPCs. However, it only works on NPCs that are close to my PC (close = a few steps away). I want to extend the range, but I don't know how. I googled a lot on this, still cannot find a solution that works. Anyone has any experience on this? Ty!
-
Scripting help: attachwire/createwire (F4SE)
SAC020 replied to SAC020's topic in Fallout 4's Discussion
Sadly, that (i.e. the flexing) is managed in the game source code, and there is no access to that code. -
How to get the closest object above an actor (script)
SAC020 replied to SAC020's topic in Fallout 4's Discussion
Thank you very much! I am guessing that indoor it will return the position of the building, not the ceiling? Or, in case of a tree, the base of the tree I'll try spawning a mwst above the character and see where it falls -
How to get the closest object above an actor (script)
SAC020 replied to SAC020's topic in Fallout 4's Discussion
Thank you, I thought of that, but I don't know how to work with arrays -
CTDs are usually due to a bad nif, which can be either a static (architecture mod, or a cell edit mod), or due to a bad outfit (armor / clothes). I suggest uninstalling supermutant armor mods (have you installed any recently) and location modification mods, reload a save previous to the initial crash, and try revisiting the area. You can also try spawning (placeatme) a number of supermutants, see if you can replicate the crash.
-
Scripting help: attachwire/createwire (F4SE)
SAC020 replied to SAC020's topic in Fallout 4's Discussion
Which scripts are you referring to? -
Scripting help: attachwire/createwire (F4SE)
SAC020 replied to SAC020's topic in Fallout 4's Discussion
Figured it out, with the help of F4SE team and kinggath (thank you!) For future reference: - the endpoint objects .nifs need to have connector points (check out the generator nif for reference, just copy the connector point branch to your nif) - the endpoint objects need to be linked with a workshop reference - I have used the Sanctuary workshop bench reference For example, this code spawns two objects (which have been added connector points in their nif) and spawns a rope between them ObjectReference SplineStartRef = caster.placeatme(furniturestage3, 1) SplineStartRef.addkeyword(workshopkwd) SplineStartRef.SetLinkedRef(workshopref, workshopkwd) ObjectReference SplineEndRef = caster.placeatme(furniturestage3, 1) SplineEndRef.setposition(SplineEndRef.getpositionx(), SplineEndRef.getpositiony(), SplineEndRef.getpositionz()+100) SplineEndRef.addkeyword(workshopkwd) SplineEndRef.SetLinkedRef(workshopref, workshopkwd) utility.wait(1) ObjectReference wireRef = SplineStartRef.createwire(SplineEndRef, Game.GetForm(0x00021F34))Problem is that the rope is static, it does not adjust if I move the endpoints after spawning. So, kinda fail, overall :( -
I am trying to spawn a wire between two markers. This is the code I tried so far, it compiles, but nothing shows up in game. Any help / clues / pointers on how should I correct it? thank you ObjectReference InvisibleMatRef1 = furniturestage3ref.placeatme(Game.GetForm(0x000000C2), 1) InvisibleMatRef1.setposition(InvisibleMatRef1.getpositionx(), InvisibleMatRef1.getpositiony(), InvisibleMatRef1.getpositionz()+50) InvisibleMatRef1.addkeyword(workshopkwd) ObjectReference InvisibleMatRef2 = furniturestage3ref.placeatme(Game.GetForm(0x000000C2), 1) InvisibleMatRef2.setposition(InvisibleMatRef2.getpositionx(), InvisibleMatRef2.getpositiony(), InvisibleMatRef2.getpositionz()+150) InvisibleMatRef2.addkeyword(workshopkwd) ObjectReference wireRef = InvisibleMatRef1.CreateWire(InvisibleMatRef2, Game.GetForm(0x00021F34))
-
I'm about at a wits end trying to position the camera relative to a subject. 1. I have tried spawning a "cameraman" NPC - this I can position how I want, but I am unable to get first person view through their eyes: Game.SetCameraTarget(CameraNPCRef) Game.ForceThirdPerson() ; this works, but it gives me a distant camera centered around the "cameraman" - is it possible to get the camera closer to it? Game.ForceFirstPerson() ; this doesn't work, whatever I've tried 2. I have tried positioning the PC relative to the subject, but whenever I use: setposition translateto moveto ... on the PC, I get a loading screen, then either it CTDs, or it teleports me to a totally different cell So - is it possible either to have first person view for another NPC, or position the PC (without falling) somewhere else without crashing? Thank you!
-
Well, no idea what it was, I reverted to an earlier save and it doesn't seem to manifest itself anymore. To be honest, my game is a complete mess from installing and removing mods constantly, so it doesn't really surprise me this kind of random stuff happening. Thanks for the suggestion - by the way, I was in god mode.
-
Got a weird problem: when my character is falling, as soon as it touches the ground, the game crashes to desktop So far, I have tried: - removing all equipment - with or without weapon equipped - 1st and 3rd person - removing all mt animation mods - important: affects player only - when an NPC falls, nothing happens Uploaded a video here, for what it's worth. When it finishes, the game actually CTD'ed https://drive.google.com/open?id=1qjAix6IvmZVWKVaNZhcWsvQ4OD1S0iCu No idea where to investigate further, would appreciate any help
-
I am trying to make a looping rotating static (a noose). In nifskope it animates correctly, however it doesn't animate in-game This is the nif: https://www.dropbox.com/s/xbrput0ubcqzbui/noose spell.nif?dl=0 Looking for help Thank you
-
Anyone able to replicate this outfit? https://i.pinimg.com/originals/51/81/c0/5181c0060ad94b70f80df618f80929d5.jpg
-
Bump :)
-
Scripting help - OnItemUnequipped not firing
SAC020 replied to SAC020's topic in Fallout 4's Discussion
Thank you. The rest of the event is working fine, both before and after the unequip. In the meantime, I got F4SE to compile and it has a much easier solution, getwornitem. Basically, this: Actor:WornItem wornItem = target.GetWornItem(3) ;debug.messagebox(wornitem.item)replaces the whole "contraption". Good enough for me, at this stage. Thanks! If I ever find out what was wrong with the original script, I'll post back with the solution. -
Hi, I am trying to write a script which identifies the outfit an NPC is wearing (and do some stuff based on this). Since I've got no idea where to start, I am trying to adapt a script from another mod Scriptname abc extends activemagiceffect Form[] TargetEquippedArmor Armor Property DummyNudeArmor Auto Const actor caster actor target Event OnEffectStart(Actor akTarget, Actor akCaster) caster = akCaster target = akTarget RegisterForRemoteEvent(target, "OnItemUnequipped") utility.wait(0.5) TargetEquippedArmor = new Form[0] target.unequipitemslot(3) ;target.equipitem(DummyNudeArmor as form, true, true) Utility.Wait(0.5) UnregisterForRemoteEvent(target, "OnItemUnequipped") end event Event Actor.OnItemUnequipped(Actor akSender, Form akBaseObject, ObjectReference akReference) debug.messagebox("remote event fired") ; <= this doesn't fire If (akReference) TargetEquippedArmor.Add(akReference as Form, 1) debug.messagebox(akreference as form) Else TargetEquippedArmor.Add(akBaseObject, 1) debug.messagebox(akbaseobject) EndIf EndEvent Basically, this variant unequips the current outfit and stores it into an array, for later manipulation. Which would be fine by me. Problem is that OnItemUnequipped never fires, no matter if I use unequipitemslot, or if I make the NPC equip an alternate outfit (thus unequiping its original one). Even more frustrating, the original mod where I took the code from, does work, and I cannot spot any difference. Any idea what I am doing wrong? I also tried to use a F4SE function, getwornitem, but I've been unable to compile it. I set up some paths in the creationkitprefs, but no luck so far. Thanks!
-
I am just discovering form lists now, so I am slowly experimenting :) What I achieved so far: created and populated a form list, and successfully equipped random items from the form list to the NPCs on a scripted event. Excellent progress! (for me :) ) Next steps that I need to figure out: - to detect what clothes (under armor, or nude body, if under armor is not present) the NPC is wearing - if I have a corresponding outfit in my form list (since I haven't replicated all outfits in game), replace theirs with mine - if not, keep their own (without crashing, preferably)
-
So, I've got a lot of NPCs with weird blocky patches where they should have beards or hairlines. Any idea which mod, or which mod, when removed (thinking KS Hairs) can cause this? Hair-wise, I have Azaar (which looks fine), Sparky Salon (which looks fine) and I used to have KS or Commonwealth Cuts, can't really remember, which I removed. One example screenshot: https://www.dropbox.com/s/swuvor6ku7jg9s6/ScreenShot1910.png?dl=0
-
Scripting help - equipitem from leveled list
SAC020 replied to SAC020's topic in Fallout 4's Discussion
Yuhooo, works flawlessly!! Thank you very much!! -
Scripting help - equipitem from leveled list
SAC020 replied to SAC020's topic in Fallout 4's Discussion
Thank you very much, this is a real eye opener for me. I didn't know form lists existed, so I was (mis)using leveled lists instead. I don't need a leveled list, and I certainly don't want to alter default outfits, because I don't want NPCs to spawn with my outfits (on the contrary, I want the opposite, to never spawn with mine, just to switch them "on event"). Can't wait to get home to test this, thank you!! -
Wow, thank you very much! I am just now discovering form lists. What happens if you don't have a "clean" version for every "dirty" version? Can you have placeholders? Or you put the "dirty" version at the same index in both lists?