diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/015-8-1/campaign.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/015-8-1/campaign.txt b/npc/015-8-1/campaign.txt index 810ebc385..36fc39eee 100644 --- a/npc/015-8-1/campaign.txt +++ b/npc/015-8-1/campaign.txt @@ -28,8 +28,8 @@ OnBegin: unitstop(.SAGRATHA); unitstop(.BOSS); - sc_start(SC_STUN, 4500, 1, 10000, SCFLAG_NOAVOID|SCFLAG_FIXEDTICK, .SAGRATHA); - sc_start(SC_STUN, 4500, 1, 10000, SCFLAG_NOAVOID|SCFLAG_FIXEDTICK, .BOSS); + sc_start(SC_STUN, 9000, 1, 10000, SCFLAG_NOAVOID|SCFLAG_FIXEDTICK, .SAGRATHA); + sc_start(SC_STUN, 9000, 1, 10000, SCFLAG_NOAVOID|SCFLAG_FIXEDTICK, .BOSS); // FIXME: Seems like this is an "unsafe command" in 4144's opinion // Prevent players from engaging Sagratha and allies @@ -41,7 +41,7 @@ OnBegin: unittalk(.SAGRATHA, l("What are you doing here, @@!", get_race())); - addtimer(1000, .@n$+"::OnS02"); + addtimer(2000, .@n$+"::OnS02"); end; OnS02: @@ -51,7 +51,7 @@ OnS02: unittalk(.SAGRATHA, l("I don't need help!")); unittalk(.BOSS, l("Die already!")); - addtimer(1500, .@n$+"::OnS03"); + addtimer(3000, .@n$+"::OnS03"); end; OnS03: @@ -61,7 +61,7 @@ OnS03: unittalk(.SAGRATHA, l("If you don't want to die, fight!")); unittalk(.BOSS, lg("Murder her too!", "Murder him too!")); - addtimer(1500, .@n$+"::OnS04"); + addtimer(3000, .@n$+"::OnS04"); end; OnS04: |