OGame Redesign: AutoExpoFleet for Miner

By Warlock8 Last update Jul 6, 2012 — Installed 5,163 times.

different setup?

in
Subscribe to different setup? 2 posts, 2 voices



GIM BLUTAXT User
FirefoxWindows

hi,
I would rather like to send
89 Heavy Fighter
48 Large Cargo Ship

how do I need to modify the script to achieve that?

thx ahead

kind Regard
GIM

 
Warlock8 Script's Author
FirefoxWindows

It's very simple, it is necessary to replace the code
calcUseShip(203, null);

var bt_lim0 = (evaluemax == 9000 ? 37 : 48);
var bt_lim1 = (evaluemax == 9000 ? 72 : 96);
var bt_lim9 = (evaluemax == 9000 ? 192 : 256);
var variant = 0;

if(c_getById(shipsNoSat, 203) >= bt_lim0) variant = 3;
if(c_getById(shipsNoSat, 203) >= bt_lim1) variant = 2;
if(c_getById(shipsNoSat, 203) >= bt_lim9) variant = 1;
switch (variant) {
case 1: {
break;
}
case 2: {
fillShips();
evalue = evaluemax;
calcUseShip(210, (evaluemax == 9000 ? 6 : 1));
calcUseShip(203, bt_lim1);
break;
}
case 3: {
fillShips();
evalue = evaluemax;
calcUseShip(210, 1);
calcUseShip(203, bt_lim0);
}
}
calcUseShip(203, null);
calcUseShip(202, null);
calcUseShip(205, null);

on this
calcUseShip(203, 48);
calcUseShip(205, null);
calcUseShip(202, null);

But then you'll never find more than 1.2 million metal.