share/hedgewars/Data/Missions/Training/Basic_Training_-_Rope.lua
changeset 12349 877f55c77a3f
parent 12055 daf63e2a21d2
child 12429 b9cc405541c1
equal deleted inserted replaced
12348:6ff01dc1ffe2 12349:877f55c77a3f
    37 	PlaySound( sndVictory, Player )
    37 	PlaySound( sndVictory, Player )
    38 
    38 
    39 	AddCaption( loc( "Victory!" ))
    39 	AddCaption( loc( "Victory!" ))
    40 	if TurnTimeLeft >= 250000 then -- If you very fast, unlock the ahievement "Rope Master!"
    40 	if TurnTimeLeft >= 250000 then -- If you very fast, unlock the ahievement "Rope Master!"
    41 		RopeMaster = true
    41 		RopeMaster = true
    42 		AddCaption( loc( "Achievement obtained: Rope Master!" ),0xffba00ff,capgrpAmmoinfo )
    42 		AddCaption( string.format(loc( "Achievement gotten: %s"), loc("Rope Master") ),0xffba00ff,capgrpAmmoinfo )
    43 		PlaySound( sndHomerun )
    43 		PlaySound( sndHomerun )
    44 	end
    44 	end
    45 	Objective = true
    45 	Objective = true
    46 end }
    46 end }
    47 
    47