--- a/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/desert03.lua Thu Sep 19 02:33:23 2013 +0300
+++ b/share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/desert03.lua Thu Sep 19 03:49:29 2013 +0300
@@ -208,19 +208,19 @@
function win()
saveBonus(1, 1)
- SendStat('siGameResult', loc("Congratulations, you are the best!")) --1
- SendStat('siCustomAchievement', loc("You have destroyed all the targets")) --11
- SendStat('siCustomAchievement', loc("You are indeed the best PAotH pilot")) --11
- SendStat('siCustomAchievement', loc("Next you play \"Searching in the dust\" you'll have an RC plane available")) --11
- SendStat('siPlayerKills','1',teamA.name)
+ SendStat(siGameResult, loc("Congratulations, you are the best!"))
+ SendStat(siCustomAchievement, loc("You have destroyed all the targets"))
+ SendStat(siCustomAchievement, loc("You are indeed the best PAotH pilot"))
+ SendStat(siCustomAchievement, loc("Next you play \"Searching in the dust\" you'll have an RC plane available"))
+ SendStat(siPlayerKills,'1',teamA.name)
EndGame()
end
function gameOver()
- SendStat('siGameResult', loc("Hog Solo lost, try again!")) --1
- SendStat('siCustomAchievement', loc("You have to destroy all the targets")) --11
- SendStat('siCustomAchievement', loc("You will fail if you run out of ammo and there are still targets available")) --11
- SendStat('siCustomAchievement', loc("Read the Challenge Objectives from within the mission for more details")) --11
- SendStat('siPlayerKills','0',teamA.name)
+ SendStat(siGameResult, loc("Hog Solo lost, try again!"))
+ SendStat(siCustomAchievement, loc("You have to destroy all the targets"))
+ SendStat(siCustomAchievement, loc("You will fail if you run out of ammo and there are still targets available"))
+ SendStat(siCustomAchievement, loc("Read the Challenge Objectives from within the mission for more details"))
+ SendStat(siPlayerKills,'0',teamA.name)
EndGame()
end