# HG changeset patch # User Wuzzy # Date 1479959809 -3600 # Node ID e8458438dcee30f4e708ae9ef81a5176c620ea16 # Parent 1ebda99fd34a490383181c886ddea8dcb1a20085 More helpful Space Invasion description diff -r 1ebda99fd34a -r e8458438dcee share/hedgewars/Data/Scripts/Multiplayer/Space_Invasion.lua --- a/share/hedgewars/Data/Scripts/Multiplayer/Space_Invasion.lua Thu Nov 24 04:24:56 2016 +0100 +++ b/share/hedgewars/Data/Scripts/Multiplayer/Space_Invasion.lua Thu Nov 24 04:56:49 2016 +0100 @@ -708,9 +708,11 @@ local comment if teamStats[i].name ~= " " then local comment = teamStats[i].name .. " |" .. - string.format(loc("Score: %d points"), teamStats[i].score) .. "|" .. - string.format(loc("Kills: %d invaders destroyed"), teamStats[i].kills) .. "|" .. - " " .. "|" + string.format(loc("Score: %d"), teamStats[i].score) .. "|" .. + string.format(loc("Kills: %d"), teamStats[i].kills) + if i < TeamsCount then + comment = comment .. "| |" + end table.insert(teamComment, comment) SendStat(siClanHealth, tostring(teamStats[i].score), teamStats[i].name) @@ -1230,7 +1232,13 @@ loc("SPACE INVASION"), loc("A Hedgewars mini-game"), - loc("Destroy invaders to score points.") .. "|" .. + loc("Fly into space to fight off the invaders with barrels!") .."|".. + loc("Destroy invaders and collect bonuses to score points.") .. "|" .. + loc("Get the highest score to win.") .. "|" .. + " " .. "|" .. + loc("Avoid bazookas, red and blue invaders.") .. "|" .. + loc("Collect the green and purple invaders.") .. "|" .. + loc("Use the shield to protect yourself from bazookas.") .. "|" .. " " .. "|" .. string.format(loc("Round Limit: %d"), roundLimit) .. "|" .. @@ -1821,7 +1829,7 @@ if (vType[i] == "drone") then PlaySound(sndHellishImpact4) TimeLeft = TimeLeft + timeBonus - AddCaption(string.format(loc("Time Extended! +%dsec"), timeBonus), 0xff0000ff,capgrpMessage ) + AddCaption(string.format(loc("Time extended! +%dsec"), timeBonus), 0xff0000ff,capgrpMessage ) DrawTag(0) morte = AddGear(vCircX[i], vCircY[i], gtExplosives, 0, 0, 0, 1)