Attacking planets: Difference between revisions

From Galactic Empire wiki
Line 20: Line 20:


== Spies ==
== Spies ==
Spies level of confidence is random number between 50 and 98.<ref>GEPLANET.C line 168: d_odds = 50.0+rndm(48.0);</ref>
Spies level of confidence is random number between 50 and 98.<ref>GEPLANET.C line 168: d_odds = 50.0+rndm(48.0);</ref> For example, if the spy has a level of confidence of 75, the amount of an item reported can be anywhere between 75% of the actual amount and 125% of the actual amount.<ref>GEPLANET.C line 176: d_rptcnt = d_itemcnt - (d_itemcnt*rndm(d_odds)) + (d_itemcnt*rndm(d_odds));</ref>

Revision as of 13:03, 26 April 2024

Stages

Preparation

Fighters take out fighters

Fighters take out fighters and other items

Fighters take out fighters, and some return

No more fighters

Troops take out troops

Troops take out troops and other items

Troops take out troops, and some return

YAAAA!

Spies

Spies level of confidence is random number between 50 and 98.[1] For example, if the spy has a level of confidence of 75, the amount of an item reported can be anywhere between 75% of the actual amount and 125% of the actual amount.[2]

  1. GEPLANET.C line 168: d_odds = 50.0+rndm(48.0);
  2. GEPLANET.C line 176: d_rptcnt = d_itemcnt - (d_itemcnt*rndm(d_odds)) + (d_itemcnt*rndm(d_odds));