Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

Darlanio

Allies
  • Posts

    6
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Darlanio's Achievements

Layman

Layman (1/11)

2

Reputation

  1. It should be possible to have Skyrim on all three monitors as one very wide camera. Not sure how fast it will be, but try changing the resolution for skyrim to whatever pixels you have for all three monitors combined and the height of one of them.
  2. Can anyone describe how to do this (better than tutorial on http://www.creationkit.com/index.php?title=Bethesda_Tutorial_Encounters how to activate and apply patrol to a spawned actor (PlaceActorAtMe is called to spawn the actor, so it is not clickable in CK). Another page of intrest seem to be the incomplete page http://www.creationkit.com/index.php?title=Default_Master_Package but I can't figure out how to check (or where) that my actorbases (or if I need to make my own templates for the actors) if they have DMF active and how to set a linked ref to them. Please let me know if you have read my question and just don't have an answer. When I posted I saw some threads have updated the last few days, but now it seems that this forum is completely dead...
  3. Noone knows or it is impossible to assign an actor a PatrolIdleMarker from Papyrus?
  4. Hello Everyone, I am trying to make my own mod for more immersive NPCs. So far I am able to spawn wolves and bandits that attack the player and take care of the garbage without crashes or savegame bloating, but I plan more... I have some trouble making the spawned soldiers (Imperials and Stormcloaks) do start patrolling instead of just standing around. Plan is to create a LinkedReference at a random position and make them patrol to that point and back to their spawningpoint (ping-pong-patrol) or use Vanilla PatrolIdleMarkers so that spawned soldiers first move fromm their spawningpoint to a first vanilla PatrolIdleMarker, then ping-pong-patrol between that first marker and a second vanilla PAtrolIdleMarker. I also have trouble with my spawned groups of bandits, which I want to remain at the spawned point and not attack player until they discover the player. So far I am able to walk up to them and actually kill them before they attack me. When I have hit one of them, the others starts to fight, but that is a bit too late. I would like them to attack the player as soon as they can see the player. Spawntimer is done with RegisterForSingleUpdate(60.0), so every minute the script checks what can be cleaned up (far enough from the player) and respawned. Since I am doing all in Papyrus and NOT using Creation Kit more than to set up quest and fill the properties, I have not found any example that provides the answers I need. I would be very happy if someone could type the lines of papyrus code needed for this. From my script, only the rows for one of the imperial guards, taken out of the full script: ScriptName DarlanioImmersiveNPCs extends Quest Actor property PlayerRef Auto ActorBase property LvlGuardImperial auto ... Float Direction = Utility.RandomFloat() * 360 MyActor = PlayerRef.PlaceActorAtMe(LvlBanditAmbushMeleeEvenTonedM, 2) MyActor.MoveTo(PlayerRef, Math.Sin(Direction) * SpawnDistance, Math.Cos(Direction) * SpawnDistance, 0.0) ... Maybe I need something similar to what I use for the wolves and solo bandits: MyActor.StartCombat(PlayerRef) Maybe something like: MyActor.StartPatrol(SomeLinkedReference) ? Please write answer in form of Papyrus lines and explanation - I do not want to use Creation Kit more than necessary and I do not want to make specific markers in the Tamriel World...
  5. Hello Fellow Modders, I have started to read about and try to mod Skyrim, something I have wanted to do for several years but not had time for. Papyrus sure has it's limitations but I still like to do "everything" from script and text and this has caused some problems, which I seek answers for. I will look for the answer in the other threads and, if not found, try to find the right thread to post my question to. Looking at the list of topics in this thread I realize that very few new modders comes into this community as of late... I seem to be the first in June 2016, and only a few in May 2016... Hope this community is still alive... Stefan "Darlanio", 42, Sweden
×
×
  • Create New...