author | Wuzzy <almikes@aol.com> |
Tue, 11 Apr 2017 02:44:59 +0200 | |
changeset 12224 | d62d6f8ebef1 |
parent 12088 | 1da37e2ba6fd |
child 12226 | 3ec0261e01f0 |
permissions | -rw-r--r-- |
9527 | 1 |
------------------- ABOUT ---------------------- |
2 |
-- |
|
3 |
-- In this adventure hero gets the lost part with |
|
4 |
-- the help of the green bananas hogs. |
|
5 |
||
6 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
|
7 |
HedgewarsScriptLoad("/Scripts/Animate.lua") |
|
9578
16139270448f
save main missions' status
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9574
diff
changeset
|
8 |
HedgewarsScriptLoad("/Missions/Campaign/A_Space_Adventure/global_functions.lua") |
9527 | 9 |
|
10 |
----------------- VARIABLES -------------------- |
|
11 |
-- globals |
|
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
12 |
local missionName = loc("Getting to the device") |
9527 | 13 |
local inBattle = false |
9529 | 14 |
local tookPartInBattle = false |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
15 |
local previousHog = -1 |
9548 | 16 |
local checkPointReached = 1 -- 1 is normal spawn |
9746
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
17 |
local permitCaptainLimeDeath = false |
9527 | 18 |
-- dialogs |
19 |
local dialog01 = {} |
|
20 |
local dialog02 = {} |
|
21 |
local dialog03 = {} |
|
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
22 |
local dialog04 = {} |
9527 | 23 |
-- mission objectives |
24 |
local goals = { |
|
9758 | 25 |
[dialog01] = {missionName, loc("Exploring the tunnel"), loc("Search for the device with the help of the other hedgehogs ").."|"..loc("Hog Solo has to reach the last crates"), 1, 4000}, |
26 |
[dialog02] = {missionName, loc("Exploring the tunnel"), loc("Explore the tunnel with the other hedgehogs and search for the device").."|"..loc("Hog Solo has to reach the last crates"), 1, 4000}, |
|
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
27 |
[dialog03] = {missionName, loc("Return to the Surface"), loc("Go to the surface!").."|"..loc("Attack Captain Lime before he attacks back"), 1, 4000}, |
9758 | 28 |
[dialog04] = {missionName, loc("Return to the Surface"), loc("Go to the surface!").."|"..loc("Attack the assassins before they attack back"), 1, 4000}, |
9527 | 29 |
} |
9542 | 30 |
-- crates |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
31 |
local eagleCrate = {name = amDEagle, x = 1680, y = 1650} |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
32 |
local girderCrate = {name = amGirder, x = 1680, y = 1160} |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
33 |
local ropeCrate = {name = amRope, x = 1400, y = 1870} |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
34 |
local weaponCrate = { x = 1360, y = 1870} |
9527 | 35 |
-- hogs |
36 |
local hero = {} |
|
37 |
local green1 = {} |
|
38 |
local green2 = {} |
|
39 |
local green3 = {} |
|
40 |
-- teams |
|
41 |
local teamA = {} |
|
42 |
local teamB = {} |
|
43 |
local teamC = {} |
|
44 |
-- hedgehogs values |
|
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
45 |
hero.name = loc("Hog Solo") |
9527 | 46 |
hero.x = 1200 |
47 |
hero.y = 820 |
|
48 |
hero.dead = false |
|
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
49 |
green1.name = loc("Captain Lime") |
9527 | 50 |
green1.x = 1050 |
51 |
green1.y = 820 |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
52 |
green1.dead = false |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
53 |
green2.name = loc("Mister Pear") |
9527 | 54 |
green2.x = 1350 |
55 |
green2.y = 820 |
|
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
56 |
green3.name = loc("Lady Mango") |
9527 | 57 |
green3.x = 1450 |
58 |
green3.y = 820 |
|
59 |
local redHedgehogs = { |
|
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
60 |
{ name = loc("Poisonous Apple") }, |
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
61 |
{ name = loc("Dark Strawberry") }, |
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
62 |
{ name = loc("Watermelon Heart") }, |
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
63 |
{ name = loc("Deadly Grape") } |
9527 | 64 |
} |
65 |
teamA.name = loc("Hog Solo and GB") |
|
66 |
teamA.color = tonumber("38D61C",16) -- green |
|
67 |
teamB.name = loc("Captain Lime") |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
68 |
teamB.color = tonumber("38D61D",16) -- greenish |
9831 | 69 |
teamC.name = loc("Fruit Assassins") |
9527 | 70 |
teamC.color = tonumber("FF0000",16) -- red |
71 |
||
72 |
function onGameInit() |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
73 |
GameFlags = gfDisableWind |
9527 | 74 |
Seed = 1 |
75 |
TurnTime = 20000 |
|
76 |
CaseFreq = 0 |
|
77 |
MinesNum = 0 |
|
78 |
MinesTime = 1 |
|
79 |
Explosives = 0 |
|
80 |
Delay = 3 |
|
12224
d62d6f8ebef1
Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents:
12088
diff
changeset
|
81 |
-- Disable Sudden Death |
d62d6f8ebef1
Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents:
12088
diff
changeset
|
82 |
HealthDecrease = 0 |
d62d6f8ebef1
Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents:
12088
diff
changeset
|
83 |
WaterRise = 0 |
9527 | 84 |
Map = "fruit02_map" |
85 |
Theme = "Fruit" |
|
9758 | 86 |
|
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
87 |
-- load checkpoints, problem getting the campaign variable |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
88 |
local health = 100 |
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
89 |
checkPointReached = initCheckpoint("fruit02") |
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
90 |
if checkPointReached ~= 1 then |
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
91 |
loadHogsPositions() |
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
92 |
health = tonumber(GetCampaignVar("HeroHealth")) |
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
93 |
end |
9758 | 94 |
|
9527 | 95 |
-- Hog Solo and Green Bananas |
12049
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11976
diff
changeset
|
96 |
AddTeam(teamA.name, teamA.color, "Bone", "Island", "HillBilly", "hedgehog") |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
97 |
hero.gear = AddHog(hero.name, 0, health, "war_desertgrenadier1") |
9527 | 98 |
AnimSetGearPosition(hero.gear, hero.x, hero.y) |
9758 | 99 |
HogTurnLeft(hero.gear, true) |
9629 | 100 |
green2.gear = AddHog(green2.name, 0, 100, "war_britmedic") |
9527 | 101 |
AnimSetGearPosition(green2.gear, green2.x, green2.y) |
102 |
HogTurnLeft(green2.gear, true) |
|
9629 | 103 |
green3.gear = AddHog(green3.name, 0, 100, "hair_red") |
9527 | 104 |
AnimSetGearPosition(green3.gear, green3.x, green3.y) |
105 |
HogTurnLeft(green3.gear, true) |
|
106 |
-- Captain Lime |
|
12049
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11976
diff
changeset
|
107 |
AddTeam(teamB.name, teamB.color, "Bone", "Island", "HillBilly", "congo-brazzaville") |
9629 | 108 |
green1.human = AddHog(green1.name, 0, 100, "war_desertofficer") |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
109 |
AnimSetGearPosition(green1.human, green1.x, green1.y) |
9629 | 110 |
green1.bot = AddHog(green1.name, 1, 100, "war_desertofficer") |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
111 |
AnimSetGearPosition(green1.bot, green1.x, green1.y) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
112 |
green1.gear = green1.human |
9831 | 113 |
-- Fruit Assassins |
9629 | 114 |
local assasinsHats = { "NinjaFull", "NinjaStraight", "NinjaTriangle" } |
12049
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11976
diff
changeset
|
115 |
AddTeam(teamC.name, teamC.color, "Bone", "Island", "HillBilly", "cm_scout") |
9527 | 116 |
for i=1,table.getn(redHedgehogs) do |
9810
54c0fdec4600
changing math functions that may cause desyncs
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9782
diff
changeset
|
117 |
redHedgehogs[i].gear = AddHog(redHedgehogs[i].name, 1, 100, assasinsHats[GetRandom(3)+1]) |
9527 | 118 |
AnimSetGearPosition(redHedgehogs[i].gear, 2010 + 50*i, 630) |
119 |
end |
|
120 |
||
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
|
121 |
AnimInit(true) |
9758 | 122 |
AnimationSetup() |
9527 | 123 |
end |
124 |
||
125 |
function onGameStart() |
|
126 |
AnimWait(hero.gear, 3000) |
|
127 |
FollowGear(hero.gear) |
|
9758 | 128 |
|
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
129 |
if GetCampaignVar("Fruit01JoinedBattle") and GetCampaignVar("Fruit01JoinedBattle") == "true" then |
9529 | 130 |
tookPartInBattle = true |
131 |
end |
|
9758 | 132 |
|
9527 | 133 |
AddEvent(onHeroDeath, {hero.gear}, heroDeath, {hero.gear}, 0) |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
134 |
AddEvent(onDeviceCrates, {hero.gear}, deviceCrates, {hero.gear}, 0) |
9758 | 135 |
|
9527 | 136 |
-- Hog Solo and GB weapons |
137 |
AddAmmo(hero.gear, amSwitch, 100) |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
138 |
-- Captain Lime weapons |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
139 |
AddAmmo(green1.bot, amBazooka, 6) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
140 |
AddAmmo(green1.bot, amGrenade, 6) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
141 |
AddAmmo(green1.bot, amDEagle, 2) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
142 |
HideHog(green1.bot) |
9831 | 143 |
-- Assassins weapons |
9527 | 144 |
AddAmmo(redHedgehogs[1].gear, amBazooka, 6) |
145 |
AddAmmo(redHedgehogs[1].gear, amGrenade, 6) |
|
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
146 |
AddAmmo(redHedgehogs[1].bot, amDEagle, 6) |
9527 | 147 |
for i=1,table.getn(redHedgehogs) do |
148 |
HideHog(redHedgehogs[i].gear) |
|
149 |
end |
|
9758 | 150 |
|
9527 | 151 |
-- explosives |
152 |
-- I wanted to use FindPlace but doesn't accept height values... |
|
153 |
local x1 = 950 |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
154 |
local x2 = 1306 |
9527 | 155 |
local y1 = 1210 |
156 |
local y2 = 1620 |
|
157 |
while true do |
|
158 |
if y2<y1 then |
|
159 |
break |
|
160 |
end |
|
161 |
if x2<x1 then |
|
162 |
x2 = 1305 |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
163 |
y2 = y2 - 50 |
9527 | 164 |
end |
165 |
if not TestRectForObstacle(x2+25, y2+25, x2-25, y2-25, true) then |
|
166 |
AddGear(x2, y2, gtExplosives, 0, 0, 0, 0) |
|
167 |
end |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
168 |
x2 = x2 - 25 |
9527 | 169 |
end |
170 |
AddGear(3128, 1680, gtExplosives, 0, 0, 0, 0) |
|
9758 | 171 |
|
9527 | 172 |
--mines |
173 |
AddGear(3135, 1680, gtMine, 0, 0, 0, 0) |
|
174 |
AddGear(3145, 1680, gtMine, 0, 0, 0, 0) |
|
175 |
AddGear(3155, 1680, gtMine, 0, 0, 0, 0) |
|
176 |
AddGear(3165, 1680, gtMine, 0, 0, 0, 0) |
|
177 |
AddGear(3175, 1680, gtMine, 0, 0, 0, 0) |
|
178 |
AddGear(3115, 1680, gtMine, 0, 0, 0, 0) |
|
179 |
AddGear(3105, 1680, gtMine, 0, 0, 0, 0) |
|
180 |
AddGear(3095, 1680, gtMine, 0, 0, 0, 0) |
|
181 |
AddGear(3085, 1680, gtMine, 0, 0, 0, 0) |
|
9758 | 182 |
AddGear(3075, 1680, gtMine, 0, 0, 0, 0) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
183 |
|
9548 | 184 |
if checkPointReached == 1 then |
185 |
AddAmmo(hero.gear, amFirePunch, 3) |
|
186 |
AddEvent(onCheckPoint1, {hero.gear}, checkPoint1, {hero.gear}, 0) |
|
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
187 |
AddEvent(onCheckPoint2, {hero.gear}, checkPoint2, {hero.gear}, 0) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
188 |
AddEvent(onCheckPoint3, {hero.gear}, checkPoint3, {hero.gear}, 0) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
189 |
AddEvent(onCheckPoint4, {hero.gear}, checkPoint4, {hero.gear}, 0) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
190 |
if tookPartInBattle then |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
191 |
AddAnim(dialog01) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
192 |
else |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
193 |
AddAnim(dialog02) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
194 |
end |
9548 | 195 |
elseif checkPointReached == 2 then |
196 |
AddEvent(onCheckPoint2, {hero.gear}, checkPoint2, {hero.gear}, 0) |
|
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
197 |
AddEvent(onCheckPoint3, {hero.gear}, checkPoint3, {hero.gear}, 0) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
198 |
AddEvent(onCheckPoint4, {hero.gear}, checkPoint4, {hero.gear}, 0) |
9548 | 199 |
elseif checkPointReached == 3 then |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
200 |
AddEvent(onCheckPoint1, {hero.gear}, checkPoint1, {hero.gear}, 0) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
201 |
AddEvent(onCheckPoint3, {hero.gear}, checkPoint3, {hero.gear}, 0) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
202 |
AddEvent(onCheckPoint4, {hero.gear}, checkPoint4, {hero.gear}, 0) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
203 |
elseif checkPointReached == 4 then |
9758 | 204 |
AddEvent(onCheckPoint4, {hero.gear}, checkPoint4, {hero.gear}, 0) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
205 |
elseif checkPointReached == 5 then |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
206 |
-- EMPTY |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
207 |
end |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
208 |
if checkPointReached ~= 1 then |
9548 | 209 |
loadWeapons() |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
210 |
end |
9758 | 211 |
|
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
212 |
-- girders |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
213 |
if checkPointReached > 1 then |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
214 |
PlaceGirder(1580, 875, 4) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
215 |
PlaceGirder(1800, 875, 4) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
216 |
end |
9758 | 217 |
|
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
218 |
-- place crates |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
219 |
if checkPointReached < 2 then |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
220 |
SpawnAmmoCrate(girderCrate.x, girderCrate.y, girderCrate.name) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
221 |
end |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
222 |
if checkPointReached < 5 then |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
223 |
SpawnAmmoCrate(eagleCrate.x, eagleCrate.y, eagleCrate.name) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
224 |
end |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
225 |
SpawnAmmoCrate(ropeCrate.x, ropeCrate.y, ropeCrate.name) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
226 |
|
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
227 |
if tookPartInBattle then |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
228 |
SpawnAmmoCrate(weaponCrate.x, weaponCrate.y, amWatermelon) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
229 |
else |
9758 | 230 |
SpawnAmmoCrate(weaponCrate.x, weaponCrate.y, amSniperRifle) |
9548 | 231 |
end |
9758 | 232 |
|
9527 | 233 |
SendHealthStatsOff() |
234 |
end |
|
235 |
||
236 |
function onNewTurn() |
|
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
237 |
if not inBattle and CurrentHedgehog == green1.gear then |
9527 | 238 |
TurnTimeLeft = 0 |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
239 |
elseif CurrentHedgehog == green2.gear or CurrentHedgehog == green3.gear then |
9544
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
240 |
TurnTimeLeft = 0 |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
241 |
elseif inBattle then |
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
242 |
if CurrentHedgehog == green1.gear and previousHog ~= hero.gear then |
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
243 |
TurnTimeLeft = 0 |
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
244 |
return |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
245 |
end |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
246 |
for i=1,table.getn(redHedgehogs) do |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
247 |
if CurrentHedgehog == redHedgehogs[i].gear and previousHog ~= hero.gear then |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
248 |
TurnTimeLeft = 0 |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
249 |
return |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
250 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
251 |
end |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
252 |
TurnTimeLeft = 20000 |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
253 |
wind() |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
254 |
elseif not inBattle and CurrentHedgehog == hero.gear then |
9527 | 255 |
TurnTimeLeft = -1 |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
256 |
wind() |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
257 |
else |
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
258 |
TurnTimeLeft = 0 |
9527 | 259 |
end |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
260 |
previousHog = CurrentHedgehog |
9527 | 261 |
end |
262 |
||
263 |
function onGameTick() |
|
264 |
AnimUnWait() |
|
265 |
if ShowAnimation() == false then |
|
266 |
return |
|
267 |
end |
|
268 |
ExecuteAfterAnimations() |
|
269 |
CheckEvents() |
|
270 |
end |
|
271 |
||
9746
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
272 |
function onGameTick20() |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
273 |
if not permitCaptainLimeDeath and not GetHealth(green1.gear) then |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
274 |
-- game ends with the according stat messages |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
275 |
heroDeath() |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
276 |
permitCaptainLimeDeath = true |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
277 |
end |
9747
abe0c8a2d573
adjusting the wind in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9746
diff
changeset
|
278 |
if CurrentHedgehog and GetY(CurrentHedgehog) > 1350 then |
abe0c8a2d573
adjusting the wind in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9746
diff
changeset
|
279 |
SetWind(-40) |
abe0c8a2d573
adjusting the wind in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9746
diff
changeset
|
280 |
end |
9746
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
281 |
end |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
282 |
|
9527 | 283 |
function onGearDelete(gear) |
284 |
if gear == hero.gear then |
|
285 |
hero.dead = true |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
286 |
elseif gear == green1.bot then |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
287 |
green1.dead = true |
9527 | 288 |
end |
289 |
end |
|
290 |
||
9746
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
291 |
function onGearDamage(gear, damage) |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
292 |
if GetGearType(gear) == gtCase then |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
293 |
-- in this mode every crate is essential in order to complete the mission |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
294 |
-- destroying a crate ends the game |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
295 |
heroDeath() |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
296 |
end |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
297 |
end |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
298 |
|
9527 | 299 |
function onAmmoStoreInit() |
300 |
SetAmmo(amDEagle, 0, 0, 0, 6) |
|
9587
d6ddcafb1c56
fixed bug not displaying fuit02 after selecting fruitPlanet from cosmos
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9582
diff
changeset
|
301 |
SetAmmo(amGirder, 0, 0, 0, 2) |
9527 | 302 |
SetAmmo(amRope, 0, 0, 0, 1) |
11976
d5dabb71d6bf
Add skip option to desert01, fruit02, moon01 in A Space Adventure
Wuzzy <almikes@aol.com>
parents:
11692
diff
changeset
|
303 |
SetAmmo(amSkip, 9, 0, 0, 1) |
9630 | 304 |
if tonumber(getBonus(2)) == 1 then |
305 |
SetAmmo(amWatermelon, 0, 0, 0, 2) |
|
306 |
SetAmmo(amSniperRifle, 0, 0, 0, 2) |
|
307 |
else |
|
308 |
SetAmmo(amWatermelon, 0, 0, 0, 1) |
|
309 |
SetAmmo(amSniperRifle, 0, 0, 0, 1) |
|
310 |
end |
|
9527 | 311 |
end |
312 |
||
313 |
function onPrecise() |
|
314 |
if GameTime > 3000 then |
|
9758 | 315 |
SetAnimSkip(true) |
9527 | 316 |
end |
317 |
end |
|
318 |
||
319 |
-------------- EVENTS ------------------ |
|
320 |
||
321 |
function onHeroDeath(gear) |
|
322 |
if hero.dead then |
|
323 |
return true |
|
324 |
end |
|
325 |
return false |
|
326 |
end |
|
327 |
||
9532 | 328 |
function onDeviceCrates(gear) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
329 |
if not hero.dead and GetY(hero.gear)>1850 and GetX(hero.gear)>1340 and GetX(hero.gear)<1640 then |
9532 | 330 |
return true |
331 |
end |
|
332 |
return false |
|
333 |
end |
|
334 |
||
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
335 |
function onSurface(gear) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
336 |
if not hero.dead and GetY(hero.gear)<850 and StoppedGear(hero.gear) then |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
337 |
return true |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
338 |
end |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
339 |
return false |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
340 |
end |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
341 |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
342 |
function onGaptainLimeDeath(gear) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
343 |
if green1.dead then |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
344 |
return true |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
345 |
end |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
346 |
return false |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
347 |
end |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
348 |
|
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
349 |
function onRedTeamDeath(gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
350 |
local redDead = true |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
351 |
for i=1,table.getn(redHedgehogs) do |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
352 |
if GetHealth(redHedgehogs[i].gear) then |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
353 |
redDead = false |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
354 |
break |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
355 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
356 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
357 |
return redDead |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
358 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
359 |
|
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
360 |
function onCheckPoint1(gear) |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
361 |
-- before barrel jump |
9758 | 362 |
if not hero.dead and GetX(hero.gear) > 2850 and GetX(hero.gear) < 2945 |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
363 |
and GetY(hero.gear) > 808 and GetY(hero.gear) < 852 and not isHeroAtWrongPlace() then |
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
364 |
return true |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
365 |
end |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
366 |
return false |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
367 |
end |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
368 |
|
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
369 |
function onCheckPoint2(gear) |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
370 |
-- before barrel jump |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
371 |
if ((GetHealth(green2.gear) and GetX(green2.gear) > 2850 and GetX(green2.gear) < 2945 and GetY(green2.gear) > 808 and GetY(green2.gear) < 852) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
372 |
or (GetHealth(green3.gear) and GetX(green3.gear) > 2850 and GetX(green3.gear) < 2945 and GetY(green3.gear) > 808 and GetY(green3.gear) < 852)) |
9548 | 373 |
and not isHeroAtWrongPlace() then |
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
374 |
return true |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
375 |
end |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
376 |
return false |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
377 |
end |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
378 |
|
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
379 |
function onCheckPoint3(gear) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
380 |
-- after barrel jump |
9758 | 381 |
if ((GetHealth(green2.gear) and GetY(green2.gear) > 1550 and GetX(green2.gear) < 3000 and StoppedGear(green2.gear)) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
382 |
or (GetHealth(green3.gear) and GetY(green3.gear) > 1550 and GetX(green3.gear) < 3000 and StoppedGear(green2.gear))) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
383 |
and not isHeroAtWrongPlace() then |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
384 |
return true |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
385 |
end |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
386 |
return false |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
387 |
end |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
388 |
|
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
389 |
function onCheckPoint4(gear) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
390 |
-- hero at crates |
9758 | 391 |
if not hero.dead and GetX(hero.gear) > 1288 and GetX(hero.gear) < 1420 |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
392 |
and GetY(hero.gear) > 1840 and not isHeroAtWrongPlace() then |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
393 |
return true |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
394 |
end |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
395 |
return false |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
396 |
end |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
397 |
|
9527 | 398 |
-------------- ACTIONS ------------------ |
9760
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
399 |
ended = false |
9527 | 400 |
|
401 |
function heroDeath(gear) |
|
9760
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
402 |
if not ended then |
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
403 |
SendStat(siGameResult, loc("Hog Solo lost, try again!")) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
404 |
SendStat(siCustomAchievement, loc("To win the game, Hog Solo has to get the bottom crates and come back to the surface.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
405 |
SendStat(siCustomAchievement, loc("You can use the other 2 hogs to assist you.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
406 |
SendStat(siCustomAchievement, loc("Do not destroy the crates!")) |
9760
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
407 |
if tookPartInBattle then |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
408 |
SendStat(siCustomAchievement, loc("You'll have to eliminate the Strawberry Assassins at the end.")) |
9760
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
409 |
else |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
410 |
SendStat(siCustomAchievement, loc("You'll have to eliminate Captain Lime at the end.")) |
9760
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
411 |
SendStat(siCustomAchievement, loc("Don't eliminate Captain Lime before collecting the last crate!")) |
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
412 |
end |
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
413 |
SendStat(siPlayerKills,'0',teamA.name) |
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
414 |
EndGame() |
395ca7fe6362
It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents:
9758
diff
changeset
|
415 |
ended = true |
9542 | 416 |
end |
9527 | 417 |
end |
418 |
||
9532 | 419 |
function deviceCrates(gear) |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
420 |
TurnTimeLeft = 0 |
9532 | 421 |
if not tookPartInBattle then |
422 |
AddAnim(dialog03) |
|
423 |
else |
|
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
424 |
for i=1,table.getn(redHedgehogs) do |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
425 |
RestoreHog(redHedgehogs[i].gear) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
426 |
end |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
427 |
AddAnim(dialog04) |
9532 | 428 |
end |
9746
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
429 |
-- needs to be set to true for both plots |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
430 |
permitCaptainLimeDeath = true |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
431 |
AddAmmo(hero.gear, amSwitch, 0) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
432 |
AddEvent(onSurface, {hero.gear}, surface, {hero.gear}, 0) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
433 |
end |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
434 |
|
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
435 |
function surface(gear) |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
436 |
previousHog = -1 |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
437 |
if tookPartInBattle then |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
438 |
if GetHealth(green1.gear) then |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
439 |
HideHog(green1.gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
440 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
441 |
AddEvent(onRedTeamDeath, {green1.gear}, redTeamDeath, {green1.gear}, 0) |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
442 |
else |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
443 |
DeleteGear(green1.human) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
444 |
RestoreHog(green1.bot) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
445 |
green1.gear = green1.bot |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
446 |
AddEvent(onGaptainLimeDeath, {green1.gear}, captainLimeDeath, {green1.gear}, 0) |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
447 |
end |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
448 |
if GetHealth(green2.gear) then |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
449 |
HideHog(green2.gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
450 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
451 |
if GetHealth(green3.gear) then |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
452 |
HideHog(green3.gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
453 |
end |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
454 |
inBattle = true |
9532 | 455 |
end |
456 |
||
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
457 |
function captainLimeDeath(gear) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
458 |
-- hero win in scenario of escape in 1st part |
9578
16139270448f
save main missions' status
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9574
diff
changeset
|
459 |
saveCompletedStatus(3) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9630
diff
changeset
|
460 |
SendStat(siGameResult, loc("Congratulations, you won!")) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
461 |
SendStat(siCustomAchievement, loc("You retrieved the lost part.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
462 |
SendStat(siCustomAchievement, loc("You defended yourself against Captain Lime.")) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9630
diff
changeset
|
463 |
SendStat(siPlayerKills,'1',teamA.name) |
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9630
diff
changeset
|
464 |
SendStat(siPlayerKills,'0',teamB.name) |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
465 |
EndGame() |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
466 |
end |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
467 |
|
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
468 |
function redTeamDeath(gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
469 |
-- hero win in battle scenario |
9578
16139270448f
save main missions' status
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9574
diff
changeset
|
470 |
saveCompletedStatus(3) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9630
diff
changeset
|
471 |
SendStat(siGameResult, loc("Congratulations, you won!")) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
472 |
SendStat(siCustomAchievement, loc("You retrieved the lost part.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
473 |
SendStat(siCustomAchievement, loc("You defended yourself against the Strawberry Assassins.")) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9630
diff
changeset
|
474 |
SendStat(siPlayerKills,'1',teamA.name) |
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9630
diff
changeset
|
475 |
SendStat(siPlayerKills,'0',teamC.name) |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
476 |
EndGame() |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
477 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
478 |
|
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
479 |
function checkPoint1(gear) |
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
480 |
saveCheckPointLocal(2) |
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
481 |
end |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
482 |
|
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
483 |
function checkPoint2(gear) |
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
484 |
saveCheckPointLocal(3) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
485 |
end |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
486 |
|
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
487 |
function checkPoint3(gear) |
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
488 |
saveCheckPointLocal(4) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
489 |
end |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
490 |
|
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
491 |
function checkPoint4(gear) |
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
492 |
saveCheckPointLocal(5) |
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
493 |
end |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
494 |
|
9527 | 495 |
-------------- ANIMATIONS ------------------ |
496 |
||
497 |
function Skipanim(anim) |
|
498 |
if goals[anim] ~= nil then |
|
499 |
ShowMission(unpack(goals[anim])) |
|
500 |
end |
|
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
501 |
TurnTimeLeft = 0 |
9527 | 502 |
end |
503 |
||
504 |
function AnimationSetup() |
|
9529 | 505 |
-- DIALOG 01 - Start, Captain Lime helps Hog Solo because he took part in the battle |
9527 | 506 |
AddSkipFunction(dialog01, Skipanim, {dialog01}) |
507 |
table.insert(dialog01, {func = AnimWait, args = {hero.gear, 3000}}) |
|
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
508 |
table.insert(dialog01, {func = AnimCaption, args = {hero.gear, loc("Somewhere else on the planet of fruits, Captain Lime helps Hog Solo"), 5000}}) |
9529 | 509 |
table.insert(dialog01, {func = AnimSay, args = {green1.gear, loc("You fought bravely and you helped us win this battle!"), SAY_SAY, 5000}}) |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
510 |
table.insert(dialog01, {func = AnimSay, args = {green1.gear, loc("So, as promised I have brought you where I think that the device you are looking for is hidden."), SAY_SAY, 7000}}) |
9758 | 511 |
table.insert(dialog01, {func = AnimSay, args = {green1.gear, loc("I know that your resources are low due to the battle but I'll send two of my best hogs to assist you."), SAY_SAY, 7000}}) |
9529 | 512 |
table.insert(dialog01, {func = AnimSay, args = {green1.gear, loc("Good luck!"), SAY_SAY, 2000}}) |
9527 | 513 |
table.insert(dialog01, {func = AnimWait, args = {hero.gear, 500}}) |
514 |
table.insert(dialog01, {func = AnimSwitchHog, args = {hero.gear}}) |
|
9529 | 515 |
-- DIALOG02 - Start, Hog Solo escaped from the previous battle |
516 |
AddSkipFunction(dialog02, Skipanim, {dialog02}) |
|
517 |
table.insert(dialog02, {func = AnimWait, args = {hero.gear, 3000}}) |
|
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
518 |
table.insert(dialog02, {func = AnimCaption, args = {hero.gear, loc("Somewhere else on the planet of fruits Hog Solo gets closer to the device"), 5000}}) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
519 |
table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("You are the one who fled! So, you are alive."), SAY_SAY, 4000}}) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
520 |
table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("I'm still low on hogs. If you are not afraid I could use a set of extra hands."), SAY_SAY, 4000}}) |
9529 | 521 |
table.insert(dialog02, {func = AnimWait, args = {hero.gear, 8000}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
522 |
table.insert(dialog02, {func = AnimSay, args = {hero.gear, loc("I am sorry but I was looking for a device that may be hidden somewhere around here."), SAY_SAY, 4500}}) |
9529 | 523 |
table.insert(dialog02, {func = AnimWait, args = {green1.gear, 12500}}) |
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
524 |
table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("Many long forgotten things can be found in the same tunnels that we are about to explore!"), SAY_SAY, 7000}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
525 |
table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("If you help us you can keep the device if you find it but we'll keep everything else."), SAY_SAY, 7000}}) |
9529 | 526 |
table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("What do you say? Are you in?"), SAY_SAY, 3000}}) |
527 |
table.insert(dialog02, {func = AnimWait, args = {hero.gear, 1800}}) |
|
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
528 |
table.insert(dialog02, {func = AnimSay, args = {hero.gear, loc("Okay then!"), SAY_SAY, 2000}}) |
9529 | 529 |
table.insert(dialog02, {func = AnimSwitchHog, args = {hero.gear}}) |
9532 | 530 |
-- DIALOG03 - At crates, hero learns that Captain Lime is bad |
531 |
AddSkipFunction(dialog03, Skipanim, {dialog03}) |
|
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
532 |
table.insert(dialog03, {func = AnimWait, args = {hero.gear, 4000}}) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
533 |
table.insert(dialog03, {func = FollowGear, args = {hero.gear}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
534 |
table.insert(dialog03, {func = AnimSay, args = {hero.gear, loc("Hooray! I've found it, now I have to get back to Captain Lime!"), SAY_SAY, 4000}}) |
9532 | 535 |
table.insert(dialog03, {func = AnimWait, args = {green1.gear, 4000}}) |
9758 | 536 |
table.insert(dialog03, {func = AnimSay, args = {green1.gear, loc("This Hog Solo is so naive! When he returns I'll shoot him and keep that device for myself!"), SAY_THINK, 4000}}) |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
537 |
table.insert(dialog03, {func = goToThesurface, args = {hero.gear}}) |
9831 | 538 |
-- DIALOG04 - At crates, hero learns about the Assassins ambush |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
539 |
AddSkipFunction(dialog04, Skipanim, {dialog04}) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
540 |
table.insert(dialog04, {func = AnimWait, args = {hero.gear, 4000}}) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
541 |
table.insert(dialog04, {func = FollowGear, args = {hero.gear}}) |
11692
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
542 |
table.insert(dialog04, {func = AnimSay, args = {hero.gear, loc("Hooray! I've found it, now I have to get back to Captain Lime!"), SAY_SAY, 4000}}) |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
543 |
table.insert(dialog04, {func = AnimWait, args = {redHedgehogs[1].gear, 4000}}) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
544 |
table.insert(dialog04, {func = AnimSay, args = {redHedgehogs[1].gear, loc("We have spotted the enemy! We'll attack when the enemies start gathering!"), SAY_THINK, 4000}}) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
545 |
table.insert(dialog04, {func = goToThesurface, args = {hero.gear}}) |
9527 | 546 |
end |
547 |
||
548 |
------------- OTHER FUNCTIONS --------------- |
|
549 |
||
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
550 |
function goToThesurface() |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
551 |
TurnTimeLeft = 0 |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
552 |
end |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
553 |
|
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
554 |
function wind() |
9810
54c0fdec4600
changing math functions that may cause desyncs
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9782
diff
changeset
|
555 |
SetWind(GetRandom(201)-100) |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
556 |
end |
9544
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
557 |
|
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
558 |
function saveHogsPositions() |
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
559 |
local positions; |
9544
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
560 |
positions = GetX(hero.gear)..","..GetY(hero.gear) |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
561 |
if GetHealth(green2.gear) then |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
562 |
positions = positions..","..GetX(green2.gear)..","..GetY(green2.gear) |
9746
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
563 |
else |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
564 |
positions = positions..",1,1" |
9544
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
565 |
end |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
566 |
if GetHealth(green3.gear) then |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
567 |
positions = positions..","..GetX(green3.gear)..","..GetY(green3.gear) |
9746
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
568 |
else |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
569 |
positions = positions..",1,1" |
9544
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
570 |
end |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
571 |
SaveCampaignVar("HogsPosition", positions) |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
572 |
end |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
573 |
|
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
574 |
function loadHogsPositions() |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
575 |
local positions; |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
576 |
if GetCampaignVar("HogsPosition") then |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
577 |
positions = GetCampaignVar("HogsPosition") |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
578 |
else |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
579 |
return |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
580 |
end |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
581 |
positions = split(positions,",") |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
582 |
if positions[1] then |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
583 |
hero.x = positions[1] |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
584 |
hero.y = positions[2] |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
585 |
end |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
586 |
if positions[3] then |
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
587 |
green2.x = tonumber(positions[3]) |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
588 |
green2.y = tonumber(positions[4]) |
9544
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
589 |
end |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
590 |
if positions[5] then |
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
591 |
green3.x = tonumber(positions[5]) |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
592 |
green3.y = tonumber(positions[6]) |
9544
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
593 |
end |
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
594 |
end |
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
595 |
|
9548 | 596 |
function saveWeapons() |
597 |
-- firepunch - gilder - deagle - watermelon - sniper |
|
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
598 |
SaveCampaignVar("HeroAmmo", GetAmmoCount(hero.gear, amFirePunch)..GetAmmoCount(hero.gear, amGirder).. |
9548 | 599 |
GetAmmoCount(hero.gear, amDEagle)..GetAmmoCount(hero.gear, amWatermelon)..GetAmmoCount(hero.gear, amSniperRifle)) |
600 |
end |
|
601 |
||
602 |
function loadWeapons() |
|
603 |
local ammo = GetCampaignVar("HeroAmmo") |
|
9550
59061246a25c
fixed weapon type typo
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9548
diff
changeset
|
604 |
AddAmmo(hero.gear, amFirePunch, tonumber(ammo:sub(1,1))) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
605 |
AddAmmo(hero.gear, amGirder, tonumber(ammo:sub(2,2))) |
9548 | 606 |
AddAmmo(hero.gear, amDEagle, tonumber(ammo:sub(3,3))) |
607 |
AddAmmo(hero.gear, amWatermelon, tonumber(ammo:sub(4,4))) |
|
608 |
AddAmmo(hero.gear, amSniperRifle, tonumber(ammo:sub(5,5))) |
|
609 |
end |
|
610 |
||
9546
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
611 |
function isHeroAtWrongPlace() |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
612 |
if GetX(hero.gear) > 1480 and GetX(hero.gear) < 1892 and GetY(hero.gear) > 1000 and GetY(hero.gear) < 1220 then |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
613 |
return true |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
614 |
end |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
615 |
return false |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
616 |
end |
f7530a7e5612
added custom lua split
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9544
diff
changeset
|
617 |
|
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
618 |
function saveCheckPointLocal(cpoint) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
619 |
AnimCaption(hero.gear, loc("Checkpoint reached!"), 3000) |
9582
bf314b2258b3
less variables used to save the checkpoints - potential breakage xD
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9578
diff
changeset
|
620 |
saveCheckpoint(cpoint) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
621 |
SaveCampaignVar("HeroHealth", GetHealth(hero.gear)) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
622 |
saveHogsPositions() |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
623 |
saveWeapons() |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
624 |
end |