share/hedgewars/Data/Maps/Control/map.lua
changeset 5325 261b79ba22b1
parent 4953 ebd3dae634ca
child 5806 6778f0a7d896
equal deleted inserted replaced
5322:1bcc12a30d5d 5325:261b79ba22b1
   350 			reN = 15		
   350 			reN = 15		
   351 		end
   351 		end
   352 		--AddCaption(zz) -- number of times it took to work
   352 		--AddCaption(zz) -- number of times it took to work
   353 	end
   353 	end
   354 
   354 
   355 	ShowMission(loc("CONTROL v0.3"), loc(""), loc("Control pillars to score points.") .. "|" .. loc("Goal:") .. " " .. pointLimit .. " " .. loc("points"), 0, 0)
   355 	ShowMission("CONTROL v0.3", "", loc("Control pillars to score points.") .. "|" .. loc("Goal") .. ": " .. pointLimit .. " " .. loc("points"), 0, 0)
   356 
   356 
   357 
   357 
   358 end
   358 end
   359 
   359 
   360 
   360 
   388 			TurnTimeLeft = 1
   388 			TurnTimeLeft = 1
   389 		end
   389 		end
   390 
   390 
   391 		for i = 0,5 do
   391 		for i = 0,5 do
   392 				if teamNameArr[i] ~= " " then				-- i
   392 				if teamNameArr[i] ~= " " then				-- i
   393 					teamComment[i] = teamNameArr[i] .. ": " .. teamScore[teamClan[i]] .. loc (" points|")
   393 					teamComment[i] = teamNameArr[i] .. ": " .. teamScore[teamClan[i]] .. " " .. loc("points") .. "|"
   394 				elseif teamNameArr[i] == " " then
   394 				elseif teamNameArr[i] == " " then
   395 					teamComment[i] = "|"
   395 					teamComment[i] = "|"
   396 				end
   396 				end
   397 			end
   397 			end
   398 			ShowMission(loc("CONTROL"), loc("Team Scores:"), teamComment[0] .. teamComment[1] .. teamComment[2] .. teamComment[3] .. teamComment[4] .. teamComment[5], 0, 1600)
   398 			ShowMission("CONTROL", loc("Team Scores") .. ":", teamComment[0] .. teamComment[1] .. teamComment[2] .. teamComment[3] .. teamComment[4] .. teamComment[5], 0, 1600)
   399 	
   399 	
   400 	end
   400 	end
   401 
   401 
   402 end
   402 end
   403 
   403