Skip to content

Commit

Permalink
Beta feedback handled for NG+, TwinKeepers 8 revised
Browse files Browse the repository at this point in the history
Urzatron21 delivered new script for final Twin Keepers level, fixes an infinite unit spawn, and emulates original behavior on KeeperFx

New Game+ has some remaining exploits fixed.
  • Loading branch information
Loobinex committed Aug 24, 2020
1 parent 46839bc commit 6ec6bf6
Show file tree
Hide file tree
Showing 19 changed files with 151 additions and 101 deletions.
2 changes: 1 addition & 1 deletion campgns/origplus/map00004.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2015
REM Date: 17 Dec 1996 - 11 Jul 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion campgns/origplus/map00006.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2015
REM Date: 17 Dec 1996 - 11 Jul 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion campgns/origplus/map00007.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 27 Feb 2018
REM Date: 17 Dec 1996 - 14 Aug 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion campgns/origplus/map00008.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2015
REM Date: 17 Dec 1996 - 11 Jul 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion campgns/origplus/map00009.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2015
REM Date: 17 Dec 1996 - 25 Jul 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions campgns/origplus/map00010.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2015
REM Date: 17 Dec 1996 - 08 Jul 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -57,7 +57,7 @@ CREATURE_AVAILABLE(ALL_PLAYERS,BILE_DEMON,1,0)
CREATURE_AVAILABLE(ALL_PLAYERS,HELL_HOUND,1,0)
CREATURE_AVAILABLE(ALL_PLAYERS,DRAGON,1,0)
CREATURE_AVAILABLE(ALL_PLAYERS,ORC,1,0)

REM Room availability
ROOM_AVAILABLE(ALL_PLAYERS,TREASURE,1,1)
ROOM_AVAILABLE(ALL_PLAYERS,LAIR,1,1)
Expand Down
31 changes: 19 additions & 12 deletions campgns/origplus/map00011.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2015
REM Date: 17 Dec 1996 - 24 Aug 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -49,7 +49,7 @@ CREATURE_AVAILABLE(PLAYER0,BILE_DEMON,1,0)
CREATURE_AVAILABLE(PLAYER0,HELL_HOUND,1,0)
CREATURE_AVAILABLE(PLAYER0,DRAGON,1,0)
CREATURE_AVAILABLE(PLAYER0,ORC,1,0)

REM Room availability
ROOM_AVAILABLE(ALL_PLAYERS,TREASURE,1,1)
ROOM_AVAILABLE(ALL_PLAYERS,LAIR,1,1)
Expand Down Expand Up @@ -205,32 +205,39 @@ IF(PLAYER_GOOD,GAME_TURN >= 13000)
ENDIF
ENDIF

REM Extra parties for player when he goes after specials
IF(PLAYER0,BRIDGE >= 6)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,FIFTH,DRAWFROM(1,2,3),1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,SIXTH,DRAWFROM(1,2,3),1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,SEVENTH,DRAWFROM(1,2,3),1)
ENDIF

REM Start a second wave
IF(PLAYER0,TIMER1 >= 3000)
REM "The enemy are upon us. I'm just telling you in case you were having a doze."
DISPLAY_OBJECTIVE(103,ALL_PLAYERS)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,FIFTH,1,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,SIXTH,2,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,SEVENTH,3,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,FIFTH,DRAWFROM(1,2,3,4),1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,SIXTH,DRAWFROM(1,2,3,4),1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,SEVENTH,DRAWFROM(1,2,3,4),1)
ENDIF

IF(PLAYER0,TIMER1 >= 4000)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,EIGHTH,4,1)
ENDIF
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,EIGHTH,DRAWFROM(2,4),1)
ENDIF

IF(PLAYER0,TIMER1 >= 4500)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,LANDLORD,1,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,THIRD,1,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,FOURTH,1,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,LANDLORD,DRAWFROM(2,4),1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,THIRD,DRAWFROM(2,4),1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,FOURTH,DRAWFROM(2,4),1)
SET_TIMER(PLAYER0,TIMER2)
ENDIF
ENDIF

IF(PLAYER0,TIMER2 >= 200)
IF_CONTROLS(PLAYER_GOOD,TOTAL_CREATURES <= 0)
REM "All the heroes are dead, which is as it should be. This land and all its spoils are yours. May I suggest that you waste everything?"
DISPLAY_OBJECTIVE(104,ALL_PLAYERS)
WIN_GAME
ENDIF
ENDIF
ENDIF

REM ****************************************************************************
20 changes: 14 additions & 6 deletions campgns/origplus/map00012.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2015
REM Date: 17 Dec 1996 - 15 Aug 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -135,20 +135,28 @@ IF(PLAYER1,DUNGEON_DESTROYED == 1)
ENDIF
ENDIF

REM Access to transfer special revoked when a hero is killed before a single keeper is destroyed.
REM Access to transfer special revoked when a hero is killed before a single keeper is destroyed, or when transfering a unit into this level.
IF_CONTROLS(PLAYER_GOOD,TOTAL_CREATURES < 27)
IF(PLAYER1,DUNGEON_DESTROYED == 0)
IF(PLAYER2,DUNGEON_DESTROYED == 0)
IF(PLAYER0,FLAG7 <= 0)
PLAY_MESSAGE(PLAYER0,SOUND,927)
CHANGE_SLAB_TYPE(1,44,HARD)
REVEAL_MAP_RECT(PLAYER0,3,132,1,1)
SET_FLAG(PLAYER0,FLAG7,1)
ENDIF
ENDIF
ENDIF
ENDIF
IF(PLAYER0,GAME_TURN <= 10)
IF(PLAYER0,TOTAL_CREATURES >= 1)
SET_FLAG(PLAYER0,FLAG7,1)
ENDIF
ENDIF
IF(PLAYER0,FLAG7 == 1)
PLAY_MESSAGE(PLAYER0,SOUND,927)
CHANGE_SLAB_TYPE(1,44,HARD)
REVEAL_MAP_RECT(PLAYER0,3,132,1,1)
ENDIF
IF_SLAB_OWNER(1,44,PLAYER0)
SET_FLAG(PLAYER0,FLAG7,1)
SET_FLAG(PLAYER0,FLAG7,2)
ENDIF

REM If one computer takes heart damage, the other one will remove the door.
Expand Down
2 changes: 1 addition & 1 deletion campgns/origplus/map00014.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2015
REM Date: 17 Dec 1996 - 24 Jul 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion campgns/origplus/map00015.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2015
REM Date: 17 Dec 1996 - 15 Aug 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down
10 changes: 7 additions & 3 deletions campgns/origplus/map00016.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 08 Mar 2018
REM Date: 17 Dec 1996 - 15 Aug 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -224,8 +224,11 @@ ENDIF
IF(PLAYER0,TOTAL_CREATURES >= 16)
SET_FLAG(PLAYER0,FLAG7,1)
ENDIF
IF(PLAYER1,HEART_HEALTH <= 28000)
IF(PLAYER0,FLAG7 <= 0)
IF(PLAYER0,FLAG7 <= 0)
IF(PLAYER1,HEART_HEALTH <= 28000)
SET_FLAG(PLAYER0,FLAG7,2)
ENDIF
IF(PLAYER1,BATTLES_LOST >= 4)
SET_FLAG(PLAYER0,FLAG7,2)
ENDIF
ENDIF
Expand All @@ -240,6 +243,7 @@ IF(PLAYER0,FLAG7 == 2)
IF_SLAB_TYPE(61,58,DRAPE_WALL)
CHANGE_SLAB_TYPE(61,58,PRETTY_PATH)
ENDIF
ALLY_PLAYERS(PLAYER1,PLAYER_GOOD,1)
ENDIF

IF(PLAYER1,TOTAL_CREATURES >= 17)
Expand Down
9 changes: 8 additions & 1 deletion campgns/origplus/map00018.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2018
REM Date: 17 Dec 1996 - 15 Aug 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand All @@ -20,6 +20,8 @@ REM Nothing new for the player
REM Flags used:
REM PLAYER0,FLAG2 - State of party TWO continuous spawning; 0-before; 2-spawning; 3-after.
REM PLAYER0,FLAG4 - Disables attack of the gold mining events chain; 0-attack allowed; 1-final attack disabled.
REM PLAYER_GOOD,FLAG1 - Allows for the Lord to be spawned
REM PLAYER_GOOD,FLAG2 - Starts GOOD Timer 2
REM Timers used:
REM PLAYER0,TIMER2 - Continuous spawning of party TWO after AP1 is activated
REM PLAYER0,TIMER4 - Allows delayed spawning of small party when AP3 is activated
Expand Down Expand Up @@ -233,6 +235,10 @@ ENDIF
REM If mined so much gold, the dungeon is quite advanced. Start timer for a large attack.
IF(PLAYER0,TOTAL_GOLD_MINED >= 35000)
ADD_TUNNELLER_PARTY_TO_LEVEL(PLAYER_GOOD,TWO,-2,DUNGEON_HEART,0,5,250)
SET_FLAG(PLAYER_GOOD,FLAG2,1)
ENDIF

IF(PLAYER_GOOD,FLAG2 == 1)
SET_TIMER(PLAYER_GOOD,TIMER2)
ENDIF

Expand Down Expand Up @@ -286,6 +292,7 @@ IF_ACTION_POINT(1,PLAYER0)
ENDIF
IF_ACTION_POINT(12,PLAYER0)
SET_FLAG(PLAYER_GOOD,FLAG1,1)
SET_FLAG(PLAYER_GOOD,FLAG2,1)
ENDIF
IF(PLAYER_GOOD,FLAG1 == 1)
REM "The heroes of this realm have prepared for your coming by building an underground stronghold of their own."
Expand Down
8 changes: 7 additions & 1 deletion campgns/origplus/map00019.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 14 Mar 2018
REM Date: 17 Dec 1996 - 24 Aug 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -103,6 +103,11 @@ CREATE_PARTY(WIZZIES)
ADD_TO_PARTY(WIZZIES,WIZARD,2,500,ATTACK_ENEMIES,0)
ADD_TO_PARTY(WIZZIES,WIZARD,2,500,ATTACK_ENEMIES,0)

CREATE_PARTY(PIXIES)
ADD_TO_PARTY(PIXIES,FAIRY,8,700,ATTACK_ENEMIES,0)
ADD_TO_PARTY(PIXIES,FAIRY,8,700,ATTACK_ENEMIES,0)
ADD_TO_PARTY(PIXIES,FAIRY,8,700,ATTACK_ENEMIES,0)

CREATE_PARTY(DWARVES)
ADD_TO_PARTY(DWARVES,DWARFA,4,500,STEAL_GOLD,0)
ADD_TO_PARTY(DWARVES,DWARFA,4,500,STEAL_GOLD,0)
Expand Down Expand Up @@ -217,6 +222,7 @@ ENDIF
IF_ACTION_POINT(3,PLAYER0)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,SAMMIES,8,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,SAMMIES,9,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,PIXIES,-3,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,LANDLORD,3,1)
ENDIF

Expand Down
28 changes: 16 additions & 12 deletions campgns/origplus/map00020.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Dec 1996 - 29 Nov 2014
REM Date: 17 Dec 1996 - 20 Aug 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -96,7 +96,7 @@ MAGIC_AVAILABLE(ALL_PLAYERS,POWER_CHICKEN,1,0)
REM Doors and traps availability
TRAP_AVAILABLE(ALL_PLAYERS,POISON_GAS,1,0)
DOOR_AVAILABLE(ALL_PLAYERS,STEEL,1,0)
TRAP_AVAILABLE(ALL_PLAYERS,BOULDER,1,0)
TRAP_AVAILABLE(PLAYER1,BOULDER,1,0)
DOOR_AVAILABLE(ALL_PLAYERS,MAGIC,1,0)
TRAP_AVAILABLE(ALL_PLAYERS,LIGHTNING,1,0)
TRAP_AVAILABLE(ALL_PLAYERS,WORD_OF_POWER,1,0)
Expand Down Expand Up @@ -150,8 +150,8 @@ IF(PLAYER_GOOD,FLAG1 == 0)
ENDIF
ENDIF

REM If the blue heart is taking serious damage, give him some bridges to put up a fight
IF(PLAYER1,HEART_HEALTH <= 8000)
REM If the blue heart is taking significant damage, give him some bridges to put up a fight
IF(PLAYER1,HEART_HEALTH <= 22000)
IF_SLAB_OWNER(33,22,PLAYER1)
IF_SLAB_TYPE(33,23,WATER)
CHANGE_SLAB_TYPE(33,23,BRIDGE_FRAME)
Expand All @@ -161,6 +161,7 @@ IF(PLAYER1,HEART_HEALTH <= 8000)
CHANGE_SLAB_TYPE(33,24,BRIDGE_FRAME)
CHANGE_SLAB_OWNER(33,24,PLAYER1)
ENDIF
CHANGE_SLAB_TYPE(33,21,PRETTY_PATH)
ENDIF
IF_SLAB_OWNER(35,22,PLAYER1)
IF_SLAB_TYPE(35,23,WATER)
Expand All @@ -171,6 +172,7 @@ IF(PLAYER1,HEART_HEALTH <= 8000)
CHANGE_SLAB_TYPE(35,24,BRIDGE_FRAME)
CHANGE_SLAB_OWNER(35,24,PLAYER1)
ENDIF
CHANGE_SLAB_TYPE(35,21,PRETTY_PATH)
ENDIF
IF_SLAB_OWNER(70,16,PLAYER1)
IF_SLAB_TYPE(71,16,LAVA)
Expand Down Expand Up @@ -220,6 +222,7 @@ REM ****************************************************************************

IF(PLAYER1,DUNGEON_DESTROYED == 1)
ROOM_AVAILABLE(PLAYER0,BRIDGE,1,1)
TRAP_AVAILABLE(PLAYER0,BOULDER,1,0)
SET_TIMER(PLAYER1,TIMER2)
IF(PLAYER_GOOD,FLAG1 == 0)
REM "You got rid of that Keeper easily. Now all that stands between you and total world domination is that ponce in shining armour. Let's get him."
Expand Down Expand Up @@ -249,16 +252,17 @@ IF(PLAYER_GOOD,FLAG1 == 1)
ENDIF
ENDIF
ENDIF

IF(PLAYER_GOOD,TIMER0 >= 700)

SET_TIMER(PLAYER_GOOD,TIMER0)
IF(PLAYER_GOOD,TIMER0 >= 70)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,MAGICIANS,-1,1)
ADD_TUNNELLER_PARTY_TO_LEVEL(PLAYER_GOOD,BRUTES,-2,DUNGEON,0,10,100)
ADD_TUNNELLER_PARTY_TO_LEVEL(PLAYER_GOOD,DWARVES,-3,DUNGEON,0,10,100)
ADD_TUNNELLER_PARTY_TO_LEVEL(PLAYER_GOOD,DWARVES,-6,DUNGEON,0,10,100)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,BRUTES,1,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,MAGICIANS,2,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,BRUTES,4,1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,DWARVES,3,1)
ADD_TUNNELLER_PARTY_TO_LEVEL(PLAYER_GOOD,DWARVES,DRAWFROM(-3,-6),DUNGEON,0,10,100)
ADD_TUNNELLER_PARTY_TO_LEVEL(PLAYER_GOOD,DWARVES,DRAWFROM(-3,-6),DUNGEON,0,10,100)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,BRUTES,DRAWFROM(1,2,3,4),1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,MAGICIANS,DRAWFROM(1,2,3,4),1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,BRUTES,DRAWFROM(1,2,3,4),1)
ADD_PARTY_TO_LEVEL(PLAYER_GOOD,DWARVES,DRAWFROM(1,2,3,4),1)
ENDIF

IF(PLAYER_GOOD,TIMER0 >= 833)
Expand Down
2 changes: 1 addition & 1 deletion campgns/origplus/map00101.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Aug 1997 - 14 Nov 2014
REM Date: 17 Aug 1997 - 30 Jun 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions campgns/origplus/map00102.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ REM Campaign: New game plus
REM Authors: based on Bullfrog script
REM KeeperFX CCP Team
REM Loobinex
REM Date: 17 Aug 1997 - 14 Nov 2014
REM Date: 17 Aug 1997 - 24 Aug 2020
REM Copying and copyrights:
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -60,7 +60,7 @@ IF(PLAYER0,CAMPAIGN_FLAG3 <= 2)
IF(PLAYER0,IMP == 0)
REM "It is done. Tiny heaps of charred flesh smoulder where Imps once stood. You certainly had your finger on the pulse this time."
DISPLAY_OBJECTIVE(147,PLAYER0)
ADD_CREATURE_TO_LEVEL(PLAYER0,IMP,PLAYER0,1,5,10000)
ADD_CREATURE_TO_LEVEL(PLAYER0,IMP,PLAYER0,1,1,10000)
ROOM_AVAILABLE(ALL_PLAYERS,BRIDGE,1,1)
MAGIC_AVAILABLE(PLAYER0,POWER_POSSESS,1,1)
REM Using a timer to make sure add creature command will be executed
Expand Down

0 comments on commit 6ec6bf6

Please sign in to comment.