Template:HostDiffs: Difference between revisions

From VGA Planets Wiki
Jump to navigationJump to search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Differences between NuHost and Host 3.22 ==
== Differences between NuHost and Host 3.22 ==
 
{{{1|None}}}
1. Different ammount of mines, factories and defenses:
<noinclude>[[Category:Templates]]</noinclude>
 
Taken from Donovans:
Maximum structures
The number of structures allowed on a planet is limited by the number of clans present. The first time this is checked for is during building:
you cannot build more clans than the number of clans on the planet allows. The maximum number of structures is checked again later in the hostrun, when structures decay.
 
Mines: one for every clan up to 200, above that it's 200+SQRT(clans-200)
Factories: one for every clan up to 100, above that it's 100+SQRT(clans-100)
Effectively this is one for every clan up to 101, due to SQRT(101-100) being 1
Defenseposts: one for every clan up to 50, above that it's 50+SQRT(clans-50)
 
NU: Uses the math.floor (truncate) function
THOST/PHOST: Uses the round function, so in some cases there can be one more item.
 
2. Fuel Use:
 
THOST: Taken from Donovans:
fueluse = TRUNC [fuelfactor * ( TRUNC (mass/10) ) * ( (TRUNC(distance) / maxtravel) / 10000 ) ]
 
NU acts like PHost:
Taken from Phost-Helps
Fuel consumption = TRUNC(ERND((FuellessShipMass+ShipFuel)/10)* 10*FUEL_CONSUMPTION_RATE*TRUNC(DistanceToTravel))

Latest revision as of 18:48, 19 June 2016

Differences between NuHost and Host 3.22

None