author | Wuzzy <Wuzzy2@mail.ru> |
Mon, 08 Apr 2019 17:59:38 +0200 | |
changeset 14776 | 97a36fb44123 |
parent 14485 | 208359558642 |
child 15506 | 5a30396f8fb2 |
permissions | -rw-r--r-- |
10413 | 1 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
2 |
||
11894
c8979eeb73fa
Fix ClimbHome mission bugs (broken teams, broken graph)
Wuzzy <almikes@aol.com>
parents:
11067
diff
changeset
|
3 |
isSinglePlayer = true |
10413 | 4 |
|
5 |
-- trying to allow random theme, but fixed theme objects... |
|
6 |
-- Also skip some ugly themes, or ones where the sky is "meh" |
|
7 |
--local themes = { "Art","Cake","City","EarthRise","Halloween","Olympics","Underwater","Bamboo","Castle","Compost","Eyes","Hell","Planes","Bath","Cave","CrazyMission","Freeway","Island","Sheep","Blox","Cheese","Deepspace","Fruit","Jungle","Snow","Brick","Christmas","Desert","Golf","Nature","Stage" } |
|
8 |
local themes = {"Christmas","Hell","Bamboo","City","Island","Bath","Compost","Jungle","Desert","Nature","Olympics","Brick","EarthRise","Sheep","Cake","Freeway","Snow","Castle","Fruit","Stage","Cave","Golf","Cheese","Halloween"} |
|
11067
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
9 |
local totalHedgehogs = 0 |
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
10 |
local HH = {} |
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
11 |
local teams = {} |
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
12 |
local dummyHog = nil |
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
13 |
|
10413 | 14 |
|
15 |
function onGameInit() |
|
16 |
-- Ensure people get same map for same theme |
|
17 |
Theme = themes[GetRandom(#themes)+1] |
|
18 |
Seed = ClimbHome |
|
13755
110d6c1e817f
Lua: Rename globals: NoPointX→NO_CURSOR, cMaxTurnTime→MAX_TURN_TIME, cMaxHogHealth→MAX_HOG_HEALTH
Wuzzy <Wuzzy2@mail.ru>
parents:
13669
diff
changeset
|
19 |
TurnTime = MAX_TURN_TIME |
10413 | 20 |
EnableGameFlags(gfOneClanMode) |
21 |
DisableGameFlags(gfBottomBorder+gfBorder) |
|
22 |
CaseFreq = 0 |
|
23 |
Explosives = 0 |
|
11067
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
24 |
MineDudPercent = 0 |
10413 | 25 |
Map = "ClimbHome" |
14485
208359558642
Use player-chosen team identity for training and a few challenges
Wuzzy <Wuzzy2@mail.ru>
parents:
13755
diff
changeset
|
26 |
AddMissionTeam(-1) |
208359558642
Use player-chosen team identity for training and a few challenges
Wuzzy <Wuzzy2@mail.ru>
parents:
13755
diff
changeset
|
27 |
player = AddMissionHog(1) |
11067
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
28 |
if showWaterStats then |
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
29 |
dummyHog = AddHog(" ", 0, 1, "NoHat") |
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
30 |
HH[dummyHog] = nil |
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
31 |
totalHedgehogs = totalHedgehogs - 1 |
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
32 |
SendStat(siClanHealth, tostring(32640), " ") |
c632b47b8ff0
Trying to get these scripts to behave properly, still WIP though.
nemo
parents:
10581
diff
changeset
|
33 |
end |
10413 | 34 |
end |