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...

schatten

Ambassadors
  • Posts

    213
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by schatten

  1. Sorry, I wasn't clear. :/

    I have an unmodded game, add a new character and export the face data.

    Now I add a body mod that contains a new body mesh and skin, do I have to export again in this case? Because the previous texture only fits with an unmodded game (vanilla body and face texture)?

  2. Is the dialogue working when you manually trigger the conditions and talk to the NPC?

    Do you have "Must Complete" flag set in the package?

     

    The Package might take some time to trigger.

    I also noticed that sometimes the NPC does not initiate dialogue, says the first lines and then the dialogue may or may not continue. It is really strange sometimes.

  3. When that does not work I will quit the game, load the game and instead of

    pressing 'continue', I will COC to my cell.

    He will lock the door at the scheduled time.  He won't unlock.

    For some reason, my 2nd character will sandbox idles and furniture even though

    NO packages are installed.  I removed them all.

    Remember when no package in the ai package list is valid and the default package list entry is not empty, it will get evaluated from top to bottom.

  4. The item must be a permanent reference. Items loose their reference(non permanent) once they are in an inventory.

     

    A little tip:

    Make your letter a normal book object.

     

    When Salmo says line X use following script:

    game.getplayer().additem(name_of_your_letter,1)

    quest_name.setstage(XXX)

    Don't use a ref, just the name of the object/letter.

     

    When you talk to koris just do:

    game.getplayer().removeitem(name_of_your_letter,1)

    quest_name.setstage(XXX)

     

    Each time the papyrus script must have the property Book with the name name_of_your_letter. Then it is filled automatically when you kill auto fill.

  5. Did you generate the SEQ file? YOu need that for quests that are enabled upon game start.

     

    Yes, my quests are started and aliases are filled. Only when quests are started can you manipulate alias. When they are stopped, aliases are always empty and can't be forced to be filled and used.

    I actually had to use a workaround to make the packages work. Neither quest alias nor a marker did work for package targets.

  6. I have NO CLUE at all. This is just an educated guess:

    In Oblivion there was a mod that changed the skeleton of NPCs like some poeple walked ducked and so on. It was Reneers Varied NPC Mod.

    If you have Oblivion you can take a look how that is done. Check the scripting of that mod. SKSE I think has the same functions as OBSE?

  7. You could try to cast an big range aoe spell to do:

    - stopcombat

    -stopcombatalert

    -remove banditfaction and add customfaction or player faction or whatever

    -setav aggression/confidence/assistance

     

    if bandits are handplaced you could add the above script directly to them and check for a queststage or banditchef death.

  8. I have no clue what you are talking about. :(

    You can place actors and have them initially disabled and enable them when you need them.

    You can placeactoratme to create actors from actorbases and forcerefifempty into aliases if desired.

    You can have actors with donothing packages.

    You can blockactivation.

  9. It's in the SKSE downloads.

    src\skse\scripts\modified

     

    edit:

     

    int count =

    ; return the number of the effects
    int Function GetNumEffects() native

     

    and

     

    ; return the magic effect of the specified effect
    MagicEffect Function GetNthEffectMagicEffect(int index) native

     

    Should help. :)

  10. http://www.creationkit.com/Bethesda_Tutorial_Papyrus_Events_and_Properties

     

    http://www.creationkit.com/Reference

     

    Hope that explains things better than me. :)

     

    edit: Placing an actor in the render window creates a ref. If you give it a name you can use that name as property and it autofills (Actor Property yourfollowernameinrenderwindow Auto or just add an actor property to the script via right click on the script attached to your book)

×
×
  • Create New...