author | alfadur |
Tue, 16 Apr 2019 00:07:15 +0300 | |
changeset 14828 | b2beb784e4b5 |
parent 14599 | 50f511588635 |
child 15010 | 5188ecbf726f |
permissions | -rw-r--r-- |
11015 | 1 |
--[[ ___ ___ |
2 |
( ) ( ) |
|
3 |
___ .-. .-. ___ ___ | |_ .---. ___ .-. | |_ |
|
4 |
( ) ' ( )( ( __) / .-, ( ) ( __) |
|
5 |
| .-. .-. | | | | | | (__) ; || .-. .| | |
|
6 |
| | | | | | | | | | | ___ .'` || | | || | ___ |
|
7 |
| | | | | | | | | | |( / .'| || | | || |( ) |
|
8 |
| | | | | | | | | | | | | / | || | | || | | | |
|
9 |
| | | | | | | ; ' | ' | ; | ; || | | || ' | | |
|
10 |
| | | | | ' `-' / ' `-' ' `-' || | | |' `-' ; |
|
11 |
(___)(___)(___'.__.' `.__.`.__.'_(___)(___)`.__. |
|
12 |
||
13 |
||
14 |
---- Recommended settings: |
|
14290
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
15 |
---- * one hedgehog per team (forced by game) |
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
16 |
---- * one team per clan |
11015 | 17 |
---- * 'Small' one-island map |
18 |
||
19 |
--]] |
|
20 |
||
21 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
|
22 |
HedgewarsScriptLoad("/Scripts/Tracker.lua") |
|
23 |
HedgewarsScriptLoad("/Scripts/Params.lua") |
|
24 |
||
25 |
--[[ |
|
26 |
MUTANT SCRIPT |
|
14290
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
27 |
]] |
11015 | 28 |
|
29 |
local hhs = {} |
|
14285 | 30 |
local crates = {} |
11015 | 31 |
local numhhs = 0 |
32 |
local meh = false |
|
33 |
||
34 |
local gameOver=false |
|
35 |
||
36 |
local mutant = nil |
|
37 |
local mutant_base_health = 200 |
|
38 |
local mutant_base_disease = 25 |
|
39 |
local disease_timer = 2000 |
|
40 |
||
41 |
local kill_reward = nil |
|
42 |
local mt_hurt=false |
|
43 |
||
44 |
local killsCounter = 0 |
|
45 |
||
46 |
local team_fire_punishment = 3 |
|
47 |
local mutant_kill_reward = 2 |
|
48 |
||
49 |
local hh_weapons = { amBazooka, amGrenade, amShotgun, amMine} |
|
50 |
||
51 |
local mt_weapons = {amWatermelon, amHellishBomb, amBallgun, amRCPlane, amTeleport} |
|
52 |
||
53 |
local disease=0 |
|
54 |
local timer=0 |
|
55 |
||
56 |
local winScore = 15 |
|
57 |
local hogsLimit = 1 |
|
58 |
||
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
59 |
local teamsDead = {} |
11015 | 60 |
|
61 |
local circles = {} |
|
62 |
local circleFrame = -1 |
|
63 |
||
11909 | 64 |
-- Variables for custom achievements |
65 |
||
66 |
-- Most kills in 1 turn |
|
67 |
local recordKills = 0 |
|
68 |
local recordKillsHogName = nil |
|
69 |
local recordKillsTeamName = nil |
|
70 |
||
71 |
-- Most suicides |
|
72 |
local recordSuicides = 0 |
|
73 |
local recordSuicidesHogName = nil |
|
74 |
local recordSuicidesTeamName = nil |
|
75 |
||
76 |
-- Most skips |
|
77 |
local recordSkips = 0 |
|
78 |
local recordSkipsHogName = nil |
|
79 |
local recordSkipsTeamName = nil |
|
11015 | 80 |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
81 |
-- Most crates collected |
11909 | 82 |
local recordCrates = 0 |
83 |
local recordCratesHogName = nil |
|
84 |
local recordCratesTeamName = nil |
|
85 |
||
86 |
-- Most deaths |
|
87 |
local recordDeaths = 0 |
|
88 |
local recordDeathsHogName = nil |
|
89 |
local recordDeathsTeamName = nil |
|
90 |
||
91 |
-- Total killed hedgehogs |
|
92 |
local totalKills = 0 |
|
93 |
||
94 |
-- Total damage |
|
95 |
local totalDamage = 0 |
|
96 |
||
12988
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
97 |
local mutantHat = "WhySoSerious" |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
98 |
local feederHat = "poke_slowpoke" |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
99 |
|
11909 | 100 |
function rules() |
101 |
||
14290
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
102 |
local mineStr |
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
103 |
if MinesTime < 0 then |
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
104 |
mineStr = loc("Mines time: 0s-5s") |
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
105 |
else |
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
106 |
mineStr = string.format(loc("Mines explode after %d s."), div(MinesTime, 1000)) |
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
107 |
end |
14285 | 108 |
local ruleSet = loc("Hedgehogs will be revived after their death.") .. "|" .. |
14290
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
109 |
mineStr .. "|" .. |
14285 | 110 |
loc("The first hedgehog to kill someone becomes the Mutant.") .. "|" .. |
111 |
loc("The Mutant has super weapons and a lot of health.") .. "|" .. |
|
112 |
loc("The Mutant loses health quickly, but gains health by killing.") .. "|" .. |
|
113 |
" |" .. |
|
114 |
loc("Score points by killing other hedgehogs.") .. "|" .. |
|
115 |
loc("The hedgehog with least points (or most deaths) becomes the Bottom Feeder.") .. "|" .. |
|
116 |
loc("The score and deaths are shown next to the team bar.") .. "|" .. |
|
117 |
string.format(loc("Goal: Score %d points or more to win!"), winScore) .. "|" .. |
|
11909 | 118 |
" |" .. |
14285 | 119 |
loc("Scoring: ") .. "|" .. |
120 |
loc("+2 for becoming the Mutant") .. "|" .. |
|
121 |
loc("+1 to the Mutant for killing anyone") .. "|" .. |
|
122 |
loc("+1 to the Bottom Feeder for killing anyone") .. "|" .. |
|
123 |
loc("-1 to anyone for a suicide") |
|
11015 | 124 |
|
14285 | 125 |
return ruleSet |
11909 | 126 |
|
127 |
end |
|
128 |
||
129 |
function showStartingInfo() |
|
130 |
||
14285 | 131 |
ShowMission(loc("Mutant"), loc("A Hedgewars tag game"), rules(), 1, 5000) |
11015 | 132 |
|
133 |
end |
|
134 |
||
135 |
function onGameInit() |
|
14290
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
136 |
-- Sudden Death would be weird |
11015 | 137 |
WaterRise = 0 |
11909 | 138 |
HealthDecrease = 0 |
14290
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
139 |
-- Weapons must be reset for the Mutant mechanic to work |
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
140 |
EnableGameFlags(gfResetWeps) |
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
141 |
-- King Mode messes with game too much |
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
142 |
DisableGameFlags(gfKing) |
11015 | 143 |
end |
144 |
||
145 |
||
146 |
function limitHogs(gear) |
|
147 |
cnthhs = cnthhs + 1 |
|
13108 | 148 |
if cnthhs > 1 then |
149 |
hogLimitHit = true |
|
150 |
SetEffect(gear, heResurrectable, 0) |
|
151 |
setGearValue(gear, "excess", true) |
|
152 |
DeleteGear(gear) |
|
153 |
end |
|
11015 | 154 |
end |
155 |
||
156 |
function onGameStart() |
|
13798
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
157 |
if ClansCount >= 2 then |
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
158 |
SendHealthStatsOff() |
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
159 |
SendAchievementsStatsOff() |
e874bfe563c7
Make sure scripts don't break w/ only 1 clan
Wuzzy <Wuzzy2@mail.ru>
parents:
13685
diff
changeset
|
160 |
end |
12335
8f693d25be2f
Show traditional winning animation in Mutant again
Wuzzy <almikes@aol.com>
parents:
12288
diff
changeset
|
161 |
SendRankingStatsOff() |
11015 | 162 |
trackTeams() |
163 |
teamScan() |
|
164 |
runOnHogs(saveStuff) |
|
165 |
||
166 |
hogLimitHit = false |
|
167 |
for i=0 , TeamsCount - 1 do |
|
168 |
cnthhs = 0 |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
169 |
runOnHogsInTeam(limitHogs, GetTeamName(i)) |
11015 | 170 |
end |
171 |
if hogLimitHit then |
|
13108 | 172 |
WriteLnToChat(loc("Only one hog per team allowed! Excess hogs will be removed.")) |
11015 | 173 |
end |
174 |
showStartingInfo() |
|
175 |
end |
|
176 |
||
177 |
||
178 |
||
179 |
function giveWeapons(gear) |
|
180 |
if gear == mutant then |
|
181 |
AddAmmo(gear, amRope) |
|
182 |
for i=1, #mt_weapons do |
|
183 |
AddAmmo(gear, mt_weapons[i]) |
|
184 |
end |
|
185 |
||
186 |
else |
|
187 |
for i=1, #hh_weapons do |
|
188 |
AddAmmo(gear,hh_weapons[i]) |
|
189 |
end |
|
190 |
end |
|
191 |
end |
|
192 |
||
193 |
function onAmmoStoreInit() |
|
194 |
||
195 |
SetAmmo(amSkip, 9, 0, 0, 0) |
|
196 |
SetAmmo(amRope,0,1,0,5) |
|
197 |
SetAmmo(amSnowball,0,1,0,1) |
|
198 |
||
199 |
for i=1, #hh_weapons do |
|
200 |
SetAmmo(hh_weapons[i], 0, 0, 0, 1) |
|
201 |
end |
|
202 |
||
203 |
for i=1, #mt_weapons do |
|
204 |
SetAmmo(mt_weapons[i], 0, 3, 0, 1) |
|
205 |
end |
|
206 |
||
207 |
end |
|
208 |
||
209 |
function drawCircles() |
|
210 |
for i = 0, #hhs do |
|
211 |
if circles[hhs[i]] ~= nil then |
|
212 |
DeleteVisualGear(circles[hhs[i]]) |
|
213 |
circles[hhs[i]] = nil |
|
214 |
end |
|
215 |
||
216 |
if hhs[i] ~= CurrentHedgehog then |
|
217 |
if mutant == nil then |
|
218 |
circles[hhs[i]] = AddVisualGear(0, 0, vgtCircle, 0, false) |
|
219 |
SetVisualGearValues(circles[hhs[i]], 0, 0, 0, 0, 0, 0, 0, 22, 5, 0xff000080) |
|
220 |
elseif CurrentHedgehog == mutant then |
|
221 |
circles[hhs[i]] = AddVisualGear(0, 0, vgtCircle, 0, false) |
|
222 |
SetVisualGearValues(circles[hhs[i]], 0, 0, 0, 0, 0, 0, 0, 22, 3, 0xaa000070) |
|
223 |
elseif getGearValue(CurrentHedgehog, "Feeder") and hhs[i] ~= mutant then |
|
224 |
circles[hhs[i]] = AddVisualGear(0, 0, vgtCircle, 0, false) |
|
225 |
SetVisualGearValues(circles[hhs[i]], 0, 0, 0, 0, 0, 0, 0, 22, 3, 0xaa000070) |
|
226 |
elseif hhs[i] == mutant then |
|
227 |
circles[hhs[i]] = AddVisualGear(0, 0, vgtCircle, 0, false) |
|
228 |
SetVisualGearValues(circles[hhs[i]], 0, 0, 0, 0, 0, 0, 0, 22, 5, 0xff000080) |
|
229 |
end |
|
230 |
end |
|
231 |
end |
|
232 |
circleFrame = 0 |
|
233 |
end |
|
234 |
||
235 |
function onNewTurn() |
|
236 |
||
237 |
trackTeams() |
|
238 |
killsCounter = 0 |
|
239 |
||
14290
47af42f7ca8b
Add Mutant game scheme, and adapt Mutant for the newly unlocked settings
Wuzzy <Wuzzy2@mail.ru>
parents:
14287
diff
changeset
|
240 |
if mutant == nil and TotalRounds >= 0 then |
13643 | 241 |
AddCaption( loc("First killer will mutate"), capcolDefault, capgrpGameState ) |
11015 | 242 |
end |
243 |
||
244 |
checkScore() |
|
11909 | 245 |
|
246 |
for i=0, TeamsCount-1 do |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
247 |
SendStat(siClanHealth, getTeamValue(GetTeamName(i), "Score"), GetTeamName(i)) |
11909 | 248 |
end |
249 |
||
11015 | 250 |
giveWeapons(CurrentHedgehog) |
251 |
drawCircles() |
|
252 |
setAIHints() |
|
253 |
kill_reward= numhhs*10 |
|
254 |
||
255 |
if CurrentHedgehog == mutant then |
|
256 |
mt_hurt=true |
|
257 |
disease= mutant_base_disease - numhhs |
|
258 |
else |
|
259 |
mt_hurt=false |
|
260 |
end |
|
261 |
||
262 |
setGearValue(CurrentHedgehog, "Alive", true) |
|
263 |
||
264 |
end |
|
265 |
||
266 |
function countBodies() |
|
267 |
if killsCounter == 2 then |
|
13643 | 268 |
AddCaption(loc("Double kill!"), capcolDefault, capgrpGameState ) |
11015 | 269 |
elseif killsCounter == 3 then |
13643 | 270 |
AddCaption(loc("Mega kill!"), capcolDefault, capgrpGameState ) |
11015 | 271 |
PlaySound(sndRegret) |
272 |
elseif killsCounter == 4 then |
|
13643 | 273 |
AddCaption(loc("Ultra kill!"), capcolDefault, capgrpGameState ) |
11015 | 274 |
elseif killsCounter == 5 then |
13643 | 275 |
AddCaption(loc("Monster kill!"), capcolDefault, capgrpGameState ) |
11015 | 276 |
PlaySound(sndIllGetYou) |
277 |
elseif killsCounter == 6 then |
|
13643 | 278 |
AddCaption(loc("Ludicrous kill!"), capcolDefault, capgrpGameState ) |
11015 | 279 |
PlaySound(sndNutter) |
280 |
elseif killsCounter == 7 then |
|
13643 | 281 |
AddCaption(loc("Holy shit!"), capcolDefault, capgrpGameState ) |
11015 | 282 |
PlaySound(sndLaugh) |
283 |
elseif killsCounter > 8 then |
|
13643 | 284 |
AddCaption(loc("Insanity!"), capcolDefault, capgrpGameState ) |
11909 | 285 |
end |
286 |
||
287 |
if killsCounter > recordKills then |
|
288 |
recordKills = killsCounter |
|
289 |
recordKillsHogName = getGearValue(CurrentHedgehog, "Name") |
|
290 |
recordKillsTeamName = GetHogTeamName(CurrentHedgehog) |
|
11015 | 291 |
end |
292 |
end |
|
293 |
||
294 |
function onGameTick() |
|
295 |
||
296 |
if circleFrame > -1 then |
|
297 |
for i = 0, #hhs do |
|
298 |
if circles[hhs[i]] ~= nil and hhs[i]~= nil then |
|
299 |
hhx, hhy = GetGearPosition(hhs[i]) |
|
13685
09ea1faf97ca
Remove calls to GetVisualGearValues where it's not needed
Wuzzy <Wuzzy2@mail.ru>
parents:
13643
diff
changeset
|
300 |
SetVisualGearValues(circles[hhs[i]], hhx + 1, hhy - 3, 0, 0, 0, 0, 0, 40 - (circleFrame % 25)) |
11015 | 301 |
end |
302 |
end |
|
303 |
||
304 |
circleFrame = circleFrame + 0.06 |
|
305 |
||
306 |
if circleFrame >= 25 then |
|
307 |
for i = 0, #hhs do |
|
308 |
if circles[hhs[i]] ~= nil then |
|
309 |
DeleteVisualGear(circles[hhs[i]]) |
|
310 |
circles[hhs[i]] = nil |
|
311 |
end |
|
312 |
end |
|
313 |
end |
|
314 |
end |
|
315 |
||
14346
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
316 |
if (TurnTimeLeft==0 or band(GetState(mutant), gstHHDriven) == 0) and mt_hurt then |
11015 | 317 |
mt_hurt = false |
318 |
end |
|
319 |
||
14346
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
320 |
-- Mutant's disease |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
321 |
-- Hurt Mutant during its turn time |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
322 |
-- Mutant's health is safe in ready phase |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
323 |
if mt_hurt and mutant~=nil and ReadyTimeLeft == 0 then |
11015 | 324 |
timer = timer + 1 |
14346
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
325 |
if timer > disease_timer then |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
326 |
timer = 0 |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
327 |
local h = GetHealth(mutant)-disease |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
328 |
SetHealth(mutant, h) |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
329 |
-- Low health warning |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
330 |
if h <= 75 then |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
331 |
PlaySound(sndPoisonMoan, mutant) |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
332 |
elseif h <= 150 then |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
333 |
PlaySound(sndPoisonCough, mutant) |
11015 | 334 |
end |
14346
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
335 |
local tag = AddVisualGear(GetX(mutant), GetY(mutant)-5, vgtHealthTag, disease, true) |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
336 |
SetVisualGearValues(tag, nil, nil, nil, nil, nil, nil, nil, nil, nil, GetClanColor(GetHogClan(mutant))) |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
337 |
if GetHealth(mutant)<=0 then |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
338 |
SetHealth(mutant,0) |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
339 |
mt_hurt= false |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
340 |
setGearValue(mutant,"SelfDestruct",true) |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
341 |
EndTurn() |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
342 |
end |
bd2bbd607f5e
Mutant: Don't reduce mutant health in ready phase. Play poison hurt sound as health warning
Wuzzy <Wuzzy2@mail.ru>
parents:
14290
diff
changeset
|
343 |
end |
11015 | 344 |
end |
345 |
||
346 |
end |
|
347 |
||
12988
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
348 |
--[[ |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
349 |
Forces the special mutant/feeder names and hats only to be |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
350 |
taken by those who deserved it. |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
351 |
Names and hats will be changed (and ridiculed) if neccesary. |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
352 |
]] |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
353 |
function exposeIdentityTheft(gear) |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
354 |
local lon = string.lower(GetHogName(gear)) -- lowercase origina name |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
355 |
local name, hat |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
356 |
-- Change name if hog uses a reserved one |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
357 |
if lon == "mutant" or lon == string.lower(loc("Mutant")) then |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
358 |
SetHogName(gear, loc("Identity Thief")) |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
359 |
SetHogHat(gear, "Disguise") |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
360 |
elseif lon == "bottom feeder" or lon == string.lower(loc("Bottom Feeder")) then |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
361 |
-- Word play on "Bottom Feeder". Someone who is low on cotton. :D |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
362 |
-- Either translate literally or make up your ow word play |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
363 |
SetHogName(gear, loc("Cotton Needer")) |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
364 |
SetHogHat(gear, "StrawHat") |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
365 |
end |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
366 |
-- Strip hog off its special hat |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
367 |
if GetHogHat(gear) == mutantHat or GetHogHat(gear) == feederHat then |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
368 |
SetHogHat(gear, "NoHat") |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
369 |
end |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
370 |
end |
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
371 |
|
11015 | 372 |
function saveStuff(gear) |
12988
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
373 |
exposeIdentityTheft(gear) |
11015 | 374 |
setGearValue(gear,"Name",GetHogName(gear)) |
375 |
setGearValue(gear,"Hat",GetHogHat(gear)) |
|
376 |
end |
|
377 |
||
378 |
function armageddon(gear) |
|
379 |
SetState(gear, gstLoser) |
|
13108 | 380 |
SetEffect(gear, heResurrectable, 0) |
11015 | 381 |
SetHealth(gear, 0) |
382 |
end |
|
383 |
||
13019
880662cf41ee
Add team score next to team bars for CTF_Blizard, Control, CTF, Mutant, Space Invasion
Wuzzy <Wuzzy2@mail.ru>
parents:
12988
diff
changeset
|
384 |
function renderScores() |
11015 | 385 |
for i=0, TeamsCount-1 do |
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
386 |
local name = GetTeamName(i) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
387 |
SetTeamLabel(name, string.format(loc("%d | %d"), getTeamValue(name, "Score"), getTeamValue(name, "DeadHogs"))) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
388 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
389 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
390 |
|
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
391 |
function createEndGameStats() |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
392 |
SendStat(siGraphTitle, loc("Score graph")) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
393 |
|
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
394 |
local teamsSorted = {} |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
395 |
for i=0, TeamsCount-1, 1 do |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
396 |
teamsSorted[i+1] = GetTeamName(i) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
397 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
398 |
|
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
399 |
-- Achievements stuff |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
400 |
local achievements = 0 |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
401 |
--- Most kills per turn |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
402 |
if recordKills >= 3 then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
403 |
SendStat(siMaxStepKills, string.format("%d %s (%s)", recordKills, recordKillsHogName, recordKillsTeamName)) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
404 |
achievements = achievements + 1 |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
405 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
406 |
--- Most crates collected |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
407 |
if recordCrates >= 5 then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
408 |
SendStat(siCustomAchievement, string.format(loc("%s (%s) was the greediest hedgehog and collected %d crates."), recordCratesHogName, recordCratesTeamName, recordCrates)) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
409 |
achievements = achievements + 1 |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
410 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
411 |
--- Most suicides |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
412 |
if recordSuicides >= 5 then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
413 |
SendStat(siCustomAchievement, string.format(loc("%s (%s) hate life and suicided %d times."), recordSuicidesHogName, recordSuicidesTeamName, recordSuicides)) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
414 |
achievements = achievements + 1 |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
415 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
416 |
--- Most deaths |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
417 |
if recordDeaths >= 5 then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
418 |
SendStat(siCustomAchievement, string.format(loc("Poor %s (%s) died %d times."), recordDeathsHogName, recordDeathsTeamName, recordDeaths)) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
419 |
achievements = achievements + 1 |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
420 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
421 |
--- Most skips |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
422 |
if recordSkips >= 3 then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
423 |
SendStat(siMaxTurnSkips, string.format("%d %s (%s)", recordSkips, recordSkipsHogName, recordSkipsTeamName)) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
424 |
achievements = achievements + 1 |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
425 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
426 |
--- Total damage |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
427 |
if totalDamage >= 900 then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
428 |
SendStat(siCustomAchievement, string.format(loc("%d damage was dealt in this game."), totalDamage)) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
429 |
achievements = achievements + 1 |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
430 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
431 |
--- Total kills |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
432 |
if totalKills >= 20 or (achievements <= 0 and totalKills >= 1) then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
433 |
SendStat(siKilledHHs, tostring(totalKills)) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
434 |
achievements = achievements + 1 |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
435 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
436 |
|
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
437 |
-- Score and stats stuff |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
438 |
local showScore = "" |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
439 |
table.sort(teamsSorted, function(team1, team2) return getTeamValue(team1, "Score") > getTeamValue(team2, "Score") end) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
440 |
for i=1, TeamsCount do |
14599
50f511588635
Outsource commonly used words in siPointType to QTfrontend
Wuzzy <Wuzzy2@mail.ru>
parents:
14346
diff
changeset
|
441 |
SendStat(siPointType, "!POINTS") |
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
442 |
local score = getTeamValue(teamsSorted[i], "Score") |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
443 |
local deaths = getTeamValue(teamsSorted[i], "DeadHogs") |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
444 |
SendStat(siPlayerKills, score, teamsSorted[i]) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
445 |
|
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
446 |
showScore = showScore .. string.format(loc("%s: %d (deaths: %d)"), teamsSorted[i], score, deaths) .. "|" |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
447 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
448 |
|
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
449 |
if getTeamValue(teamsSorted[1], "Score") == getTeamValue(teamsSorted[2], "Score") then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
450 |
-- The first two teams have the same score! Round is drawn. |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
451 |
return nil |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
452 |
else |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
453 |
|
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
454 |
ShowMission(loc("Mutant"), |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
455 |
loc("Final result"), |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
456 |
string.format(loc("Winner: %s"), teamsSorted[1]) .. "| |" .. loc("Scores:") .. " |" .. |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
457 |
showScore, 0, 15000) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
458 |
|
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
459 |
-- return winning team |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
460 |
return teamsSorted[1] |
11015 | 461 |
end |
462 |
end |
|
463 |
||
464 |
function checkScore() |
|
465 |
local lowest_score_team = nil |
|
466 |
local min_score=nil |
|
467 |
local winTeam = nil |
|
468 |
||
469 |
local only_low_score = true |
|
470 |
||
471 |
for i=0, TeamsCount-1 do |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
472 |
local teamName = GetTeamName(i) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
473 |
if not teamsDead[teamName] then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
474 |
local curr_score = getTeamValue(teamName, "Score") |
11015 | 475 |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
476 |
runOnHogsInTeam(removeFeeder, teamName) |
11015 | 477 |
|
478 |
if curr_score >= winScore then |
|
479 |
gameOver = true |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
480 |
winTeam = teamName |
11015 | 481 |
end |
482 |
||
483 |
if min_score==nil then |
|
484 |
min_score= curr_score |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
485 |
lowest_score_team = teamName |
11015 | 486 |
else |
487 |
if curr_score <= min_score then |
|
488 |
if curr_score == min_score then |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
489 |
if getTeamValue(teamName, "DeadHogs") == getTeamValue(lowest_score_team, "DeadHogs") then |
11015 | 490 |
only_low_score = false |
491 |
else |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
492 |
if getTeamValue(teamName, "DeadHogs") > getTeamValue(lowest_score_team, "DeadHogs") then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
493 |
lowest_score_team = teamName |
11015 | 494 |
end |
495 |
only_low_score = true |
|
496 |
end |
|
497 |
||
498 |
else |
|
499 |
min_score= curr_score |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
500 |
lowest_score_team = teamName |
11015 | 501 |
only_low_score = true |
502 |
end |
|
503 |
end |
|
504 |
end |
|
505 |
end |
|
506 |
end |
|
507 |
||
508 |
if gameOver then |
|
12341
c73521104fac
Mutant: Fix “Boring” taunt being played when becoming the mutant
Wuzzy <almikes@aol.com>
parents:
12335
diff
changeset
|
509 |
EndTurn(true) |
11909 | 510 |
|
511 |
for i=0, TeamsCount-1 do |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
512 |
local teamName = GetTeamName(i) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
513 |
if teamName~=winTeam then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
514 |
runOnHogsInTeam(armageddon, teamName) |
11015 | 515 |
end |
516 |
end |
|
517 |
||
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
518 |
createEndGameStats() |
11015 | 519 |
else |
520 |
||
521 |
if only_low_score then |
|
522 |
runOnHogsInTeam(setFeeder, lowest_score_team) |
|
523 |
end |
|
524 |
||
525 |
if meh == false then |
|
14285 | 526 |
meh = true |
527 |
end |
|
11015 | 528 |
|
529 |
end |
|
530 |
end |
|
531 |
||
532 |
function backToNormal(gear) |
|
533 |
SetHogName(gear, getGearValue(gear,"Name")) |
|
534 |
SetHogHat(gear, 'NoHat') |
|
535 |
SetHogHat(gear, getGearValue(gear,"Hat")) |
|
536 |
setGearValue(mutant,"SelfDestruct",false) |
|
537 |
mt_hurt=false |
|
538 |
mutant=nil |
|
539 |
end |
|
540 |
||
541 |
function setAIHints() |
|
542 |
for i = 0, #hhs do |
|
543 |
if mutant == nil or hhs[i] == mutant or CurrentHedgehog == mutant or getGearValue(CurrentHedgehog, "Feeder") then |
|
13036
434bcdd9562c
Fix inconsistent name of SetGearAIHints
Wuzzy <Wuzzy2@mail.ru>
parents:
13019
diff
changeset
|
544 |
SetGearAIHints(hhs[i], aihUsualProcessing) |
11015 | 545 |
else |
546 |
SetGearAIHints(hhs[i], aihDoesntMatter) |
|
547 |
end |
|
548 |
end |
|
14287
9b5a8147386f
I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents:
14286
diff
changeset
|
549 |
for k,v in pairs(crates) do |
9b5a8147386f
I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents:
14286
diff
changeset
|
550 |
if CurrentHedgehog == mutant and v ~= nil then |
9b5a8147386f
I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents:
14286
diff
changeset
|
551 |
SetGearAIHints(v, aihDoesntMatter) |
14285 | 552 |
else |
14287
9b5a8147386f
I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents:
14286
diff
changeset
|
553 |
SetGearAIHints(v, aihUsualProcessing) |
14285 | 554 |
end |
555 |
end |
|
11015 | 556 |
end |
557 |
||
558 |
function removeFeeder(gear) |
|
559 |
if gear~=nil then |
|
560 |
setGearValue(gear,"Feeder",false) |
|
561 |
if gear~= mutant then |
|
562 |
SetHogName(gear, getGearValue(gear,"Name") ) |
|
563 |
SetHogHat(gear, 'NoHat') |
|
564 |
SetHogHat(gear, getGearValue(gear,"Hat")) |
|
565 |
end |
|
566 |
end |
|
567 |
end |
|
568 |
||
569 |
function setFeeder(gear) |
|
570 |
if gear~= mutant and gear~= nil then |
|
11909 | 571 |
SetHogName(gear, loc("Bottom Feeder")) |
12988
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
572 |
SetHogHat(gear, feederHat) |
11015 | 573 |
setGearValue(gear,"Feeder", true) |
574 |
end |
|
575 |
end |
|
576 |
||
577 |
function setMutantStuff(gear) |
|
578 |
mutant = gear |
|
579 |
||
11909 | 580 |
SetHogName(gear, loc("Mutant")) |
12988
a15413d896c3
Mutant: Force special mutant/feeder hat+name to be only hold by those who deserved it
Wuzzy <Wuzzy2@mail.ru>
parents:
12940
diff
changeset
|
581 |
SetHogHat(gear, mutantHat) |
11015 | 582 |
SetHealth(gear, ( mutant_base_health + numhhs*25) ) |
583 |
SetEffect(gear, hePoisoned, 1) |
|
584 |
setGearValue(mutant,"SelfDestruct",false) |
|
585 |
setGearValue(gear, "Feeder", false) |
|
586 |
||
11909 | 587 |
AddCaption(string.format(loc("%s has mutated! +2 points"), getGearValue(gear, "Name")), GetClanColor(GetHogClan(gear)), capgrpMessage) |
11015 | 588 |
|
12430
c461a224ec09
Mutant: Fix turn skip of next hog after mutating when TurnTimeLeft = 0
Wuzzy <almikes@aol.com>
parents:
12341
diff
changeset
|
589 |
if TurnTimeLeft > 0 then |
c461a224ec09
Mutant: Fix turn skip of next hog after mutating when TurnTimeLeft = 0
Wuzzy <almikes@aol.com>
parents:
12341
diff
changeset
|
590 |
EndTurn(true) |
c461a224ec09
Mutant: Fix turn skip of next hog after mutating when TurnTimeLeft = 0
Wuzzy <almikes@aol.com>
parents:
12341
diff
changeset
|
591 |
end |
11015 | 592 |
|
593 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false) |
|
594 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false) |
|
595 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false) |
|
596 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false) |
|
597 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false) |
|
598 |
PlaySound(sndSuddenDeath) |
|
599 |
end |
|
600 |
||
601 |
function teamScan() |
|
602 |
||
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
603 |
for j=0, TeamsCount-1 do |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
604 |
teamName = GetTeamName(j) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
605 |
teamsDead[teamName] = false |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
606 |
setTeamValue(teamName, "Score",0) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
607 |
setTeamValue(teamName, "Suicides",0) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
608 |
setTeamValue(teamName, "Skips",0) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
609 |
setTeamValue(teamName, "Crates",0) |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
610 |
setTeamValue(teamName, "DeadHogs",0) |
11015 | 611 |
end |
612 |
||
13019
880662cf41ee
Add team score next to team bars for CTF_Blizard, Control, CTF, Mutant, Space Invasion
Wuzzy <Wuzzy2@mail.ru>
parents:
12988
diff
changeset
|
613 |
renderScores() |
880662cf41ee
Add team score next to team bars for CTF_Blizard, Control, CTF, Mutant, Space Invasion
Wuzzy <Wuzzy2@mail.ru>
parents:
12988
diff
changeset
|
614 |
|
11015 | 615 |
---***--- |
616 |
end |
|
617 |
||
618 |
function set_Mutant_and_Score(gear) |
|
619 |
||
620 |
local curr_team = GetHogTeamName(CurrentHedgehog) |
|
621 |
||
622 |
if gear == CurrentHedgehog then |
|
623 |
if CurrentHedgehog == mutant then |
|
624 |
PlaySound(sndHomerun) |
|
625 |
if getGearValue(gear, "SelfDestruct")==false then |
|
626 |
decreaseTeamValue(curr_team,"Score") |
|
627 |
end |
|
628 |
backToNormal(gear) |
|
629 |
else |
|
630 |
decreaseTeamValue(curr_team,"Score") |
|
631 |
end |
|
632 |
||
633 |
else |
|
634 |
if gear == mutant then |
|
635 |
backToNormal(mutant) |
|
636 |
if curr_team ~=GetHogTeamName(gear) then |
|
637 |
if getGearValue(CurrentHedgehog, "Alive") then |
|
638 |
setMutantStuff(CurrentHedgehog) |
|
639 |
setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") + mutant_kill_reward)) |
|
640 |
end |
|
641 |
else |
|
642 |
setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") - team_fire_punishment)) |
|
11909 | 643 |
increaseTeamValue(curr_team,"Suicides") |
644 |
if(getTeamValue(curr_team, "Suicides") > recordSuicides) then |
|
645 |
recordSuicides = getTeamValue(curr_team, "Suicides") |
|
646 |
recordSuicidesHogName = getGearValue(CurrentHedgehog, "Name") |
|
647 |
recordSuicidesTeamName = curr_team |
|
648 |
end |
|
649 |
AddCaption(loc("-1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage) |
|
11015 | 650 |
end |
651 |
else |
|
652 |
if mutant==nil then |
|
653 |
if curr_team ~=GetHogTeamName(gear) then |
|
654 |
if getGearValue(CurrentHedgehog, "Alive") then |
|
655 |
setMutantStuff(CurrentHedgehog) |
|
656 |
setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") + mutant_kill_reward)) |
|
657 |
else |
|
658 |
increaseTeamValue(curr_team,"Score") |
|
659 |
end |
|
660 |
else |
|
661 |
setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") - team_fire_punishment)) |
|
11909 | 662 |
increaseTeamValue(curr_team,"Suicides") |
663 |
if(getTeamValue(curr_team, "Suicides") > recordSuicides) then |
|
664 |
recordSuicides = getTeamValue(curr_team, "Suicides") |
|
665 |
recordSuicidesHogName = getGearValue(CurrentHedgehog, "Name") |
|
666 |
recordSuicidesTeamName = curr_team |
|
667 |
end |
|
668 |
AddCaption(loc("-1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage) |
|
11015 | 669 |
end |
670 |
else |
|
671 |
if curr_team ~=GetHogTeamName(gear) then |
|
672 |
if CurrentHedgehog==mutant and getGearValue(mutant,"SelfDestruct")==false then |
|
12940
39b7b3ed619e
Add healing visual effect + heal msg in scripts
Wuzzy <Wuzzy2@mail.ru>
parents:
12430
diff
changeset
|
673 |
HealHog(CurrentHedgehog, kill_reward) |
12288
a5a7d0c6d3f3
Fix incorrect Mutant score message color
Wuzzy <almikes@aol.com>
parents:
11909
diff
changeset
|
674 |
AddCaption(loc("+1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage) |
11015 | 675 |
increaseTeamValue(curr_team,"Score") |
676 |
end |
|
677 |
if getGearValue(CurrentHedgehog,"Feeder") then |
|
678 |
increaseTeamValue(curr_team,"Score") |
|
11909 | 679 |
AddCaption(loc("+1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage) |
11015 | 680 |
end |
681 |
else |
|
682 |
setTeamValue(curr_team,"Score",(getTeamValue(curr_team,"Score") - team_fire_punishment)) |
|
11909 | 683 |
AddCaption(loc("+1 point"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpMessage) |
11015 | 684 |
end |
685 |
end |
|
686 |
end |
|
687 |
end |
|
688 |
end |
|
689 |
||
690 |
function onGearResurrect(gear) |
|
691 |
if not gameOver then |
|
692 |
if GetGearType(gear) == gtHedgehog then |
|
693 |
||
694 |
increaseTeamValue(GetHogTeamName(gear), "DeadHogs") |
|
11909 | 695 |
totalKills = totalKills + 1 |
696 |
if(getTeamValue(GetHogTeamName(gear), "DeadHogs") > recordDeaths) then |
|
697 |
recordDeaths = getTeamValue(GetHogTeamName(gear), "DeadHogs") |
|
698 |
recordDeathsHogName = getGearValue(gear, "Name") |
|
699 |
recordDeathsTeamName = GetHogTeamName(gear) |
|
700 |
end |
|
11015 | 701 |
|
702 |
if gear==CurrentHedgehog then |
|
703 |
setGearValue(CurrentHedgehog, "Alive", false) |
|
704 |
end |
|
705 |
set_Mutant_and_Score(gear) |
|
706 |
if gear~=CurrentHedgehog then |
|
707 |
killsCounter = killsCounter + 1 |
|
708 |
countBodies() |
|
709 |
end |
|
710 |
AddVisualGear(GetX(gear), GetY(gear), vgtSmokeRing, 0, false) |
|
711 |
PlaySound(sndWhack) |
|
13019
880662cf41ee
Add team score next to team bars for CTF_Blizard, Control, CTF, Mutant, Space Invasion
Wuzzy <Wuzzy2@mail.ru>
parents:
12988
diff
changeset
|
712 |
renderScores() |
11015 | 713 |
end |
714 |
end |
|
715 |
end |
|
716 |
||
11909 | 717 |
function onGearDamage(gear, damage) |
14285 | 718 |
if not gameOver and GetGearType(gear) == gtHedgehog then |
719 |
totalDamage = totalDamage + damage |
|
720 |
end |
|
11909 | 721 |
end |
722 |
||
13172
159004144897
Use onSkipTurn in scripts to detect turn skips
Wuzzy <Wuzzy2@mail.ru>
parents:
13108
diff
changeset
|
723 |
function onSkipTurn() |
14285 | 724 |
-- Record skips for achievement |
725 |
local team = GetHogTeamName(CurrentHedgehog) |
|
726 |
increaseTeamValue(team, "Skips") |
|
727 |
if(getTeamValue(team, "Skips") > recordSkips) then |
|
728 |
recordSkips = getTeamValue(team, "Skips") |
|
729 |
recordSkipsHogName = getGearValue(CurrentHedgehog, "Name") |
|
730 |
recordSkipsTeamName = team |
|
731 |
end |
|
11909 | 732 |
end |
733 |
||
11015 | 734 |
function onGearAdd(gear) |
735 |
||
736 |
-- Catch hedgehogs for the tracker |
|
737 |
if GetGearType(gear) == gtHedgehog then |
|
738 |
trackGear(gear) |
|
739 |
hhs[numhhs] = gear |
|
740 |
numhhs = numhhs + 1 |
|
741 |
SetEffect(gear, heResurrectable, 1) |
|
14285 | 742 |
elseif GetGearType(gear) == gtCase then |
14287
9b5a8147386f
I think this is correct way to use iterate over it as a hashmap. don't have much lua practice
nemo
parents:
14286
diff
changeset
|
743 |
crates[gear] = gear |
13219
b229b3259a76
Mutant: Fix graph title on game draw
Wuzzy <Wuzzy2@mail.ru>
parents:
13172
diff
changeset
|
744 |
elseif GetGearType(gear) == gtATFinishGame then |
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
745 |
if not gameOver then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
746 |
local winner = createEndGameStats() |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
747 |
if winner then |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
748 |
SendStat(siGameResult, string.format(loc("%s wins!"), winner)) |
13643 | 749 |
AddCaption(string.format(loc("%s wins!"), winner), capcolDefault, capgrpGameState) |
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
750 |
end |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
751 |
gameOver = true |
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
752 |
end |
11015 | 753 |
end |
754 |
end |
|
755 |
||
756 |
function checkEmptyTeam (teamName) |
|
757 |
for i=0 , #hhs do |
|
758 |
if hhs[i]~=nil then |
|
759 |
if teamName == GetHogTeamName(hhs[i]) then |
|
760 |
return false |
|
761 |
end |
|
762 |
end |
|
763 |
end |
|
764 |
return true |
|
765 |
end |
|
766 |
||
767 |
function onGearDelete(gear) |
|
768 |
-- Remove hogs that are gone |
|
769 |
if GetGearType(gear) == gtHedgehog then |
|
770 |
numhhs = numhhs - 1 |
|
771 |
||
772 |
local found |
|
773 |
for i=0, #hhs do |
|
774 |
if hhs[i] == gear then |
|
775 |
found = i |
|
776 |
break |
|
777 |
end |
|
778 |
end |
|
779 |
for i = found, #hhs - 1 do |
|
780 |
hhs[i] = hhs[i + 1] |
|
781 |
end |
|
782 |
hhs[#hhs] = nil |
|
783 |
||
784 |
local t_name = GetHogTeamName(gear) |
|
785 |
if checkEmptyTeam(t_name) then |
|
786 |
for i = 0, TeamsCount - 1 do |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
787 |
if GetTeamName(i) == t_name then |
11015 | 788 |
found = i |
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
789 |
teamsDead[t_name] = true |
11015 | 790 |
break |
791 |
end |
|
792 |
end |
|
793 |
end |
|
13220
1c390781f72f
Mutant: When game ends prematurely due to missing land, declare highest-scoring team the winner
Wuzzy <Wuzzy2@mail.ru>
parents:
13219
diff
changeset
|
794 |
if getGearValue(gear, "excess") ~= true and band(GetState(gear), gstDrowning) == 0 then |
13108 | 795 |
AddVisualGear(GetX(gear), GetY(gear), vgtBigExplosion, 0, false) |
796 |
end |
|
11015 | 797 |
trackDeletion(gear) |
11909 | 798 |
elseif GetGearType(gear) == gtCase then |
14285 | 799 |
crates[gear] = nil |
11909 | 800 |
-- Check if a crate has been collected |
801 |
if band(GetGearMessage(gear), gmDestroy) ~= 0 and CurrentHedgehog ~= nil then |
|
802 |
-- Update crate collection achievement |
|
803 |
increaseTeamValue(GetHogTeamName(CurrentHedgehog), "Crates") |
|
804 |
if(getTeamValue(GetHogTeamName(CurrentHedgehog), "Crates") > recordCrates) then |
|
805 |
recordCrates = getTeamValue(GetHogTeamName(CurrentHedgehog), "Crates") |
|
806 |
recordCratesHogName = getGearValue(CurrentHedgehog, "Name") |
|
807 |
recordCratesTeamName = GetHogTeamName(CurrentHedgehog) |
|
808 |
end |
|
809 |
end |
|
11015 | 810 |
end |
811 |
end |
|
812 |
||
813 |
function onParameters() |
|
814 |
parseParams() |
|
815 |
winScore = tonumber(params["winscore"]) or winScore |
|
816 |
end |
|
817 |
||
818 |
--[[ |
|
819 |
S T A R R I N G |
|
820 |
prof - Coding, implementing and evangelism |
|
821 |
vos - Initial idea and script improvements |
|
822 |
mikade - Moving the `how to play` into the game so that people know `how to play`, and whitespace :D |
|
823 |
--]] |