Start With 3 Extra Freighters
From PlanetsWiki
Contents |
[edit] Overview
This gives 3 Large Deep Space Freighters (LDSF 1, LDSF 2, LDSF 3) each with warp 90.
[edit] Notes
As of Master / Host 199, The following races do not get any new ships. More info Here.
[edit] Code
If g_startbooExtraShips Then
For i = 1 To 30
If ingame(i) = 1 And playerass(i) > 0 Then
If BigRaceID(playerass(i)) > 100 Then
'// Empire Don't get any
If BigRaceID(playerass(i)) <> 108 Then
'// Solorian Don't Get Any //
If BigRaceID(playerass(i)) <> 811 Then
'// Colonies Don't Get Any //
If BigRaceID(playerass(i)) <> 111 Then
For z = 1 To 3
RollShip 18
ship.pNum = i
ship.eng = 17
ship.xShip = xc(i)
ship.yShip = yc(i)
ship.nm = "LDSF " & Str$(z)
Crypt ship.nmxor, ship.nm
ship.ShipLog = String$(40, 32)
Crypt ship.logxor, ship.ShipLog
SpawnShip
Next z
End If
End If
End If
End If
End If
Next i
End If
The feature is by design and not a bug. Tim
