Talk:Web Minefield

From PlanetsWiki

Jump to: navigation, search
  • Web Minefields do not drain fuel as they did in VGA Planets 3.

Can we get more testing on this it does work in my observation, had a COM fighter wing escorting a minelayer fleet of a ally crystal player run out of fuel when the ally was moving 11 ly a turn (COM wing should never have run out of fuel as it will generate 30 per turn.Morningstar 08:40, 3 December 2006 (CET)

Wings escorting wings fuel consumption isn't working correctly. I'd test this without a minefield in the equation. --Magik 08:43, 3 December 2006 (CET)



[edit] Damage Code when a Web Minefield was Hit

rM = Hull.mass 
IF rM > 1 THEN 
  Ship.DamageHull = Ship.DamageHull + ((100 / rM) * (RND * 4 + 20)) 
  Ship.DamageEngine = Ship.DamageEngine + ((100 / rM) * RND * 40) + 40 
  AllStop id 
  'printout "Web Hit! All Stop: " & Str$(id) 
  SaveShip id 
  If Ship.DamageHull > 99 Then 
    sText = sText & "*** DAMAGE AT: " & Str$(Ship.DamageHull) & ek 
    sText = sText & "*** Object destroyed" & eK 
    sSub = "Mine Hit: WEB MINE" 
  Else 
    sText = sText & "Ship damage at: " & Str$(Ship.DamageHull) & ek 
  End If   
  If Ship.DamageEngine > 99 Then 
    sText = sText & "*** ENGINE DAMAGE AT: " & Str$(Ship.DamageEngine) & ek 
    sSub = "Mine Hit: WEB MINE" 
  Else 
    sText = sText & "Ship engine damage at: " & Str$(Ship.DamageEngine) & ek 
  End If   
END IF
Personal tools