-
Posts
87 -
Joined
-
Last visited
Everything posted by FirstVaultDweller
-
Hi all, I have a quick question. Is there any mod that let's manufacturing continuing while you away from your settlement (can't find one) or does someone know where i can change that within the creation kit ? :confused: It can be really frustrated if you have to wait every time till the manufacturing is finished and you can't go anywhere. :wallbash:
-
So it's not the creatures but the explosions i find out. Some times correct burned texture and some times strange as in the picture if someone can fix it or tell me what makes it like that would be nice. :confused: m i really the only one with this problem ?
-
hi all, I run in to a bug, was wondering if anyone else have this problem and how can it be fixed?(maybe unofficial patch mod) Reinstalled the game without any mods so it is impossible that it can be cuz of mods i guess.(version: 1.10.111) So this is what is happening: When you trow a fragmentation grenade (or other explosives) to a radroach (or other creatures)you get a strange black splashes on to floor with a corner. I don't know how i can describe it so i have here a screenshot of it:
-
Yeahhhhhh :dance: finally it is working like how i wanted to be thanks to you. I really appreciate it the time you spend to help me out, really you'r the best :thumbsup: Finally i can upload my mod , thanks again have a nice day :smile:
-
So i can use this script allso the the other activator to lock the door but which property or what makes it that it locks the door? I didn't understand exactly how or where i can find that checkbox? In the meantime ill try to find such a checkbox.
-
WoW :ohmy: thanks man really appreciate it, it works but when the timer was on 0 it locked the door it should be stay in unlocked state till i locked it my self again so i tweaked this 2 statements : If(!xDoor01.IsLocked());'If NOT locked' xDoor01.Lock(abLock = True, abAsOwner = False);'Lock it' EndIf xDoor01.BlockActivation(abBlocked = True, abHideActivateText = True);'Avoid activation and hide activation text.' in to this: If(!xDoor01.IsLocked());'If NOT locked' xDoor01.Lock(abLock =False, abAsOwner = True);'Lock it' EndIf xDoor01.BlockActivation(abBlocked = False, abHideActivateText = False);'Avoid activation and hide activation text.' i don't now if this is the correct way to do it but it works now and i wanted to apply this to my other activator to lock the door back again but can't cuz there isn't a opposite of IsLocked() something like IsUnlocked() i can't figure it out :confused: do i need a hole new script for that or can that be done in the same script and if it's to complicated ill stick on one activator i am already happy that i have something that unlocks.? :smile:
-
I linked to activator to the door but i still get the message "ERROR: The activator has no linked door" :confused:
-
Thanks i don't know where to put the statement for the key cuz it getting to much for me now :confused: sorry not so much experience with scripting? and BTW sorry i didn't mention it before i thought it is gonna be a easy one line script that i can copy and use it to the second activator so have total of two activators . To lock/unlock with the activators you need the key of that door. If the door is unlocked you need to be able to open it with the door only. Sorry English is not my first language, i hope i explained it better now and is clear what i wanna to achieve. One Locks the door and one Unlocks the door should i use exact the same script to that ? If you pleas can tel me what script i should have for both activators (Lock&Unlock) i really would appreciated :smile: Script to attach Activator 1(Unlock door): Post#3 Script i have for Activator 2 (Lock door) Scriptname DCF_ManuallyLockDoor extends ObjectReference ObjectReference Property xDoor01 Auto ObjectReference Property xKeyLock01 Auto Event OnActivate(ObjectReference akAction) Int OpenState = xDoor01.GetOpenState() If (OpenState == 1 || OpenState == 2) Debug.Notification("Can't lock it now") ElseIf (OpenState == 3 || OpenState == 4) Debug.Notification("Door Is Locked Now") xDoor01.Lock() xKeyLock01.Enable() Disable() EndIf EndEvent
-
Finally :smile: after long time searching i find a solution . I used the lock type of the door as Inaccessible instead of a key so is working now and used this " xDoor01.SetLockLevel(254) " in the lock script to be Inaccessible again if it's locked. Only the player says things like "Broken,cant pick this" but not a big deal this is the closes what i found. And only one thing left and that is to use the key that was meant for the door with the activator(so without key can't use it). Ill try to find a solution for that also. In the meantime help and suggestions are always welcome :thumbsup:
-
Hi all, Does someone know how you can unlock a door only with a activator ? but you must still be able to open the door when you activate it after you unlock it with the activator. (so basically you can only interact with the door if it is in unlocked state) I can't figure it out. I tried "OnLockStateChanged()" ".BlockActivation()" and couple more but it does nothing what did i wrong ? What event or statement i have to put in my script and should i attach it to the door or activator ? :confused: I would appreciate it if someone can help me out :smile: Script that is attached to the Activator: Scriptname DCF_ManuallyUnlockDoor extends ObjectReference ObjectReference Property xDoor01 Auto Event OnActivate(ObjectReference akAction) If (xDoor01.IsLocked()) Debug.Notification("Unlocked with the Factory Secret Room Key") xDoor01.Unlock() EndIf EndEvent Script that is attached to the Door: Scriptname DCF_AutoCloseDoorScript extends ObjectReference Event OnOpen(ObjectReference akActionRef) StartTimer(5.0) EndEvent Event OnTimer(int timerID) if timerID == 0 SetOpen(False) endif EndEvent I used this event with the door but does nothing : Event OnInit() If (IsLocked()) BlockActivation(True) Else BlockActivation(False) EndIf EndEvent
-
Hi all, i have been trying all day to make this script working as i wanted. I really tried to figure it out by my self and come far with it only one line has given me such a headache. So i need your help guys. This is what i was planning to do: I have one DOOR and one ACTIVATOR The DOOR is locked with a key, so as usual if you activate the DOOR it unlocks (if you have the key :wink:) So far nothing i have to do. (i add a script for auto close though but that is working fine so no worries) Now my part , if you activate the ACTIVATOR while the DOOR is unlocked it locks the DOOR and if you activate it again while it is locked it shows a notification that it is already locked. Now everything works fine accept the part where the DOOR already is locked message. It stays in the second phase where it locked the DOOR i think if someone knows a line like this "(Door01.IsLocked())" but than the opposite of it. i searched for something like "(.IsUnLocked())" but there isn't such a thing . I find it really strange that there isn't a simple line as that or is there something similar ? :confused: My Script: i know i must replace "(OpenState == 3 || OpenState == 4)" with something like ".IsUnLockt" or ".GetUnLockState" Scriptname DCF_ManuallyLockUnlockDoor extends ObjectReference ObjectReference Property Door01 Auto Event OnActivate(ObjectReference akAction) Int OpenState = Door01.GetOpenState() If (OpenState == 1 || OpenState == 2) Debug.Notification("Locked with the Button") Door01.Activate(Game.GetPlayer()) Utility.Wait(1.0) Door01.Lock() ElseIf (OpenState == 3 || OpenState == 4) Debug.Notification("Locked with the Button") Door01.Lock() ElseIf (Door01.IsLocked()) Debug.Notification("Is already Locked") EndIf EndEvent All help appreciated :thumbsup:
-
> Need help: Lighting Template
FirstVaultDweller replied to FirstVaultDweller's topic in Fallout 4's Creation Kit and Modders
Hi DiodeLadder, It is fixed now thanks :thumbsup: -
Hi all, I created a custom Lighting Template but when i in game and have my pipboy light on i get a strange ugly sort of glow around objects when the background is dark. :confused: i played with all the settings in my Lighting Template, nothing works. Any idea why i have this problem? SCREENSHOT: [EDIT]I figured out that it has nothing to do with Lighting Template by using the Dunwich Borers LT. I did make it darker though so not 100% sure. :confused:
-
> Need help: Material Swap
FirstVaultDweller replied to FirstVaultDweller's topic in Fallout 4's Creation Kit and Modders
langnao, thanks for your reply. I did that already in the first place but wanted to get rid of unnecessary files . So i have to use a nif file for this specific object, no other choice. Thanks though :wink: -
> Need help: Material Swap
FirstVaultDweller replied to FirstVaultDweller's topic in Fallout 4's Creation Kit and Modders
Thanks for clarifying , so ill use a custom nif file than. :thumbsup: -
> Need help: Material Swap
FirstVaultDweller replied to FirstVaultDweller's topic in Fallout 4's Creation Kit and Modders
Can anyone please tell me if it is possible to material swap on this specific object 'Shelf_Big_Wood_HalfLength' ? :confused: if not than i have to use a custom nif file and can carry on. Thnx :thumbsup: -
> Need help: Material Swap
FirstVaultDweller replied to FirstVaultDweller's topic in Fallout 4's Creation Kit and Modders
Anyone any idea what the BGSM file path is for the static object 'Shelf_Big_Wood_HalfLength' is ? It must be somewhere where else it get's the texture from ...really strange ... :confused: -
Hi all, I found out now that you don't need custom nif files to change textures in CK.(i can now get rid of unnecessary files before i upload my mod) :smile: So learned how Material Swap works, i managed to make a Material Swap for all my objects. After that i applied all my Material Swaps to all my objects and all worked fine except one (maybe cuz has no original Material) :confused: Does anyone knows why i can't choose my Material Swap for this specific object (Shelf_Big_Wood_HalfLength) or do i have to use a custom nif file? :confused: Here i have screenshots of one working and one not working object: > Working . > Not working .
-
Hi werr92, thnx for your reply. I'm confused about which is better ? Did what you said and Script 1 has no errors anymore but does nothing so it's not really working or i missed something else. And with Script 2 i still get a error. I tried other property style no success. But i think i'm almost there.(i hope) Here is my updated Script 2 with the error: Scriptname ___TESTINGscript extends ObjectReference ObjectReference Property xButton01 Auto Const ObjectReference Property MStoApply Auto Const Event OnActivate(ObjectReference akActionRef) xButton01.ApplyMaterialSwap(MStoApply) EndEvent Papyrus Compiler Version 2.8.0.4 for Fallout 4 Copyright (C) ZeniMax Media. All rights reserved. Starting 1 compile threads for 1 files... Compiling "___TESTINGscript"... C:\Users\H3S\AppData\Local\Temp\PapyrusTemp\___TESTINGscript.psc(8,29): type mismatch on parameter 1 - cannot pass a objectreference to a matswap No output generated for ___TESTINGscript, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed. Failed on ___TESTINGscript [EDIT] I find out on CK.COM/.. that the Creation Kit cannot fill a property to a MatSwap Script type and need F4SE. It's getting to difficult now so ill do it with the enable/disable script for all my Buttons i guess. (what i rather not do cuz is not the best way for something like this but no choice this is the simplest what i know) Anyway i really appreciate your help thnx. :thumbsup: Btw, please let me know if i'm wrong and there is a simpler script for that if not ill give up. Have a nice day. :smile: