Jump to content

nikashubaiton

Supporter
  • Posts

    34
  • Joined

  • Last visited

Nexus Mods Profile

About nikashubaiton

Profile Fields

  • Country
    Canada

nikashubaiton's Achievements

Contributor

Contributor (5/14)

0

Reputation

  1. Hey guys, I've never done any scripting before and have no idea where to really start, but I need to learn how to do two things: I need to enter a load door to a room (one interior location to another) and have that door disable permanently after the first use. EDIT: I've placed a trigger in the cell to disable the door the moment you enter, now I just need to make it automatically teleport you upon using the item In said room, I need to make it so when I select a custom item, it gives a pop up message, then runs the script to "add perk points" (https://www.creationkit.com/index.php?title=AddPerkPoints_-_Game found here), and teleports the character back to the previous location (or outside, if possible). Not only do I not know all of the scripts I'd need (I have researched, just no luck) but I don't know the way you actually write them to make this happen. Any help would be appreciated!
  2. Thanks, guys! I think what Blue offered is a little bit closer to what I'm looking for, I have a fair bit of modding experience (mostly in Fallout 4, but the CK is pretty much the same) it's mostly figuring out how the scripts work. I don't want the items to be placeable or right where I am, I just want them to appear where I have them pre-set. Best way I can describe it would be how the author of Heljarchen Farm has it set up, or even how the Hearthfire additions work to add things (but instead of recipes requiring different parts like hinges and locks, it would just be gold)
  3. I'm making a home mod and I would like to have an option for upgrades to be purchased for the home (i.e crafting table, beds, smithing equipment, etc.). I essentially want to be able to click a book, a menu pops up and asks "which upgrade would you like to buy" and then when you select it, the object appears (i.e you wanna buy the smelter, you click the menu option, it takes your money and the smelter appears). Could anyone tell me how to do that? I'm sure it has to do with activators, maybe some items being initially disabled, (who knows, I literally have no idea what I'm doing) and a bunch of other things I've never used, I'm just wondering if I can get some help or linked to a tutorial to get started. Thanks!
  4. I was actually coming back to update this, I did already have it linked with workshopitemkeyword but it fixed by just removing the keyword and then re-adding it lol
  5. Hey guys, so for one of my mods I want to turn a welcome mat into a bar, since the location doesn't permit placing a regular stand. I figured out how to make it work partially- I've changed the mesh of the bar into that of the welcome mat, and in game if I command a companion to walk over to it and use it, they'll stand on it and put their hands on the counter that is already there. This shows that the animations correctly line up. The problem is, if I go into workshop mode and try to assign a companion to that bar like you would with a normal stand, it simply cannot be highlighted. Are there certain keywords I may be missing? Something to make it highlight-able? For reference, it does already contain the workshopobjectscript (as it is a duplicate of the existing level 3 bar in game, only with a new model) Any help would be greatly appreciated!
  6. the model and the animations for said model are both appearing to be correct, but it is also 6am and I'm not close to having the place ready as a settlement to assign someone to it, I'm gonna sleep and pick it back up another time, I'll message you to see if it works though. You may have helped answer a lot of my questions!
  7. That's definitely a lot more than anything I've ever done before, but I'm gonna give it a shot lol thanks for the advice, I'll give it a shot and update this when I find out
  8. Sorry you're right, I included it in the tags but forgot to add it in the post, it's for fallout 4
  9. Hey guys, So I'm trying to find a way to turn a static item into a vendor stand in fallout 4. The location in question already has a bar, but I want to be able to place a glass/bottle on it, and make that into an assignable vendor stand, if that makes any sense. Any ideas?
  10. What ended up fixing this was literally duplicating the duplicated cell and trying again, issue was resolved. Thanks though!
  11. Thanks for that, I've been using Stuyk's guide but it was that extra step you gave me that I was missing, I'll test it out
  12. Hey guys, Does anyone know how I'd go about dismissing a companion to an interior workshop? I've made a few playerhomes and I'd like to be able to send followers there, but I'm not sure how I'd go about doing so. I've read all of the tutorials for creating a functioning workshop, but those are for exterior and the details are different, and lacking in certain connections. Would anybody know of a script, or any other ways to send a companion to a playerhome? EDIT: I'd still like to keep the map marker outside, if possible. If it's not possible, it'd still be manageable
  13. Hey guys, (I feel like I only come here for help, so sorry for not being much of a community member) I've made a few interior playerhomes now, and although I'm satisfied with my progress they still feel incomplete, because of one issue- I can't send my companions to them to hang out. I've looked into registrator2000's "companions go home" script, but as I've pretty much never done any scripting, I can't make heads or tails of what I'm supposed to do with it. I want to take the script they have, and simply input my own locations into it, but I don't know if that's entirely possible. Here is the portion of the script I'm assuming I need to use Function Plate()Actor CompanionActor = followersscript.GetScript().Companion.GetActorReference() If (CompanionActor)HomePlate(CompanionActor)ElseDebug.Notification("You don't have a companion right now.")EndIfEndFunction Does anyone have any idea? I'm not sure if I'm even right, or how I'd get it done. If there's a way to simply make an interior workshop accept settlers and followers, that would also be really cool too. Thanks for any help given!
  14. As said above, the message when I try to make a new script is: the parent script doesn't exist please choose one that does I get it when clicking "OK" on the image below, no matter how I fill any of the text boxes. In fact I'm not even sure what goes in the "namespace" area. Any help would be appreciated! The script I'm trying to add to it after by the way, is to make the cell itself immediately count as "cleared" for workshop purposes. It's: Scriptname LocationClearedScript extends ObjectReference Location property LocationToClear auto AUTO STATE Waiting Event OnCellAttach() GoToState("Done") LocationToClear.SetCleared() EndEvent ENDSTATE STATE Done Event OnCellAttach() ; EndEvent ENDSTATE
×
×
  • Create New...