Jump to content

RiotMan117

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by RiotMan117

  1. Thank you for the help. This seems to have solved my issue. Much appreciated!!!
  2. If you were to rephrase the script for it to only advance the quest to stage 20 when that npc is killed, how would you write it?
  3. I'm going to make this nice and simple. I write a script for an npc: scn MarcusHuntedDown Begin OnDeath If Getstage ThinningTheHerd ==10 SetStage ThinningTheHerd 20 Endif END and it does nothing. When the NPC is killed the marker goes away but the quest does not advance to the next stage. The quest still tells you to kill this npc. Thanks.
  4. Stage 20 is going to speak to an npc about killing the other npc. I typed "player.getstage thinningtheherd" and it returned with "GetStage >> 0.00"
  5. I will check tomorrow and let you know the results.
  6. I'm going to make this nice and simple. I write a script for an npc: scn MarcusHuntedDown Begin OnDeath If Getstage ThinningTheHerd ==10 SetStage ThinningTheHerd 20 Endif END and it does nothing. When the NPC is killed the marker goes away but the quest does not advance to the next stage. The quest still tells you to kill this npc. Thanks.
  7. To start off I am EXTREMELY new to the modding scene and this is my very first quest. I have tried to follow Seddons mod tutorial on the NPC counter and I followed it down to the tee but i am at my wits end. I have a part in the quest where you must fend off a group of raiders and kill all of them. Once you kill all of them it should advance to the next stage in the quest which is going to talk to another npc. However, this is where my problem is. The markers show up and when i kill a raider the marker goes away but when you kill all 11 of the raiders the quest never advances to the next stage. This is the script I used for the quest script: scn counterscript short killcount begin gamemode if [killcount ==11] setstage ThinningTheHerd 20 endif end The NPC's script: scn killscript1 begin ondeath set ThinningTheHerd.killcount to [ThinningTheHerd.killcount +1] end ANY and ALL help is definitely appreciated!!!!
×
×
  • Create New...