author | Wuzzy <almikes@aol.com> |
Tue, 11 Apr 2017 03:44:56 +0200 | |
changeset 12226 | 3ec0261e01f0 |
parent 12088 | 1da37e2ba6fd |
child 12227 | 5afbffc6725d |
permissions | -rw-r--r-- |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
1 |
------------------- ABOUT ---------------------- |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
2 |
-- |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
3 |
-- In this cold planet hero seeks for a part of the |
9622
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
4 |
-- antigravity device. He has to capture Thanta who |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
5 |
-- knows where the device is hidden. Hero will be |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
6 |
-- able to use only the ice gun for this mission. |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
7 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
8 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
9 |
HedgewarsScriptLoad("/Scripts/Animate.lua") |
9578
16139270448f
save main missions' status
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9574
diff
changeset
|
10 |
HedgewarsScriptLoad("/Missions/Campaign/A_Space_Adventure/global_functions.lua") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
11 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
12 |
----------------- VARIABLES -------------------- |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
13 |
-- globals |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9490
diff
changeset
|
14 |
local missionName = loc("A frozen adventure") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
15 |
local heroAtAntiFlyArea = false |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
16 |
local heroVisitedAntiFlyArea = false |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
17 |
local heroAtFinalStep = false |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
18 |
local iceGunTaken = false |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
19 |
local checkPointReached = 1 -- 1 is normal spawn |
9622
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
20 |
local heroDamageAtCurrentTurn = 0 |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
21 |
-- dialogs |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
22 |
local dialog01 = {} |
9400
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
23 |
local dialog02 = {} |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
24 |
-- mission objectives |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
25 |
local goals = { |
12226
3ec0261e01f0
Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents:
12088
diff
changeset
|
26 |
[dialog01] = {missionName, loc("Getting ready"), loc("Collect the icegun and get the device part from Thanta") .. loc("Mines time: 0 seconds"), 1, 4500}, |
9757 | 27 |
[dialog02] = {missionName, loc("Win"), loc("Congratulations, you collected the device part!"), 1, 3500}, |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
28 |
} |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
29 |
-- crates |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
30 |
local icegunY = 1950 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
31 |
local icegunX = 260 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
32 |
-- hogs |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
33 |
local hero = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
34 |
local ally = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
35 |
local bandit1 = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
36 |
local bandit2 = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
37 |
local bandit3 = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
38 |
local bandit4 = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
39 |
local bandit5 = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
40 |
-- teams |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
41 |
local teamA = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
42 |
local teamB = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
43 |
local teamC = {} |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
44 |
-- hedgehogs values |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9490
diff
changeset
|
45 |
hero.name = loc("Hog Solo") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
46 |
hero.x = 340 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
47 |
hero.y = 1840 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
48 |
hero.dead = false |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9490
diff
changeset
|
49 |
ally.name = loc("Paul McHoggy") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
50 |
ally.x = 300 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
51 |
ally.y = 1840 |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9490
diff
changeset
|
52 |
bandit1.name = loc("Thanta") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
53 |
bandit1.x = 3240 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
54 |
bandit1.y = 1280 |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
55 |
bandit1.dead = false |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
56 |
bandit1.frozen = false |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
57 |
bandit1.roundsToUnfreeze = 0 |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9490
diff
changeset
|
58 |
bandit2.name = loc("Billy Frost") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
59 |
bandit2.x = 1480 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
60 |
bandit2.y = 1990 |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9490
diff
changeset
|
61 |
bandit3.name = loc("Ice Jake") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
62 |
bandit3.x = 1860 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
63 |
bandit3.y = 1150 |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9490
diff
changeset
|
64 |
bandit4.name = loc("John Snow") |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
65 |
bandit4.x = 3200 |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
66 |
bandit4.y = 970 |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
67 |
bandit4.frozen = false |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
68 |
bandit4.roundsToUnfreeze = 0 |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9490
diff
changeset
|
69 |
bandit5.name = loc("White Tee") |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
70 |
bandit5.x = 3280 |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
71 |
bandit5.y = 600 |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
72 |
bandit5.frozen = false |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
73 |
bandit5.roundsToUnfreeze = 0 |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
74 |
teamA.name = loc("Allies") |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
75 |
teamA.color = tonumber("FF0000",16) -- red |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
76 |
teamB.name = loc("Frozen Bandits") |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
77 |
teamB.color = tonumber("0033FF",16) -- blues |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
78 |
teamC.name = loc("Hog Solo") |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
79 |
teamC.color = tonumber("38D61C",16) -- green |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
80 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
81 |
-------------- LuaAPI EVENT HANDLERS ------------------ |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
82 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
83 |
function onGameInit() |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
84 |
Seed = 1 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
85 |
TurnTime = 25000 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
86 |
CaseFreq = 0 |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
87 |
MinesNum = 0 |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
88 |
MinesTime = 1 |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
89 |
Explosives = 0 |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
90 |
Delay = 3 |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
91 |
Map = "ice01_map" |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
92 |
Theme = "Snow" |
9758 | 93 |
|
9398
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
94 |
-- get the check point |
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
95 |
checkPointReached = initCheckpoint("ice01") |
9398
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
96 |
-- get hero health |
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
97 |
local heroHealth = 100 |
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
98 |
if tonumber(GetCampaignVar("HeroHealth")) then |
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
99 |
heroHealth = tonumber(GetCampaignVar("HeroHealth")) |
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
100 |
end |
9758 | 101 |
|
9398
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
102 |
if heroHealth ~= 100 then |
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
103 |
heroHealth = heroHealth + 5 |
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
104 |
if heroHealth > 100 then |
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
105 |
heroHealth = 100 |
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
106 |
end |
9758 | 107 |
SaveCampaignVar("HeroHealth", heroHealth) |
9398
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
108 |
end |
9758 | 109 |
|
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
110 |
-- Hog Solo |
12049
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11692
diff
changeset
|
111 |
AddTeam(teamC.name, teamC.color, "Bone", "Island", "HillBilly", "hedgewars") |
9398
3f2ec6e1032f
increase health by 5 everytime hero spawn on checkpoint3
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9396
diff
changeset
|
112 |
hero.gear = AddHog(hero.name, 0, heroHealth, "war_desertgrenadier1") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
113 |
AnimSetGearPosition(hero.gear, hero.x, hero.y) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
114 |
HogTurnLeft(hero.gear, true) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
115 |
-- Ally |
12049
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11692
diff
changeset
|
116 |
AddTeam(teamA.name, teamA.color, "Bone", "Island", "HillBilly", "cm_face") |
9629 | 117 |
ally.gear = AddHog(ally.name, 0, 100, "war_airwarden02") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
118 |
AnimSetGearPosition(ally.gear, ally.x, ally.y) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
119 |
-- Frozen Bandits |
12049
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11692
diff
changeset
|
120 |
AddTeam(teamB.name, teamB.color, "Bone", "Island", "HillBilly", "cm_pirate") |
9629 | 121 |
bandit1.gear = AddHog(bandit1.name, 1, 120, "Santa") |
9758 | 122 |
AnimSetGearPosition(bandit1.gear, bandit1.x, bandit1.y) |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
123 |
HogTurnLeft(bandit1.gear, true) |
9629 | 124 |
bandit2.gear = AddHog(bandit2.name, 1, 100, "ushanka") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
125 |
AnimSetGearPosition(bandit2.gear, bandit2.x, bandit2.y) |
9629 | 126 |
bandit3.gear = AddHog(bandit3.name, 1, 100, "thug") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
127 |
AnimSetGearPosition(bandit3.gear, bandit3.x, bandit3.y) |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
128 |
bandit4.gear = AddHog(bandit4.name, 1, 40, "tophats") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
129 |
AnimSetGearPosition(bandit4.gear, bandit4.x, bandit4.y) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
130 |
HogTurnLeft(bandit4.gear, true) |
9629 | 131 |
bandit5.gear = AddHog(bandit5.name, 1, 40, "Sniper") |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
132 |
AnimSetGearPosition(bandit5.gear, bandit5.x, bandit5.y) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
133 |
HogTurnLeft(bandit5.gear, true) |
9758 | 134 |
|
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
135 |
if checkPointReached == 1 then |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
136 |
-- Start of the game |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
137 |
elseif checkPointReached == 2 then |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
138 |
iceGunTaken = true |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
139 |
AnimSetGearPosition(hero.gear, 840, 1650) |
9758 | 140 |
elseif checkPointReached == 3 then |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
141 |
iceGunTaken = true |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
142 |
heroAtFinalStep = true |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
143 |
heroVisitedAntiFlyArea = true |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
144 |
AnimSetGearPosition(hero.gear, 1450, 910) |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
145 |
end |
9758 | 146 |
|
12088
1da37e2ba6fd
Fix A Space Adventure Missions allowing player to walk before 1st animation and screw things up
Wuzzy <almikes@aol.com>
parents:
12049
diff
changeset
|
147 |
AnimInit(true) |
9758 | 148 |
AnimationSetup() |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
149 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
150 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
151 |
function onGameStart() |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
152 |
AnimWait(hero.gear, 3000) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
153 |
FollowGear(hero.gear) |
9758 | 154 |
|
9384
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
155 |
-- Add mines |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
156 |
AddGear(1612, 940, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
157 |
AddGear(1622, 945, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
158 |
AddGear(1645, 950, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
159 |
AddGear(1655, 960, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
160 |
AddGear(1665, 965, gtMine, 0, 0, 0, 0) |
9758 | 161 |
|
9384
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
162 |
AddGear(1800, 1000, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
163 |
AddGear(1810, 1005, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
164 |
AddGear(1820, 1010, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
165 |
AddGear(1830, 1015, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
166 |
AddGear(1840, 1020, gtMine, 0, 0, 0, 0) |
9758 | 167 |
|
9384
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
168 |
AddGear(1900, 1020, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
169 |
AddGear(1910, 1020, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
170 |
AddGear(1920, 1020, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
171 |
AddGear(1930, 1030, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
172 |
AddGear(1940, 1040, gtMine, 0, 0, 0, 0) |
9758 | 173 |
|
9384
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
174 |
AddGear(2130, 1110, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
175 |
AddGear(2140, 1120, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
176 |
AddGear(2180, 1120, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
177 |
AddGear(2200, 1130, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
178 |
AddGear(2210, 1130, gtMine, 0, 0, 0, 0) |
9758 | 179 |
|
9384
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
180 |
local x=2300 |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
181 |
local step=0 |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
182 |
while x<3100 do |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
183 |
AddGear(x, 1150, gtMine, 0, 0, 0, 0) |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
184 |
step = step + 1 |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
185 |
if step == 5 then |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
186 |
step = 0 |
9810
54c0fdec4600
changing math functions that may cause desyncs
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9759
diff
changeset
|
187 |
x = x + GetRandom(201)+100 |
9384
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
188 |
else |
9810
54c0fdec4600
changing math functions that may cause desyncs
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9759
diff
changeset
|
189 |
x = x + GetRandom(21)+10 |
9384
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
190 |
end |
557ae509547b
added mines to the ice planet01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9346
diff
changeset
|
191 |
end |
9758 | 192 |
|
9490
b93448b75fa4
fix bugs and some changes regarting the difficulty in desert02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9410
diff
changeset
|
193 |
AddEvent(onHeroDeath, {hero.gear}, heroDeath, {hero.gear}, 0) |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
194 |
AddEvent(onHeroFinalStep, {hero.gear}, heroFinalStep, {hero.gear}, 0) |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
195 |
AddEvent(onAntiFlyArea, {hero.gear}, antiFlyArea, {hero.gear}, 1) |
9734
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
196 |
AddEvent(onAntiFlyAreaVelocity, {hero.gear}, antiFlyAreaVelocity, {hero.gear}, 1) |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
197 |
AddEvent(onNonAntiFlyArea, {hero.gear}, nonAntiFlyArea, {hero.gear}, 1) |
9624
51e22761679d
fixed bug making the game not end when thanta was dead,reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9623
diff
changeset
|
198 |
AddEvent(onThantaDeath, {bandit1.gear}, thantaDeath, {bandit1.gear}, 0) |
9622
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
199 |
AddEvent(onHeroWin, {hero.gear}, heroWin, {hero.gear}, 0) |
9758 | 200 |
|
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
201 |
AddAmmo(hero.gear, amJetpack, 99) |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
202 |
AddAmmo(bandit1.gear, amBazooka, 5) |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
203 |
AddAmmo(bandit2.gear, amBazooka, 4) |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
204 |
AddAmmo(bandit3.gear, amMine, 2) |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
205 |
AddAmmo(bandit3.gear, amGrenade, 3) |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
206 |
AddAmmo(bandit4.gear, amBazooka, 5) |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
207 |
AddAmmo(bandit5.gear, amBazooka, 5) |
9758 | 208 |
|
9759
0efa9672c000
* turned out the no-flight zone is also a no-climb-and-progress zone
sheepluva
parents:
9758
diff
changeset
|
209 |
goToThantaString = loc("Go to Thanta and get the device part!") |
0efa9672c000
* turned out the no-flight zone is also a no-climb-and-progress zone
sheepluva
parents:
9758
diff
changeset
|
210 |
|
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
211 |
if checkPointReached == 1 then |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
212 |
AddAmmo(hero.gear, amBazooka, 1) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
213 |
SpawnAmmoCrate(icegunX, icegunY, amIceGun) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
214 |
AddEvent(onColumnCheckPoint, {hero.gear}, columnCheckPoint, {hero.gear}, 0) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
215 |
AddEvent(onHeroAtIceGun, {hero.gear}, heroAtIceGun, {hero.gear}, 0) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
216 |
AddAnim(dialog01) |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
217 |
elseif checkPointReached == 2 then |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
218 |
AddAmmo(hero.gear, amIceGun, 8) |
9759
0efa9672c000
* turned out the no-flight zone is also a no-climb-and-progress zone
sheepluva
parents:
9758
diff
changeset
|
219 |
AnimCaption(hero.gear, goToThantaString, 5000) |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
220 |
elseif checkPointReached == 3 then |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
221 |
AddAmmo(hero.gear, amIceGun, 6) |
9759
0efa9672c000
* turned out the no-flight zone is also a no-climb-and-progress zone
sheepluva
parents:
9758
diff
changeset
|
222 |
AnimCaption(hero.gear, goToThantaString, 5000) |
9402
8e9d062f9a48
ice01 custom stats for defeat
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9400
diff
changeset
|
223 |
end |
9758 | 224 |
|
9402
8e9d062f9a48
ice01 custom stats for defeat
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9400
diff
changeset
|
225 |
SendHealthStatsOff() |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
226 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
227 |
|
9622
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
228 |
function onNewTurn() |
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
229 |
heroDamageAtCurrentTurn = 0 |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
230 |
-- round has to start if hero goes near the column |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
231 |
if not heroVisitedAntiFlyArea and CurrentHedgehog ~= hero.gear then |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
232 |
TurnTimeLeft = 0 |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
233 |
elseif not heroVisitedAntiFlyArea and CurrentHedgehog == hero.gear then |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
234 |
TurnTimeLeft = -1 |
9758 | 235 |
elseif not heroAtFinalStep and (CurrentHedgehog == bandit1.gear or CurrentHedgehog == bandit4.gear or CurrentHedgehog == bandit5.gear) then |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
236 |
AnimSwitchHog(hero.gear) |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
237 |
TurnTimeLeft = 0 |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
238 |
elseif heroAtFinalStep and (CurrentHedgehog == bandit2.gear or CurrentHedgehog == bandit3.gear) then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
239 |
if (GetHealth(bandit1.gear) and GetEffect(bandit1.gear,heFrozen) > 256) and |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
240 |
((GetHealth(bandit4.gear) and GetEffect(bandit4.gear,heFrozen) > 256) or not GetHealth(bandit4.gear)) and |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
241 |
((GetHealth(bandit5.gear) and GetEffect(bandit5.gear,heFrozen) > 256) or not GetHealth(bandit5.gear)) then |
9396
fb56c2225f25
frozen hogs bug seems fixed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9394
diff
changeset
|
242 |
TurnTimeLeft = 0 |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
243 |
else |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
244 |
AnimSwitchHog(hero.gear) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
245 |
TurnTimeLeft = 0 |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
246 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
247 |
elseif CurrentHedgehog == ally.gear then |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
248 |
TurnTimeLeft = 0 |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
249 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
250 |
-- frozen hogs accounting |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
251 |
if CurrentHedgehog == hero.gear and heroAtFinalStep and TurnTimeLeft > 0 then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
252 |
if bandit1.frozen then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
253 |
if bandit1.roundsToUnfreeze == 0 then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
254 |
SetEffect(bandit1.gear, heFrozen, 255) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
255 |
bandit1.frozen = false |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
256 |
else |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
257 |
bandit1.roundsToUnfreeze = bandit1.roundsToUnfreeze - 1 |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
258 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
259 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
260 |
if bandit4.frozen then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
261 |
if bandit4.roundsToUnfreeze == 0 then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
262 |
SetEffect(bandit4.gear, heFrozen, 255) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
263 |
bandit4.frozen = false |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
264 |
else |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
265 |
bandit4.roundsToUnfreeze = bandit4.roundsToUnfreeze - 1 |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
266 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
267 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
268 |
if bandit5.frozen then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
269 |
if bandit5.roundsToUnfreeze == 0 then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
270 |
SetEffect(bandit5.gear, heFrozen, 255) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
271 |
bandit5.frozen = false |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
272 |
else |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
273 |
bandit5.roundsToUnfreeze = bandit5.roundsToUnfreeze - 1 |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
274 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
275 |
end |
9392
0dd0adee6831
cleaning up debug prints
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9390
diff
changeset
|
276 |
else |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
277 |
if bandit1.frozen then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
278 |
SetEffect(bandit1.gear, heFrozen, 9999999999) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
279 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
280 |
if bandit4.frozen then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
281 |
SetEffect(bandit4.gear, heFrozen, 9999999999) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
282 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
283 |
if bandit5.frozen then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
284 |
SetEffect(bandit5.gear, heFrozen, 9999999999) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
285 |
end |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
286 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
287 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
288 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
289 |
function onGameTick() |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
290 |
AnimUnWait() |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
291 |
if ShowAnimation() == false then |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
292 |
return |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
293 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
294 |
ExecuteAfterAnimations() |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
295 |
CheckEvents() |
9758 | 296 |
|
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
297 |
if GetEffect(bandit1.gear, heFrozen) > 256 and not bandit1.frozen then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
298 |
bandit1.frozen = true |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
299 |
SetEffect(bandit1.gear, heFrozen, 9999999999) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
300 |
bandit1.roundsToUnfreeze = 1 |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
301 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
302 |
if GetEffect(bandit4.gear, heFrozen) > 256 and not bandit4.frozen then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
303 |
bandit4.frozen = true |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
304 |
SetEffect(bandit4.gear, heFrozen, 9999999999) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
305 |
bandit4.roundsToUnfreeze = 2 |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
306 |
end |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
307 |
if GetEffect(bandit5.gear, heFrozen) > 256 and not bandit5.frozen then |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
308 |
bandit5.frozen = true |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
309 |
SetEffect(bandit5.gear, heFrozen, 9999999999) |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
310 |
bandit5.roundsToUnfreeze = 2 |
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
311 |
end |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
312 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
313 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
314 |
function onAmmoStoreInit() |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
315 |
SetAmmo(amIceGun, 0, 0, 0, 8) |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
316 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
317 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
318 |
function onGearDelete(gear) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
319 |
if gear == hero.gear then |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
320 |
hero.dead = true |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
321 |
elseif gear == bandit1.gear then |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
322 |
bandit1.dead = true |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
323 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
324 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
325 |
|
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
326 |
function onPrecise() |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
327 |
if GameTime > 3000 then |
9758 | 328 |
SetAnimSkip(true) |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
329 |
end |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
330 |
end |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
331 |
|
9622
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
332 |
function onGearDamage(gear, damage) |
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
333 |
if gear == hero.gear then |
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
334 |
heroDamageAtCurrentTurn = heroDamageAtCurrentTurn + damage |
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
335 |
end |
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
336 |
end |
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
337 |
|
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
338 |
-------------- EVENTS ------------------ |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
339 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
340 |
function onAntiFlyArea(gear) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
341 |
if not hero.dead and (GetX(gear) > 860 or GetY(gear) < 1400) and not heroAtAntiFlyArea then |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
342 |
return true |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
343 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
344 |
return false |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
345 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
346 |
|
9734
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
347 |
function onAntiFlyAreaVelocity(gear) |
9759
0efa9672c000
* turned out the no-flight zone is also a no-climb-and-progress zone
sheepluva
parents:
9758
diff
changeset
|
348 |
if not hero.dead and GetY(gear) < 1300 and GetX(gear) < 1190 then |
9734
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
349 |
return true |
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
350 |
end |
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
351 |
return false |
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
352 |
end |
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
353 |
|
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
354 |
function onNonAntiFlyArea(gear) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
355 |
if not hero.dead and (GetX(gear) < 860 and GetY(gear) > 1400) and heroAtAntiFlyArea then |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
356 |
return true |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
357 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
358 |
return false |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
359 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
360 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
361 |
function onHeroDeath(gear) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
362 |
if hero.dead then |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
363 |
return true |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
364 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
365 |
return false |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
366 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
367 |
|
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
368 |
function onHeroFinalStep(gear) |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
369 |
if not hero.dead and GetY(gear) < 960 and GetX(gear) > 1400 then |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
370 |
return true |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
371 |
end |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
372 |
return false |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
373 |
end |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
374 |
|
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
375 |
function onColumnCheckPoint(gear) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
376 |
if not hero.dead and iceGunTaken and GetX(gear) < 870 and GetX(gear) > 850 and GetY(gear) > 1500 and StoppedGear(gear) then |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
377 |
return true |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
378 |
end |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
379 |
return false |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
380 |
end |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
381 |
|
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
382 |
function onHeroAtIceGun(gear) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
383 |
if not hero.dead and GetX(gear) < icegunX+15 and GetX(gear) > icegunX-15 and GetY(gear) > icegunY-15 and GetY(gear) < icegunY+15 then |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
384 |
return true |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
385 |
end |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
386 |
return false |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
387 |
end |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
388 |
|
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
389 |
function onThantaDeath(gear) |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
390 |
if bandit1.dead then |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
391 |
return true |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
392 |
end |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
393 |
return false |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
394 |
end |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
395 |
|
9394
ccc2a2099370
event for game win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9392
diff
changeset
|
396 |
function onHeroWin(gear) |
9622
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
397 |
if (not hero.dead and not bandit1.dead) and heroDamageAtCurrentTurn == 0 and (GetX(hero.gear)>=GetX(bandit1.gear)-80 |
db9f6b7955ba
fixed hero win the game in case damage has happened to him previously in the same turn reported by Wuzzy
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
398 |
and GetX(hero.gear)<=GetX(bandit1.gear)+80) and (GetY(hero.gear)>=GetY(bandit1.gear)-30 and GetY(hero.gear)<=GetY(bandit1.gear)+30) then |
9394
ccc2a2099370
event for game win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9392
diff
changeset
|
399 |
return true |
ccc2a2099370
event for game win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9392
diff
changeset
|
400 |
end |
ccc2a2099370
event for game win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9392
diff
changeset
|
401 |
return false |
ccc2a2099370
event for game win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9392
diff
changeset
|
402 |
end |
ccc2a2099370
event for game win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9392
diff
changeset
|
403 |
|
9639
6b2ae2eaf1b2
remove unnecessary comments
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9629
diff
changeset
|
404 |
-------------- ACTIONS ------------------ |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
405 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
406 |
function antiFlyArea(gear) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
407 |
heroAtAntiFlyArea = true |
9734
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
408 |
if not heroVisitedAntiFlyArea then |
9758 | 409 |
TurnTimeLeft = 0 |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
410 |
FollowGear(hero.gear) |
9758 | 411 |
AnimSwitchHog(bandit1.gear) |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
412 |
FollowGear(hero.gear) |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
413 |
TurnTimeLeft = 0 |
9758 | 414 |
end |
9734
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
415 |
AddAmmo(hero.gear, amJetpack, 0) |
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
416 |
heroVisitedAntiFlyArea = true |
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
417 |
end |
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
418 |
|
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
419 |
function antiFlyAreaVelocity(gear) |
9759
0efa9672c000
* turned out the no-flight zone is also a no-climb-and-progress zone
sheepluva
parents:
9758
diff
changeset
|
420 |
dx, dy = GetGearVelocity(hero.gear) |
0efa9672c000
* turned out the no-flight zone is also a no-climb-and-progress zone
sheepluva
parents:
9758
diff
changeset
|
421 |
SetGearVelocity(hero.gear, dx, math.max(dy, 0)) |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
422 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
423 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
424 |
function nonAntiFlyArea(gear) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
425 |
heroAtAntiFlyArea = false |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
426 |
AddAmmo(hero.gear, amJetpack, 99) |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
427 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
428 |
|
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
429 |
function heroDeath(gear) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9639
diff
changeset
|
430 |
SendStat(siGameResult, loc("Hog Solo lost, try again!")) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
431 |
SendStat(siCustomAchievement, loc("To win the game you have to stand next to Thanta.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
432 |
SendStat(siCustomAchievement, loc("Most of the time you'll be able to use the icegun only.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
433 |
SendStat(siCustomAchievement, loc("Use the bazooka and the flying saucer to get the icegun.")) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9639
diff
changeset
|
434 |
SendStat(siPlayerKills,'1',teamB.name) |
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9639
diff
changeset
|
435 |
SendStat(siPlayerKills,'0',teamC.name) |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
436 |
EndGame() |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
437 |
end |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
438 |
|
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
439 |
function heroFinalStep(gear) |
9390
9956b1fbac8b
rounds that hogs remain frozen seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9388
diff
changeset
|
440 |
heroAtFinalStep = true |
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
441 |
saveCheckpoint("3") |
9490
b93448b75fa4
fix bugs and some changes regarting the difficulty in desert02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9410
diff
changeset
|
442 |
SaveCampaignVar("HeroHealth", GetHealth(hero.gear)) |
9346
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
443 |
end |
1245c7636380
more changes, events and bots fighting - also map drawing corrections
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9344
diff
changeset
|
444 |
|
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
445 |
function columnCheckPoint(gear) |
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
446 |
saveCheckpoint("2") |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
447 |
SaveCampaignVar("HeroHealth", GetHealth(hero.gear)) |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
448 |
AnimCaption(hero.gear, loc("Checkpoint reached!"), 5000) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
449 |
end |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
450 |
|
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
451 |
function heroAtIceGun(gear) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
452 |
iceGunTaken=true |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
453 |
end |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
454 |
|
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
455 |
function thantaDeath(gear) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9639
diff
changeset
|
456 |
SendStat(siGameResult, loc("Hog Solo lost, try again!")) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
457 |
SendStat(siCustomAchievement, loc("Noo, Thanta has to stay alive!")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
458 |
SendStat(siCustomAchievement, loc("To win the game you have to go next to Thanta.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
459 |
SendStat(siCustomAchievement, loc("Most of the time you'll be able to use the icegun only.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
460 |
SendStat(siCustomAchievement, loc("Use the bazooka and the flying saucer to get the icegun.")) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9639
diff
changeset
|
461 |
SendStat(siPlayerKills,'1',teamB.name) |
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9639
diff
changeset
|
462 |
SendStat(siPlayerKills,'0',teamC.name) |
9388
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
463 |
EndGame() |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
464 |
end |
790d4f7d57d1
3rd checkpoint, event to stop game when Thanta is dead
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9386
diff
changeset
|
465 |
|
9394
ccc2a2099370
event for game win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9392
diff
changeset
|
466 |
function heroWin(gear) |
9400
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
467 |
TurnTimeLeft=0 |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
468 |
if GetX(hero.gear) < GetX(bandit1.gear) then |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
469 |
HogTurnLeft(bandit1.gear, true) |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
470 |
else |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
471 |
HogTurnLeft(bandit1.gear, false) |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
472 |
end |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
473 |
AddAnim(dialog02) |
9394
ccc2a2099370
event for game win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9392
diff
changeset
|
474 |
end |
ccc2a2099370
event for game win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9392
diff
changeset
|
475 |
|
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
476 |
-------------- ANIMATIONS ------------------ |
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
477 |
|
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
478 |
function Skipanim(anim) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
479 |
if goals[anim] ~= nil then |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
480 |
ShowMission(unpack(goals[anim])) |
9623
d3f7d1b8b46d
end game when skip in last dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9622
diff
changeset
|
481 |
end |
9400
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
482 |
if anim == dialog02 then |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
483 |
actionsOnWin() |
9734
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
484 |
else |
da2cb993fd61
fixed moving npc and flying in forbidden area in ice01
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
485 |
AnimSwitchHog(hero.gear) |
9400
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
486 |
end |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
487 |
end |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
488 |
|
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
489 |
function AnimationSetup() |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
490 |
-- DIALOG 01 - Start, welcome to moon |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
491 |
AddSkipFunction(dialog01, Skipanim, {dialog01}) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
492 |
table.insert(dialog01, {func = AnimWait, args = {hero.gear, 3000}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
493 |
table.insert(dialog01, {func = AnimCaption, args = {hero.gear, loc("On the Ice Planet, where ice rules ..."), 5000}}) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
494 |
table.insert(dialog01, {func = AnimSay, args = {ally.gear, loc("Finally you are here!"), SAY_SAY, 2000}}) |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
495 |
table.insert(dialog01, {func = AnimWait, args = {hero.gear, 2000}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
496 |
table.insert(dialog01, {func = AnimSay, args = {hero.gear, loc("Hi! Nice to meet you."), SAY_SAY, 3000}}) |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
497 |
table.insert(dialog01, {func = AnimWait, args = {ally.gear, 2000}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
498 |
table.insert(dialog01, {func = AnimSay, args = {ally.gear, loc("Listen carefully! The bandit leader, Thanta, has recently found a very strange device."), SAY_SAY, 4000}}) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
499 |
table.insert(dialog01, {func = AnimSay, args = {ally.gear, loc("He doesn't know it but this device is a part of the anti-gravity device."), SAY_SAY, 2500}}) |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
500 |
table.insert(dialog01, {func = AnimWait, args = {hero.gear, 8000}}) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
501 |
table.insert(dialog01, {func = AnimSay, args = {hero.gear, loc("Nice, then I should get the part as soon as possible!"), SAY_SAY, 4000}}) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
502 |
table.insert(dialog01, {func = AnimWait, args = {ally.gear, 4000}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
503 |
table.insert(dialog01, {func = AnimSay, args = {ally.gear, loc("Be careful, your gadgets won't work in the bandit area. You should get an ice gun."), SAY_SAY, 7000}}) |
9386
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
504 |
table.insert(dialog01, {func = AnimSay, args = {ally.gear, loc("There is one below us!"), SAY_SAY, 4000}}) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
505 |
table.insert(dialog01, {func = AnimWait, args = {hero.gear, 500}}) |
808d38b2182c
map changes to let hog climb, checkpoint one after icegun,starting dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9384
diff
changeset
|
506 |
table.insert(dialog01, {func = AnimSwitchHog, args = {hero.gear}}) |
9400
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
507 |
-- DIALOG 02 - Hero got to Thant2 |
9623
d3f7d1b8b46d
end game when skip in last dialog
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9622
diff
changeset
|
508 |
AddSkipFunction(dialog02, Skipanim, {dialog02}) |
9400
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
509 |
table.insert(dialog02, {func = AnimWait, args = {hero.gear, 3000}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
510 |
table.insert(dialog02, {func = AnimCaption, args = {hero.gear, loc("Congratulations, now you can take Thanta's device part!"), 5000}}) |
9402
8e9d062f9a48
ice01 custom stats for defeat
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9400
diff
changeset
|
511 |
table.insert(dialog02, {func = AnimSay, args = {bandit1.gear, loc("Oh! Please spare me. You can take all my treasures!"), SAY_SAY, 3000}}) |
9400
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
512 |
table.insert(dialog02, {func = AnimWait, args = {hero.gear, 5000}}) |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
513 |
table.insert(dialog02, {func = AnimSay, args = {hero.gear, loc("I just want the strange device you found!"), SAY_SAY, 3000}}) |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
514 |
table.insert(dialog02, {func = AnimWait, args = {bandit1.gear, 4000}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
515 |
table.insert(dialog02, {func = AnimSay, args = {bandit1.gear, loc("Here! Take it!"), SAY_SAY, 3000}}) |
9758 | 516 |
table.insert(dialog02, {func = actionsOnWin, args = {}}) |
9344
f8e7e9858a8c
ice planet mission wip
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9340
diff
changeset
|
517 |
end |
9400
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
518 |
|
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
519 |
-------------- Other Functions ------------------- |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
520 |
|
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
521 |
function actionsOnWin() |
9758 | 522 |
saveCompletedStatus(4) |
9757 | 523 |
SendStat(siGameResult, loc("Congratulations, you acquired the device part!")) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9810
diff
changeset
|
524 |
SendStat(siCustomAchievement, string.format(loc("At the end of the game your health was %d."), GetHealth(hero.gear))) |
9402
8e9d062f9a48
ice01 custom stats for defeat
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9400
diff
changeset
|
525 |
-- maybe add number of tries for each part? |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9639
diff
changeset
|
526 |
SendStat(siPlayerKills,'1',teamC.name) |
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9639
diff
changeset
|
527 |
SendStat(siPlayerKills,'0',teamB.name) |
9400
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
528 |
EndGame() |
b0c1b1972947
added dialog at hero win
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9398
diff
changeset
|
529 |
end |