Dracula420 Posted September 17, 2010 Share Posted September 17, 2010 i just started learning to biuld quests and decided to start by making more DB contracts from a new NPC. i'm making a mission to kill 6 necromancer leaders and have gotten all dialog and quest stages uptill this point done. i'm halfway thru making and marking the 6 NPCs with quest markers and was wondering how i make the quest update once they're all dead. there are no special requirements they just need to die and the quest needs to move on. i have an idea but before i spend the next 4 hours bashing my face into the keyboard i figured i would just ask because i will be using on death updates alot. thank you and kudos to whoever will take the time to read this and answer back :thumbsup: Link to comment Share on other sites More sharing options...
Hickory Posted September 17, 2010 Share Posted September 17, 2010 Put a script on necros SN NecroDeadTallyshort doonceBegin OnDeathif ( doonce == 0 ) set YourQuestName.necroskilled to ( YourQuestName.necroskilled + 1 ) set doonce to 1endifEnd Check in your game quest script: short necroskilled If ( necroskilled >= 6 ) SetStage YourQuestName xxEndIf Link to comment Share on other sites More sharing options...
Dracula420 Posted September 17, 2010 Author Share Posted September 17, 2010 thank you very much i was attempting a similar script on tha actual quest itself. i would give you kudos but it seems i already have before lol. Link to comment Share on other sites More sharing options...
Dracula420 Posted September 17, 2010 Author Share Posted September 17, 2010 Can i use the same script on all of them? or do i need a unique one for each actor? Link to comment Share on other sites More sharing options...
Hickory Posted September 17, 2010 Share Posted September 17, 2010 NP. :thumbsup: Link to comment Share on other sites More sharing options...
Hickory Posted September 17, 2010 Share Posted September 17, 2010 Can i use the same script on all of them? or do i need a unique one for each actor? You should be able to use the same script on all of them. Link to comment Share on other sites More sharing options...
Dracula420 Posted September 17, 2010 Author Share Posted September 17, 2010 thank you very much it worked flawlessly. very soon there will be many new contracts for the dark brotherhood. :devil: (cue evil laughter.) Link to comment Share on other sites More sharing options...
Hickory Posted September 17, 2010 Share Posted September 17, 2010 Have fun. :) Link to comment Share on other sites More sharing options...
Recommended Posts