Advertisement
Guest User

Untitled

a guest
Dec 8th, 2014
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. scn ALBCovertActionScript
  2.  
  3. float CourierDay
  4. float DecisionDay
  5. float fQuestDelayTime
  6.  
  7. ref Adventurer
  8.  
  9. short DoOnce
  10. short IgnoredCourier
  11. short IgnoredShaman
  12.  
  13. Begin GameMode
  14. if( GetGameLoaded || GetGameRestarted )
  15. if( GetStage ALBCovertAction < 15 )
  16. SetModelPath "Arthmoor\null.nif" Broadsheet01Assassination
  17. endif
  18. endif
  19.  
  20. if( (GetPCFame + GetPCInfamy) >= 10 && GetStage ALBCovertAction < 5 )
  21. setstage ALBCovertAction 5
  22. endif
  23.  
  24. if( GetStage ALBCovertAction == 13 && DoOnce == 0 )
  25. set DoOnce to 1
  26. set fQuestDelayTime to 0
  27. ;ALBShamanRef.cast spell on player
  28. Player.RemoveAllItems ALBPCChestRef
  29. Player.AddItemNS LowerPants05 1
  30. Player.AddItemNS LowerShirt05 1
  31. Player.AddItemNS LowerShoes05 1
  32. Player.AddItemNS WristIrons 1
  33. Player.EquipItemNS LowerPants05
  34. Player.EquipItemNS LowerShirt05
  35. Player.EquipItemNS LowerShoes05
  36. Player.EquipItemNS WristIrons
  37. ALBPCChestRef.additem ALBPrisonDoorKey 1
  38.  
  39. Player.MoveTo CGPlayerStartMarker
  40. endif
  41.  
  42. ;Ignored the courier dispatch.
  43. if( CourierDay > 0 && GameDaysPassed >= CourierDay )
  44. if( Player.GetInCell Kvatch == 0 && Player.GetInCell KR == 0 && Player.GetDistance KvatchEncampmentMarker >= 15000 )
  45. set Adventurer to ALBBedrollRef.AdvCorpse
  46. Adventurer.enable
  47. set IgnoredCourier to 1
  48. SetStage Charactergen 88
  49. endif
  50. endif
  51.  
  52. ;Blew off the crazy old man.
  53. if( DecisionDay > 0 && GameDaysPassed >= DecisionDay )
  54. if( Player.GetInCell Kvatch == 0 && Player.GetInCell KR == 0 && Player.GetDistance KvatchEncampmentMarker >= 15000 )
  55. set Adventurer to ALBBedrollRef.AdvCorpse
  56. Adventurer.enable
  57. set IgnoredShaman to 1
  58. SetStage Charactergen 88
  59. endif
  60. endif
  61.  
  62. if( GetStage Charactergen >= 88 ) ;Look at all this junk to set up!
  63. KRCountsRoomArenar.disable
  64. KRCountsRoomDummyDoor.enable
  65. ALBCountGoldwineRef.disable
  66. KRCampMaster.Enable
  67. KRKvatchGateOriginal.Enable
  68. KRKvatchGate05FINAL.Disable
  69. KRP5FrontChapelDoor.Disable
  70. KRGuardGateExt1DayRef.Disable
  71. KRMainExtEnableMaster.disable
  72. KRMainExtDisableMaster.enable
  73. MS48GateSpawnMark.enable
  74. HirtelRef.enable
  75. HirtelRef.moveto KvatchEncampmentMarker
  76. MerandilRef.enable
  77. MerandilRef.moveto MS48IlendBarricadeMarker
  78. JesanRilianRef.enable
  79. JesanRilianRef.moveto MS48IlendBarricadeMarker
  80. SavlianMatiusRef.moveto MS48IlendBarricadeMarker
  81. TierraRef.enable
  82. TierraRef.moveto MS48SavlianChapelMark
  83. BerichInianRef.enable
  84. BErichInianRef.moveto MS48SavlianChapelMark
  85. ALBShamanRef.disable
  86. ALBEmperorRef.disable
  87. set KRPhaseSwitcher.phasenumber to 0
  88. stopquest KRWolfsHeadInfo
  89. SetModelPath "Clutter\Books\Broadsheet01.NIF" Broadsheet01Assassination
  90. ICPalaceElderCouncilMainDoor.lock 80
  91. ALBKvatchMapMarker.disable
  92. ALBKvatchEncampmentMarker.enable
  93. KRMisc01SavlianStatueRef.enable
  94. ALBDragonfires.disable
  95.  
  96. SetStage ALBCovertAction 30
  97. StopQuest ALBCovertAction
  98. endif
  99. End
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106. [[There's also the following:]]
  107. scn ALBCovertActionTriggerScript
  108.  
  109. Begin OnTrigger Player
  110. if( Getstage ALBCovertAction == 13 )
  111. SetStage ALBCovertAction 15
  112. endif
  113. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement