I am stuck at the achievment where i have to kill 1.000.000 ships on enemy planets. There are 2 options for me: mission 30. Disable the timer somehow (i managed to freeze the timer but theres one in the background that keeps on going and will end the game once it hits 0).
The other option would be:
Add an option that does the same, "Mininmum 10 ships on players planet", to the enemy players planet. I tried to code this with cheat engine but i'm just too bad at doing this..
1. open the .CT in cheat enginge from first post. checkmark money and atleast 10ships on players planet.
2. download autohotkey, start it, leave it open
3. copy the following code into a file, rename the ending to .ahk
4. move coded file into autohotkey
5. open skirmish, Clover 2player map. select human race and Techs by rows : 2, 3, 5
6. put game into windowed and lowest resolution, because the script is made for that reso
7. put cheat enginge to x 20 speedhack
8. press ctrl+j when you have started the map to activate the autohotkey script
9. this gave me about 420kills per ~6sec. so instead of almost 30hours, you do might so this in like 3-4 hours but you need leave your pc running and dont interrupt the script because it cancels it.. the game goes in pause when you alt+tab. when you interrupt the script, you have to run the .ahk script again (for me ctrl+j didnt work anymore once interrupted)
(10.) might change in ahk script the sleep 100 into 150 or 200 and the sleep 1400 to 2000, only if your PC is not quick enough. this was the case for the steamfriend.
have fun
code for .ahk file, created by a steamfriend:
send_ships(x, y, sleep_time)
{
MouseMove, x, y
Click, down
Sleep, sleep_time
Click, up
}
restart()
{
ControlSend,,{Escape}, Planets Under Attack release build 496 (Oct 1 2012 18:39:45)
Sleep, 100
ControlSend,,{Down}, Planets Under Attack release build 496 (Oct 1 2012 18:39:45)
Sleep, 100
ControlSend,,{Enter}, Planets Under Attack release build 496 (Oct 1 2012 18:39:45)
Sleep, 100
ControlSend,,{Enter}, Planets Under Attack release build 496 (Oct 1 2012 18:39:45)
Sleep, 100
ControlSend,,{Enter}, Planets Under Attack release build 496 (Oct 1 2012 18:39:45)
Sleep, 100
}