Jump to content

youbetterwork

Supporter
  • Posts

    92
  • Joined

  • Last visited

Posts posted by youbetterwork

  1. You should protect yourselves from such people by not interacting with them and the danger they pose. It is inherently unsafe to be gay. Be careful out there. Very few people have your back. Guard yourself online. I advise to stay away from the Nexus just until it cools down, for your own safety.

  2. You could change the combat from fight to flight by changing when they flee or changing them to flee automatically. (AI Confidence = Cowardly should do the trick)

    But the flee direction is a hidden (AFAIK) setting that forces the actor to travel x navmesh triangles away from the attacker (as I understand it).

    Specific horkers could be told to flee towards an xmarker deep in the water by applying a OnHit Event script to apply an AI procedure to the actor (I've never done this with animals, but I guess it's the same Travel Procedure).

    Applying this script to all horkers (the base actor) would need an AI Procedure that was generic enough to point them towards the deep water. I don't know how to make an AI for animals, much less generic travel AI.

  3. With dialogue, you don't need to script timers. There is a built in timer.

    See the red circle here:

     

    https://imgur.com/cFYXYBI

     

    For a specific item you set the "additem" property to the specific potion.

    For a random item from a leveled list, the "additem" property is to your leveled list.

    Look at the script fragment for the wedding food in the quest "RelationshipMarriageFIN" they included both a potion and a lvl'ed list but only used the potion.

    https://imgur.com/cFYXYBI

  4. The number of active undead/elementals is called "Commanded Actor Limit" which is set behind the scenes as 1.

    The perk system allows you to access this limit (look under "Twin Souls").

    https://imgur.com/lhO6OJ8

    But the assumption the game makes is that this won't change much.

    So if you modified this value to "2" with a spell/book/potion, etc, with a new perk added through script like:

    Game.GetPlayer().AddPerk(AwesomePerk)

    Then later on, Twin Souls would have no effect.

    In order to allow other perks to change this value, you should alter the "value" field of the Twin Souls perk (and your own custom perks) to say Value = Value + 1.00 (or "Value + 2.00" or whatever).

    https://imgur.com/lhO6OJ8

  5. I'm not sure, but you have the package "useMagic" but I think it's "shout."

    I've only ever used ai to force an npc to shoot at practice dummies.

    What if you just add a quest with one line of dialogue that says something like, "cast rally, please." and she replies with some generic dialogue like, "I understand." Or use XVASynth to write/record original lines. Anyway, the dialogue can end with a script fragment that forces the follower to cast a spell.

  6. Basically the title.


    I made a racemenu overlay and the resulting tattoo doesn't take colors very well.


    I imagine I need to change saturation and hue in the original image, but altering it doesn't seem to do the trick.




    See examples the top tattoo is somebody else's and works correctly, the dragon is mine (original image from google and used as an example - but I have also tried it with images I've made from scratch)

    Suggestions welcome.









  7. I am making a mod about Azura and want the player (if they choose) to see a vision/drink some skooma. I would record the scene in my Skyrim and bink it to play within the mod.

     

    My question is, can I use other people's assets like ENB or skin, etc while recording my video to include. Not looking to get into the weeds of the law, just the rules of Nexus. I mean, the video/bink section has everything from Lindsey Sterling, YouTube videos, memes, and Conan, But just because they got away with it 10 years ago doesn't mean it's ok...

  8. The Hitting the Books Quest for the Mages questline has a boss that does this. She summons backup based on the "onhit" event script attached to her. I've tried replicating it for my bosses, but have noticed the system they use is imperfect when set to things like 50% health and it kinda always goes off early. You could try tweaking this script by copying it from her.

     

    Her baseid is 0004D246 in the Creation Kit as actor MG03Caller.

    The script is called dunFellglowBossBattle

     

    Edit to add: The gate when the actor dies is maybe easier. You add an event for ondying that enable a door.

     

    https://www.creationkit.com/index.php?title=OnDying_-_Actor

    https://www.creationkit.com/index.php?title=Enable_-_ObjectReference

×
×
  • Create New...