author | Wuzzy <Wuzzy2@mail.ru> |
Mon, 21 Jan 2019 19:49:38 +0100 | |
changeset 14670 | e7b2542c4d28 |
parent 14504 | 310b167141cc |
child 14671 | 5931aff25837 |
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 |
|
14504
310b167141cc
Use player's team identity for SimpleMission-based mission
Wuzzy <Wuzzy2@mail.ru>
parents:
14503
diff
changeset
|
22 |
AddMissionTeam(-1) |
14503
d4aa64f51c9f
Use player-chosen team identity for most challenges and scenarios
Wuzzy <Wuzzy2@mail.ru>
parents:
14487
diff
changeset
|
23 |
player = AddMissionHog(10) |
7904 | 24 |
|
14504
310b167141cc
Use player's team identity for SimpleMission-based mission
Wuzzy <Wuzzy2@mail.ru>
parents:
14503
diff
changeset
|
25 |
AddTeam(loc("Hell Army"), -9, "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 |
|
14504
310b167141cc
Use player's team identity for SimpleMission-based mission
Wuzzy <Wuzzy2@mail.ru>
parents:
14503
diff
changeset
|
35 |
AddTeam(loc("Badmad"), -9, "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 |
|
14670
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
42 |
SetGearPosition(player, 350, 1835) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
43 |
SetGearPosition(enemy1, 2037, 1361) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
44 |
SetGearPosition(enemy2, 1369, 1626) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
45 |
SetGearPosition(enemy3, 1750, 1961) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
46 |
SetGearPosition(enemy4, 3125, 138) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
47 |
SetGearPosition(enemy5, 743, 938) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
48 |
SetGearPosition(enemy6, 130, 388) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
49 |
SetGearPosition(enemy7, 1333, 673) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
50 |
SetGearPosition(enemy8, 1355, 231) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
51 |
SetGearPosition(enemy9, 2680, 264) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
52 |
SetGearPosition(enemy10, 2970, 868) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
53 |
SetGearPosition(enemy11, 4050, 1985) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
54 |
SetGearPosition(enemy12, 2666, 963) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
55 |
SetGearPosition(enemy13, 3306, 1306) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
56 |
|
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
57 |
HogTurnLeft(enemy1, true) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
58 |
HogTurnLeft(enemy2, true) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
59 |
HogTurnLeft(enemy4, true) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
60 |
HogTurnLeft(enemy8, true) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
61 |
HogTurnLeft(enemy9, true) |
e7b2542c4d28
More spawn height tweaking in missions
Wuzzy <Wuzzy2@mail.ru>
parents:
14504
diff
changeset
|
62 |
HogTurnLeft(enemy11, true) |
7904 | 63 |
|
64 |
end |
|
65 |
||
66 |
function onAmmoStoreInit() |
|
67 |
||
68 |
SetAmmo(amFirePunch, 0,0,0,1) |
|
69 |
SetAmmo(amParachute, 0, 0, 0, 2) |
|
70 |
SetAmmo(amGirder, 0, 0, 0, 3) |
|
71 |
SetAmmo(amTeleport, 0, 0, 0, 1) |
|
72 |
SetAmmo(amLaserSight,0,0,0,1) |
|
73 |
SetAmmo(amHellishBomb,0,0,0,1) |
|
74 |
SetAmmo(amGrenade,0,0,0,1) |
|
75 |
SetAmmo(amRope,0,0,0,1) |
|
76 |
SetAmmo(amDEagle,0,0,0,1) |
|
77 |
SetAmmo(amExtraTime,0,0,0,2) |
|
78 |
SetAmmo(amSkip,9,0,0,0) |
|
79 |
SetAmmo(amBlowTorch, 0, 0, 0, 1) |
|
80 |
SetAmmo(amPickHammer, 0, 0, 0, 1) |
|
81 |
SetAmmo(amSnowball, 0, 0, 0, 1) |
|
82 |
||
83 |
end |
|
84 |
||
85 |
function onGameStart() |
|
86 |
||
11671
51c4ea6d7f91
merge portal mission fixes by Wuzzy and restore accidently removed SetWind call
sheepluva
parents:
11670
diff
changeset
|
87 |
SetWind(100) |
51c4ea6d7f91
merge portal mission fixes by Wuzzy and restore accidently removed SetWind call
sheepluva
parents:
11670
diff
changeset
|
88 |
|
7904 | 89 |
MineArray[0] = AddGear(840, 1847, gtMine, 0, 0, 0, 0) |
90 |
MineArray[1] = AddGear(900, 1847, gtMine, 0, 0, 0, 0) |
|
91 |
MineArray[2] = AddGear(1000, 1847, gtMine, 0, 0, 0, 0) |
|
92 |
MineArray[3] = AddGear(1100, 1847, gtMine, 0, 0, 0, 0) |
|
93 |
MineArray[4] = AddGear(1140, 1847, gtMine, 0, 0, 0, 0) |
|
94 |
MineArray[5] = AddGear(1170, 1847, gtMine, 0, 0, 0, 0) |
|
95 |
MineArray[6] = AddGear(1200, 1847, gtMine, 0, 0, 0, 0) |
|
96 |
MineArray[7] = AddGear(1200, 1847, gtMine, 0, 0, 0, 0) |
|
97 |
MineArray[8] = AddGear(1230, 1847, gtMine, 0, 0, 0, 0) |
|
98 |
MineArray[9] = AddGear(1280, 1847, gtMine, 0, 0, 0, 0) |
|
99 |
MineArray[10] = AddGear(1302, 1847, gtMine, 0, 0, 0, 0) |
|
100 |
MineArray[11] = AddGear(1350, 1847, gtMine, 0, 0, 0, 0) |
|
101 |
MineArray[12] = AddGear(1383, 1847, gtMine, 0, 0, 0, 0) |
|
102 |
MineArray[13] = AddGear(1400, 1847, gtMine, 0, 0, 0, 0) |
|
103 |
MineArray[14] = AddGear(1423, 1847, gtMine, 0, 0, 0, 0) |
|
104 |
MineArray[15] = AddGear(1470, 1847, gtMine, 0, 0, 0, 0) |
|
105 |
MineArray[16] = AddGear(1480, 1847, gtMine, 0, 0, 0, 0) |
|
106 |
MineArray[17] = AddGear(1311, 1847, gtMine, 0, 0, 0, 0) |
|
107 |
||
108 |
MineArray[18] = AddGear(840, 1785, gtMine, 0, 0, 0, 0) |
|
109 |
MineArray[19] = AddGear(900, 1785, gtMine, 0, 0, 0, 0) |
|
110 |
MineArray[20] = AddGear(1000, 1785, gtMine, 0, 0, 0, 0) |
|
111 |
MineArray[21] = AddGear(1100, 1785, gtMine, 0, 0, 0, 0) |
|
112 |
MineArray[22] = AddGear(1140, 1785, gtMine, 0, 0, 0, 0) |
|
113 |
MineArray[23] = AddGear(1170, 1785, gtMine, 0, 0, 0, 0) |
|
114 |
MineArray[24] = AddGear(1200, 1785, gtMine, 0, 0, 0, 0) |
|
115 |
MineArray[25] = AddGear(1230, 1785, gtMine, 0, 0, 0, 0) |
|
116 |
MineArray[26] = AddGear(1280, 1785, gtMine, 0, 0, 0, 0) |
|
117 |
MineArray[27] = AddGear(1302, 1785, gtMine, 0, 0, 0, 0) |
|
118 |
MineArray[28] = AddGear(1350, 1785, gtMine, 0, 0, 0, 0) |
|
119 |
MineArray[29] = AddGear(1383, 1785, gtMine, 0, 0, 0, 0) |
|
120 |
MineArray[30] = AddGear(1400, 1785, gtMine, 0, 0, 0, 0) |
|
121 |
MineArray[31] = AddGear(1423, 1785, gtMine, 0, 0, 0, 0) |
|
122 |
MineArray[32] = AddGear(1470, 1785, gtMine, 0, 0, 0, 0) |
|
123 |
MineArray[33] = AddGear(1480, 1785, gtMine, 0, 0, 0, 0) |
|
124 |
MineArray[34] = AddGear(1311, 1785, gtMine, 0, 0, 0, 0) |
|
125 |
||
126 |
MineArray[35] = AddGear(4029, 89, gtMine, 0, 0, 0, 120) |
|
127 |
||
11668 | 128 |
for i = 0,#MineArray do |
129 |
SetTimer(MineArray[i],050) |
|
130 |
SetState(MineArray[i],544) |
|
131 |
end |
|
132 |
--needed this MineArray cause timer didn't work, its was always 3sec, i wanna instant mines |
|
7904 | 133 |
|
12933
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
134 |
--CRATES |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
135 |
parachute = SpawnSupplyCrate(1670, 1165, amParachute) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
136 |
girder = SpawnSupplyCrate(2101, 1297, amGirder) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
137 |
SpawnSupplyCrate(1375, 900, amTeleport) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
138 |
SpawnSupplyCrate(1660,1820, amLaserSight) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
139 |
SpawnSupplyCrate(4070,1840, amLaserSight) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
140 |
portalgun = SpawnSupplyCrate(505, 1943, amPortalGun, 1000) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
141 |
extratime = SpawnSupplyCrate(4020, 785, amExtraTime, 2) |
11676 | 142 |
|
12933
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
143 |
SpawnSupplyCrate(425, 613, amSnowball) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
144 |
SpawnSupplyCrate(861, 633, amHellishBomb) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
145 |
SpawnSupplyCrate(2510, 623, amSnowball) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
146 |
SpawnSupplyCrate(2900, 1600, amGrenade) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
147 |
SpawnSupplyCrate(2680, 320, amGrenade) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
148 |
SpawnSupplyCrate(2650, 80, amDEagle) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
149 |
SpawnSupplyCrate(3000, 100, amDEagle) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
150 |
SpawnSupplyCrate(2900, 1400, amRope) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
151 |
SpawnSupplyCrate(4025, 1117, amFirePunch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
152 |
SpawnSupplyCrate(3965, 625, amBlowTorch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
153 |
SpawnSupplyCrate(2249, 93, amBlowTorch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
154 |
SpawnSupplyCrate(2181, 829, amBlowTorch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
155 |
SpawnSupplyCrate(1820, 567, amBlowTorch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12347
diff
changeset
|
156 |
SpawnSupplyCrate(130, 600, amPickHammer) |
7904 | 157 |
|
11668 | 158 |
--HEALTH CRATE-- |
13035
958c6ff056de
Portal mission: Fix health crate spawning inside land
Wuzzy <Wuzzy2@mail.ru>
parents:
12933
diff
changeset
|
159 |
SpawnHealthCrate(2000, 880) |
11676 | 160 |
|
11668 | 161 |
--GIRDER-- |
7904 | 162 |
PlaceGirder(3363, 1323, 4) |
163 |
||
12077
ce3860c82c8b
Rewrite 2nd line of mission panel of most missions for consistency
Wuzzy <almikes@aol.com>
parents:
11968
diff
changeset
|
164 |
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
|
165 |
loc("Defeat all enemies!") .. "|" .. |
3ec0261e01f0
Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents:
12077
diff
changeset
|
166 |
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
|
167 |
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
|
168 |
-amPortalGun, 5000) |
7652eeb0fc7f
Clean up strings, hats, flags and graves in Portal mission
Wuzzy <almikes@aol.com>
parents:
11245
diff
changeset
|
169 |
HogSay(player, loc("I should get myself a portal device, maybe this crate has one."), SAY_THINK) |
11676 | 170 |
|
7904 | 171 |
end |
172 |
||
173 |
function onGameTick() |
|
174 |
||
11668 | 175 |
if (player ~= nil) then |
7904 | 176 |
if (gearIsInBox(player, 1650, 1907, 200, 60) and (adviceGiven == false)) then |
177 |
adviceGiven = true |
|
11668 | 178 |
HogSay(player, loc("Hmmm, I’ll have to find some way of moving him off this anti-portal surface."), SAY_THINK) |
7904 | 179 |
elseif (gearIsInBox(player, 2960, 790, 200, 60) and (adviceGiven2 == false)) then |
180 |
adviceGiven2 = true |
|
11668 | 181 |
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) |
182 |
end |
|
7904 | 183 |
end |
11676 | 184 |
|
7904 | 185 |
end |
11676 | 186 |
|
7904 | 187 |
function onGearDelete(gear) |
11670
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
188 |
-- Check gear collection |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
189 |
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
|
190 |
if gear == portalgun then |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
191 |
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
|
192 |
end |
7904 | 193 |
|
11676 | 194 |
if gear == girder then |
11670
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
195 |
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
|
196 |
end |
11676 | 197 |
|
11670
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
198 |
if gear == parachute then |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
199 |
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
|
200 |
end |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
201 |
|
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
202 |
if gear == extratime then |
be57b0e3e289
Portal mission: Fix speech bubbles appearing when crate got destroyed
Wuzzy <almikes@aol.com>
parents:
11669
diff
changeset
|
203 |
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
|
204 |
end |
7904 | 205 |
end |
206 |
||
207 |
if gear == player then |
|
11668 | 208 |
player = nil |
209 |
end |
|
7904 | 210 |
end |
211 |
||
14487
734a7af2dfc2
Fix victory check of a few scenarios
Wuzzy <Wuzzy2@mail.ru>
parents:
14422
diff
changeset
|
212 |
function onGameResult(winningClan) |
734a7af2dfc2
Fix victory check of a few scenarios
Wuzzy <Wuzzy2@mail.ru>
parents:
14422
diff
changeset
|
213 |
if winningClan == GetHogClan(player) then |
734a7af2dfc2
Fix victory check of a few scenarios
Wuzzy <Wuzzy2@mail.ru>
parents:
14422
diff
changeset
|
214 |
SaveMissionVar("Won", "true") |
734a7af2dfc2
Fix victory check of a few scenarios
Wuzzy <Wuzzy2@mail.ru>
parents:
14422
diff
changeset
|
215 |
end |
734a7af2dfc2
Fix victory check of a few scenarios
Wuzzy <Wuzzy2@mail.ru>
parents:
14422
diff
changeset
|
216 |
end |