author | Wuzzy <Wuzzy2@mail.ru> |
Mon, 10 Dec 2018 07:59:45 +0100 | |
changeset 14422 | 6c21bd8547dd |
parent 13583 | 141cdfe0f3ca |
child 14487 | 734a7af2dfc2 |
permissions | -rw-r--r-- |
8043 | 1 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
2 |
HedgewarsScriptLoad("/Scripts/Utils.lua") |
|
7904 | 3 |
|
4 |
local MineArray = {} |
|
11676 | 5 |
local player |
7904 | 6 |
local adviceGiven = false |
7 |
local adviceGiven2 = false |
|
8 |
||
9 |
function onGameInit() |
|
10 |
Seed = 0 -- The base number for the random number generator |
|
11676 | 11 |
GameFlags = gfInfAttack +gfBorder +gfDisableWind +gfSolidLand |
7904 | 12 |
TurnTime = 1500000 -- The time the player has to move each round (in ms) |
13 |
CaseFreq = 0 -- The frequency of crate drops |
|
14 |
MinesNum = 0 -- The number of mines being placed |
|
15 |
Explosives = 0 -- The number of explosives being placed |
|
16 |
Map = "portal" -- The map to be played |
|
17 |
Theme = "Hell" -- The theme to be used |
|
11669
66ddc8c5ecd7
Disable Sudden Death in portal mission
Wuzzy <almikes@aol.com>
parents:
11668
diff
changeset
|
18 |
-- Disable Sudden Death |
66ddc8c5ecd7
Disable Sudden Death in portal mission
Wuzzy <almikes@aol.com>
parents:
11668
diff
changeset
|
19 |
HealthDecrease = 0 |
66ddc8c5ecd7
Disable Sudden Death in portal mission
Wuzzy <almikes@aol.com>
parents:
11668
diff
changeset
|
20 |
WaterRise = 0 |
11676 | 21 |
|
13583
141cdfe0f3ca
Switch almost all Lua calls of AddTeam to using default clan colors instead of hardcoded color
Wuzzy <Wuzzy2@mail.ru>
parents:
13035
diff
changeset
|
22 |
AddTeam(loc("Subjects"), -9, "Simple", "Island", "Default", "cm_test") |
11667
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
23 |
player = AddHog(loc("Subject 1"), 0, 10, "Terminator_Glasses") |
7904 | 24 |
|
13583
141cdfe0f3ca
Switch almost all Lua calls of AddTeam to using default clan colors instead of hardcoded color
Wuzzy <Wuzzy2@mail.ru>
parents:
13035
diff
changeset
|
25 |
AddTeam(loc("Hell Army"), -1, "skull", "Island", "Default", "cm_hellish") |
11667
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
26 |
enemy1 = AddHog(loc("Lucifer"), 1, 200, "InfernalHorns") |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
27 |
enemy2 = AddHog(loc("Voldemort"), 1, 150, "WizardHat") |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
28 |
enemy3 = AddHog(loc("Zombi"), 1, 100, "Zombi") |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
29 |
enemy4 = AddHog(loc("Predator"), 1, 14, "anzac") |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
30 |
enemy5 = AddHog(loc("Oneye"), 1, 50, "cyclops") |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
31 |
enemy6 = AddHog(loc("Razac"), 1, 50, "Evil") |
11245
41799450378a
- Rus localization for portal mission
antonc27 <antonc27@mail.ru>
parents:
8043
diff
changeset
|
32 |
enemy7 = AddHog(loc("C-2"), 1, 50, "cyborg1") |
41799450378a
- Rus localization for portal mission
antonc27 <antonc27@mail.ru>
parents:
8043
diff
changeset
|
33 |
enemy8 = AddHog(loc("Rider"), 1, 50, "scif_SparkssHelmet") |
7904 | 34 |
|
13583
141cdfe0f3ca
Switch almost all Lua calls of AddTeam to using default clan colors instead of hardcoded color
Wuzzy <Wuzzy2@mail.ru>
parents:
13035
diff
changeset
|
35 |
AddTeam(loc("Badmad"), -1, "skull", "Island", "Default", "cm_pentagram") |
11245
41799450378a
- Rus localization for portal mission
antonc27 <antonc27@mail.ru>
parents:
8043
diff
changeset
|
36 |
enemy9 = AddHog(loc("C-1"), 1, 50, "cyborg2") |
11667
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
37 |
enemy10 = AddHog(loc("Hidden"), 1, 40, "bushhider") |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
38 |
enemy11 = AddHog(loc("Ronald"), 1, 70, "clown") |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
39 |
enemy12 = AddHog(loc("Phosphat"), 1, 50, "chef") |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
40 |
enemy13 = AddHog(loc("Lestat"), 1, 30, "vampirichog") |
7904 | 41 |
|
42 |
SetGearPosition(player, 350, 1820) |
|
11668 | 43 |
SetGearPosition(enemy1, 2037, 1313) |
7904 | 44 |
SetGearPosition(enemy2, 1369, 1605) |
45 |
SetGearPosition(enemy3, 1750, 1937) |
|
46 |
SetGearPosition(enemy4, 3125, 89) |
|
47 |
SetGearPosition(enemy5, 743, 900) |
|
48 |
SetGearPosition(enemy6, 130, 360) |
|
49 |
SetGearPosition(enemy7, 1333, 640) |
|
50 |
SetGearPosition(enemy8, 1355, 200) |
|
51 |
SetGearPosition(enemy9, 2680, 225) |
|
52 |
SetGearPosition(enemy10, 2970, 800) |
|
53 |
SetGearPosition(enemy11, 4050, 1964) |
|
54 |
SetGearPosition(enemy12, 2666, 950) |
|
55 |
SetGearPosition(enemy13, 3306, 1205) |
|
56 |
||
57 |
end |
|
58 |
||
59 |
function onAmmoStoreInit() |
|
60 |
||
61 |
SetAmmo(amFirePunch, 0,0,0,1) |
|
62 |
SetAmmo(amParachute, 0, 0, 0, 2) |
|
63 |
SetAmmo(amGirder, 0, 0, 0, 3) |
|
64 |
SetAmmo(amTeleport, 0, 0, 0, 1) |
|
65 |
SetAmmo(amLaserSight,0,0,0,1) |
|
66 |
SetAmmo(amHellishBomb,0,0,0,1) |
|
67 |
SetAmmo(amGrenade,0,0,0,1) |
|
68 |
SetAmmo(amRope,0,0,0,1) |
|
69 |
SetAmmo(amDEagle,0,0,0,1) |
|
70 |
SetAmmo(amExtraTime,0,0,0,2) |
|
71 |
SetAmmo(amSkip,9,0,0,0) |
|
72 |
SetAmmo(amBlowTorch, 0, 0, 0, 1) |
|
73 |
SetAmmo(amPickHammer, 0, 0, 0, 1) |
|
74 |
SetAmmo(amSnowball, 0, 0, 0, 1) |
|
75 |
||
76 |
end |
|
77 |
||
78 |
function onGameStart() |
|
79 |
||
11671
51c4ea6d7f91
merge portal mission fixes by Wuzzy and restore accidently removed SetWind call
sheepluva
parents:
11670
diff
changeset
|
80 |
SetWind(100) |
51c4ea6d7f91
merge portal mission fixes by Wuzzy and restore accidently removed SetWind call
sheepluva
parents:
11670
diff
changeset
|
81 |
|
7904 | 82 |
MineArray[0] = AddGear(840, 1847, gtMine, 0, 0, 0, 0) |
83 |
MineArray[1] = AddGear(900, 1847, gtMine, 0, 0, 0, 0) |
|
84 |
MineArray[2] = AddGear(1000, 1847, gtMine, 0, 0, 0, 0) |
|
85 |
MineArray[3] = AddGear(1100, 1847, gtMine, 0, 0, 0, 0) |
|
86 |
MineArray[4] = AddGear(1140, 1847, gtMine, 0, 0, 0, 0) |
|
87 |
MineArray[5] = AddGear(1170, 1847, gtMine, 0, 0, 0, 0) |
|
88 |
MineArray[6] = AddGear(1200, 1847, gtMine, 0, 0, 0, 0) |
|
89 |
MineArray[7] = AddGear(1200, 1847, gtMine, 0, 0, 0, 0) |
|
90 |
MineArray[8] = AddGear(1230, 1847, gtMine, 0, 0, 0, 0) |
|
91 |
MineArray[9] = AddGear(1280, 1847, gtMine, 0, 0, 0, 0) |
|
92 |
MineArray[10] = AddGear(1302, 1847, gtMine, 0, 0, 0, 0) |
|
93 |
MineArray[11] = AddGear(1350, 1847, gtMine, 0, 0, 0, 0) |
|
94 |
MineArray[12] = AddGear(1383, 1847, gtMine, 0, 0, 0, 0) |
|
95 |
MineArray[13] = AddGear(1400, 1847, gtMine, 0, 0, 0, 0) |
|
96 |
MineArray[14] = AddGear(1423, 1847, gtMine, 0, 0, 0, 0) |
|
97 |
MineArray[15] = AddGear(1470, 1847, gtMine, 0, 0, 0, 0) |
|
98 |
MineArray[16] = AddGear(1480, 1847, gtMine, 0, 0, 0, 0) |
|
99 |
MineArray[17] = AddGear(1311, 1847, gtMine, 0, 0, 0, 0) |
|
100 |
||
101 |
MineArray[18] = AddGear(840, 1785, gtMine, 0, 0, 0, 0) |
|
102 |
MineArray[19] = AddGear(900, 1785, gtMine, 0, 0, 0, 0) |
|
103 |
MineArray[20] = AddGear(1000, 1785, gtMine, 0, 0, 0, 0) |
|
104 |
MineArray[21] = AddGear(1100, 1785, gtMine, 0, 0, 0, 0) |
|
105 |
MineArray[22] = AddGear(1140, 1785, gtMine, 0, 0, 0, 0) |
|
106 |
MineArray[23] = AddGear(1170, 1785, gtMine, 0, 0, 0, 0) |
|
107 |
MineArray[24] = AddGear(1200, 1785, gtMine, 0, 0, 0, 0) |
|
108 |
MineArray[25] = AddGear(1230, 1785, gtMine, 0, 0, 0, 0) |
|
109 |
MineArray[26] = AddGear(1280, 1785, gtMine, 0, 0, 0, 0) |
|
110 |
MineArray[27] = AddGear(1302, 1785, gtMine, 0, 0, 0, 0) |
|
111 |
MineArray[28] = AddGear(1350, 1785, gtMine, 0, 0, 0, 0) |
|
112 |
MineArray[29] = AddGear(1383, 1785, gtMine, 0, 0, 0, 0) |
|
113 |
MineArray[30] = AddGear(1400, 1785, gtMine, 0, 0, 0, 0) |
|
114 |
MineArray[31] = AddGear(1423, 1785, gtMine, 0, 0, 0, 0) |
|
115 |
MineArray[32] = AddGear(1470, 1785, gtMine, 0, 0, 0, 0) |
|
116 |
MineArray[33] = AddGear(1480, 1785, gtMine, 0, 0, 0, 0) |
|
117 |
MineArray[34] = AddGear(1311, 1785, gtMine, 0, 0, 0, 0) |
|
118 |
||
119 |
MineArray[35] = AddGear(4029, 89, gtMine, 0, 0, 0, 120) |
|
120 |
||
11668 | 121 |
for i = 0,#MineArray do |
122 |
SetTimer(MineArray[i],050) |
|
123 |
SetState(MineArray[i],544) |
|
124 |
end |
|
125 |
--needed this MineArray cause timer didn't work, its was always 3sec, i wanna instant mines |
|
7904 | 126 |
|
12933
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
127 |
--CRATES |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
128 |
parachute = SpawnSupplyCrate(1670, 1165, amParachute) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
129 |
girder = SpawnSupplyCrate(2101, 1297, amGirder) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
130 |
SpawnSupplyCrate(1375, 900, amTeleport) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
131 |
SpawnSupplyCrate(1660,1820, amLaserSight) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
132 |
SpawnSupplyCrate(4070,1840, amLaserSight) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
133 |
portalgun = SpawnSupplyCrate(505, 1943, amPortalGun, 1000) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
134 |
extratime = SpawnSupplyCrate(4020, 785, amExtraTime, 2) |
11676 | 135 |
|
12933
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
136 |
SpawnSupplyCrate(425, 613, amSnowball) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
137 |
SpawnSupplyCrate(861, 633, amHellishBomb) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
138 |
SpawnSupplyCrate(2510, 623, amSnowball) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
139 |
SpawnSupplyCrate(2900, 1600, amGrenade) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
140 |
SpawnSupplyCrate(2680, 320, amGrenade) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
141 |
SpawnSupplyCrate(2650, 80, amDEagle) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
142 |
SpawnSupplyCrate(3000, 100, amDEagle) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
143 |
SpawnSupplyCrate(2900, 1400, amRope) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
144 |
SpawnSupplyCrate(4025, 1117, amFirePunch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
145 |
SpawnSupplyCrate(3965, 625, amBlowTorch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
146 |
SpawnSupplyCrate(2249, 93, amBlowTorch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
147 |
SpawnSupplyCrate(2181, 829, amBlowTorch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
148 |
SpawnSupplyCrate(1820, 567, amBlowTorch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
149 |
SpawnSupplyCrate(130, 600, amPickHammer) |
7904 | 150 |
|
11668 | 151 |
--HEALTH CRATE-- |
13035
958c6ff056de
Portal mission: Fix health crate spawning inside land
Wuzzy <Wuzzy2@mail.ru>
parents:
12933
diff
changeset
|
152 |
SpawnHealthCrate(2000, 880) |
11676 | 153 |
|
11668 | 154 |
--GIRDER-- |
7904 | 155 |
PlaceGirder(3363, 1323, 4) |
156 |
||
12077
ce3860c82c8b
Rewrite 2nd line of mission panel of most missions for consistency
Wuzzy <almikes@aol.com>
parents:
11968
diff
changeset
|
157 |
ShowMission (loc("Portal Mind Challenge"), loc("Scenario"), |
12226
3ec0261e01f0
Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents:
12077
diff
changeset
|
158 |
loc("Defeat all enemies!") .. "|" .. |
3ec0261e01f0
Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents:
12077
diff
changeset
|
159 |
loc("In this mission you have infinite time.") .. "|" .. |
3ec0261e01f0
Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents:
12077
diff
changeset
|
160 |
loc("Mines time: 0 seconds"), |
11667
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
161 |
-amPortalGun, 5000) |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
162 |
HogSay(player, loc("I should get myself a portal device, maybe this crate has one."), SAY_THINK) |
11676 | 163 |
|
7904 | 164 |
end |
165 |
||
166 |
function onGameTick() |
|
167 |
||
11668 | 168 |
if (player ~= nil) then |
7904 | 169 |
if (gearIsInBox(player, 1650, 1907, 200, 60) and (adviceGiven == false)) then |
170 |
adviceGiven = true |
|
11668 | 171 |
HogSay(player, loc("Hmmm, I’ll have to find some way of moving him off this anti-portal surface."), SAY_THINK) |
7904 | 172 |
elseif (gearIsInBox(player, 2960, 790, 200, 60) and (adviceGiven2 == false)) then |
173 |
adviceGiven2 = true |
|
11668 | 174 |
HogSay(player, loc("The anti-portal surface is all over the floor, and I have nothing to kill him. Dropping something could hurt him enough to kill him."), SAY_THINK) |
175 |
end |
|
7904 | 176 |
end |
11676 | 177 |
|
7904 | 178 |
end |
11676 | 179 |
|
7904 | 180 |
function onGearDelete(gear) |
11670
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
181 |
-- Check gear collection |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
182 |
if CurrentHedgehog == player and (band(GetGearMessage(gear), gmDestroy) ~= 0) then |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
183 |
if gear == portalgun then |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
184 |
HogSay(player, loc("Great! Let’s kill all these enemies, using portals."), SAY_THINK) |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
185 |
end |
7904 | 186 |
|
11676 | 187 |
if gear == girder then |
11670
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
188 |
HogSay(player, loc("This will be useful when I need a new platform or if I want to rise."), SAY_THINK) |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
189 |
end |
11676 | 190 |
|
11670
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
191 |
if gear == parachute then |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
192 |
HogSay(player, loc("You can’t open a portal on the blue surface."), SAY_THINK) |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
193 |
end |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
194 |
|
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
195 |
if gear == extratime then |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
196 |
HogSay(player, loc("What?! For all this struggle I just win some ... time? Oh dear!"), SAY_SHOUT) |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
197 |
end |
7904 | 198 |
end |
199 |
||
200 |
if gear == player then |
|
11668 | 201 |
player = nil |
202 |
end |
|
7904 | 203 |
end |
204 |