Jump to content

Rasikko

Members
  • Posts

    1368
  • Joined

  • Last visited

Everything posted by Rasikko

  1. Are you trying to simulate your own version of the dragon soul absorption sequence? I believe you can "fake it" by using its FX rather than using the code from the dragonactorscript.
  2. Template Data is data that is inherited from the base actor that is linked to the actor(the drop down). When you use "Use Script" it will use the script on the base actor instead.
  3. I don't know. The syntax is correct. Alternatively you can call Delete() which will remove the reference from the game entirely. Disable just removes the 3D but the reference is still there. Google Translate(assuming you're italian like your profile states): Non lo so. La sintassi è corretta. In alternativa puoi chiamare Delete () che rimuoverà completamente il riferimento dal gioco. Disabilita rimuove solo il 3D ma il riferimento è ancora lì.
  4. Mod Authors usually have a Changelog on their description pages which gives details on each patch and what was changed.
  5. I've never tried this but you could probably do that with xEdit.
  6. Can you give an example of one of those NPCs? For ones I've ran across that use both the ability and the script, Beth was being fancy with trying to simulate the ghosts "phasing" in and out of existence every time they are hit with a weapon. This is done by turning off the shader and turning it back on. The script function appears to override the ability in this manner. Also, the ashpiles needs to be applied when they die.
  7. Start by disabling any combat mods one by one to see which one is effecting the crossbows.
  8. It wont work unless she is added to the factions PotentialFollowerFaction, and CurrentFollowerFaction. The rank for CurrentFollowerFaction needs to be set to -1. That tells the game by default that it is not the current follower.
  9. https://www.creationkit.com/index.php?title=SendAnimationEvent_-_Debug
  10. Try adding a small wait between additem and equipitem. I don't remember why, but sometimes it's necessary to do that when certain functions are called behind each other. Utility.wait(0.1)
  11. Long condition statements containing multiple short circuit operators(&& and ||) confuse me so I divide them when they get especially long.
  12. Let me think on that logic. Break up the logic so it's less confusing If dz_mcm.head_toggle == True && !Target.IsInCombat() if env == "playerh" || env == "dwelling" ; stuff else ; stuff endif else ; stuff endif So if any of those first statement is false, the || statements wont run at all. (yes nested if statements is possible) The statement in your post is basically this: if any of those are false, the body of the statement wont run.
  13. You are right to feel wary, for locations can be vast, or they can be a single cell. If you expect this to work in interiors, the location must be set to the interior only and not any exteriors, or it will fire as soon as you get the cell that holds the entrance/map marker. Thus this isn't reliable for vanilla locations.
  14. Can they though? Name one stable, well executed, well paced, well WRITTEN game that Bethesda Game Studios has ever made. The entire series. Edit: HeyYou - you can set it up where The Task Manager Window always is on top of other windows.
  15. There was a huge bot attack I think last year that screwed with a lot of articles, so a lot of stuff was probably lost in the cleanup..
  16. https://www.creationkit.com/index.php?title=IsCommandedActor ?
  17. https://store.steampowered.com/app/72850/The_Elder_Scrolls_V_Skyrim/ https://store.steampowered.com/app/211720/The_Elder_Scrolls_V_Skyrim__Dawnguard/ https://store.steampowered.com/app/226880/The_Elder_Scrolls_V_Skyrim__Dragonborn/ They are unlisted and thus unsearchable as previously stated, but for obvious reasons they were not physically removed from the store. All you need is to find someone who has owned the original everything Skyrim prior to LE as they will have all the links to each of the store pages. You can thank me later.
  18. This can be done with a perk. Mod Incoming Damage ~ choose how you want the damage to be modified. Perk Owner Condition: GetKnockedState --- Set it to: == 2.0000 Edit: Wrong thread/forum, I thought this was in the CK forum D:.
  19. The scene has probably started but the B actor is not doing what he's supposed to do, leading to a stuck scene. Check his packages, as I assume you have one on the B actor so that he knows where to run to.
  20. Draw a box around the objects for mass selection(deselect ones that you don't want selected), then right click in the render window -> Duplicate / OR CTRL+D OR: Hold control and select the individual objects and then CTRL+D to duplicate all, which will make the duplicates automatically selected.
  21. It's not and even if it were, I don't think it would be useful to you. I went through the entire race list (vanilla skyrim only) Race | Size Dragon XL Giant XL MammothRace XL UndeadDragonRace XL AtronachFrostRace L AtronachStormRace L BearBlackRace L BearSnowRace L DwarvenCenturionRace L FrostbiteSpiderRaceGiant L ElderRaceVampire S MudcrabRace S SkeeverRace S SkeeverWhiteRace S SprigganSwarmRace S SwarmRace S WitchlightRace S All that aren't listed are Medium size.
  22. Words of Power is a separate object and category. Magic -> Spell -> Word of Power
  23. I'm looking in the files for some of the quests (Such as The Dark Brotherhood Forever and Fetch me that Book!) and I'm not seeing any kind of Reset() function. I am seeing a lot of Stop() functions at the end, however. Am I looking in the right place? I'm in the Papyrus Fragment tab of Quest Stages. Thanks for the help! Reset appears to not be necessary to restart a quest. SetStage can do this as well. Therefore the DB Forever is reset from the DBRecurringControlquest, IF the DB Forever quest has reached stage 200 or higher, which at that point the stage is set back to 10. The quest must first be stopped in order for any stage changes to take place(SetStage is coded to also start the quest and subsequently set the stage), that's why you see stop() at the very end. Polling is also required to keep checking to see if the DB Forever quest has reached 200. It's hackey on BGS's part but they probably couldn't think of another way to monitor the stage status of the quest, and it may be that Reset() was introduced afterwards. These scripts are fairly old. For the Civil War quests, there's a comment from one of the developers wishing they add arrays for example.
  24. Specifies what kind of quest it is. None = it falls under no specific type of quest.
×
×
  • Create New...