Jump to content

gasti89

Members
  • Posts

    756
  • Joined

  • Last visited

Nexus Mods Profile

About gasti89

gasti89's Achievements

Experienced

Experienced (11/14)

  • First Post
  • Collaborator
  • Posting Machine
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Depending on what you want the script to do, there are different ways to run the cell loading event. So, what do you want the script to do when you enter a cell?
  2. Hey there, i used to do quest/storyline modding, but due to team problems, some lazy people and RL stuff, i got a bit tired of spending hours and hours for nothing. But now, when i've read "professional vocalist and songwriter" an idea came up to my mind. I'm a guitarist and my idea is to make new songs for the Skyrim's Bards. PM me if you're interested (be aware that i'm totally unable to write songs ;))
  3. I'm one of the Version Control enthusiasts and i say it's worth a try. Never had any kind of problems with that and guess what? I mainly do questlines.
  4. If they are aliases you can use ReferenceAlias property.
  5. Properties.... Come on man, don't reset your scripting knowledges everytime you ask for a script. You know how to set properties from the topics you created before. This if in a normal script Actor property Linette auto ObjectReference property ArmorPiece auto Linette.EquipItem(ArmorPiece) This if in a quest fragment Alias_Linette.GetActorRef().EquipItem(ArmorPiece) Of course ArmorPiece has to be defined in the properties tab as ObjectReference
  6. Factions also make him display as a red dot. Remove player-enemy factions, set his behavior to normal (aggressive). Update the door script with this: ScriptName SetStageOnOpen extends ObjectReference Quest Property MyQuest Auto {In the CK, set this to the Quest whose stage you want to set} Int Property StageIndex Auto {In the CK, set this to the stage index you want to use in SetStage} Actor property HiddenThief auto {Fill this property with your thief} Event OnOpen(ObjectReference akActionRef) MyQuest.SetStage(StageIndex) HiddenThief.StartCombat(Game.GetPlayer()) GoToState("Done") EndEvent State Done Event OnOpen(ObjectReference akActionRef) ; Do nothing EndEvent EndState I added a property to be filled with the thief and a scripted StartCombat.
  7. @Cipscis: what i'm guessing is that when you call a GoToState, the script suddenly jumps in the new state, without even finishing running itself in the old state. So calling the SetStage before it ensures that the 1st thing done is calling the stage, then it can safely run the empty state. Also, maybe, putting the 1st event in a Auto State wouls do the trick, dunno. @antstunbell: try putting a radius of 0 in your sleep package. The bed you select isn't the "target of the package". It is just the starting point of it. So if you select that bed with a big enough radius, what the NPC will do is this: - travel to the bed - gather all the beds in the radius - select a random bed among the list - go to that bed and sleep So to fix your issue you can either set the radius to 0, or maybe removing the furniture marker from the bedroll behind the wardrobe, so the bedroll won't be treaten as a sleeping furniture
  8. You don't need to re-enter a Event in the "Done" state. I'm guessing that the script doesn't work because you go to the empty state before calling the SetStage? Try swapping SetStage and GoToState
  9. O.o I used VC a lot of times and never had any sort of merging/network problems. Maybe your problems in merging are related to the fact that you want to move a record that belongs to skyrim.esm or update.esm (for example, a NPC placed in a vanilla cell, wich means the cell record gets edited). In that case, you just have to change the 9th bit of skyrim.esm or update.esm with a hex editor (for both local and network versions), check out the everything, merge and then restore the original bit.
  10. Put this on Stage 10 fragment: RegisterForSingleLOSGain(Game.GetPlayer(), Alias_Corpse.GetReference()) or whatever the corpse alias is called Then put a new quest script (scripts tab) and write this Event OnGainLOS(Actor akViewer, ObjectReference akTarget) Self.SetStage(20) EndEvent
  11. The thing you quoted simply means "right click on the folder, click share. And if you don't have a fake network already, create it." As for the errors showing up thr 1st time you copied skyrim, update and your esm in the shared folder, they're normal as stated. The CK/Pc is complaining that there aren't the files necessary for merging. After the esms are loaded follow the next step in the tutorial (create empty lists) and the errors will disappear. The PerForce error means nothing and will continue to appear.
  12. http://www.creationkit.com/Version_control Create an emtpy esm. Merge all your content in that esm Espify the esm.
  13. Yeah i was like O.o when saw the potions option for food :P
×
×
  • Create New...