Page 19 of 28

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Wed Mar 24, 2021 6:06 am
by zzpudimzz
launch via the normal exe.

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Wed Mar 24, 2021 9:22 am
by IlieMarius1
OMG! I never checked for multiple executables. Thank you. Table works after I 2x load it.

LE : Crashes the game too often though, every 10 mins or so with just god mode activated.

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Wed Mar 24, 2021 7:19 pm
by zzpudimzz
weird, on my end is running just fine for hours and i'm also using mods. Usually i only crash from time to time because dx11 error.

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Fri May 28, 2021 2:25 pm
by Ozzie1111
I tried and tried but could not implement the ship speed script by mnomic to the original table. Is it possible for someone or OP to aid in this regard? Thanks in advance and thanks for your work!

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Fri Jun 18, 2021 11:59 am
by stetzen
Do you have any plans to update the table for the latest version of the game?

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Wed Jun 23, 2021 11:51 pm
by zzpudimzz
here to confirm the minimum stock is not working with the new version (11.1), other options from what i checked are working fine. If recifense or someone else with the knowledge could check would i would appreciate.
Edit: Began a new game and is working fine for the moment.

Re: Anno 1800 v4.2.880604 UPLAY (GM and More) 2019-Aug-14

Posted: Thu Aug 19, 2021 5:25 am
by Vladbill
mnomic wrote:
Fri Sep 06, 2019 1:07 pm
Hi,
just figured out, how ship speed is handled ...
if someone ie. @Recifense wants to tinker this into the general script, feel free ...

Cheers mnomic

Code: Select all

{ Game   : Anno1800.exe
  Version: 
  Date   : 2019-09-01
  Author : mnomic

  This script does blah blah blah
}

define(address,"Anno1800.exe"+6A0D205)
define(bytes,F3 0F 11 40 34)

[ENABLE]

assert(address,bytes)
alloc(newmem,$1000,"Anno1800.exe"+6A0D205)

label(fltShipSpeedMultiplier)
label(code)
label(return)

registersymbol(fltShipSpeedMultiplier)

newmem:
 push rcx
 mov rcx,[rbx+08]
 test rcx,rcx
 jz code

 movzx ecx,word ptr [rcx+44]    // player id
 cmp ecx,0
 jne code

 movss xmm0,[fltShipSpeedMultiplier]

code:
  pop rcx
  movss [rax+34],xmm0
  jmp return

align 10 CC
fltShipSpeedMultiplier:
 dd (float)25.0

address:
  jmp newmem
return:

[DISABLE]

address:
  db bytes   // movss [rax+34],xmm0

unregistersymbol(fltShipSpeedMultiplier)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: "Anno1800.exe"+6A0D205
// ---------- INJECTING HERE ----------
"Anno1800.exe"+6A0D205: F3 0F 11 40 34           -  movss [rax+34],xmm0
// ---------- DONE INJECTING  ----------
}

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Thu Aug 19, 2021 5:29 am
by Vladbill
Hi, Im really new at codes and cheats. I would really appreciate if you could write some steps on how I can add your code inside the one in the cheat table.

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Thu Aug 26, 2021 7:41 pm
by pharaon
hope you can help me with tips to find timer for instant building for ships

Re: Anno 1800 v4.2.880604 UPLAY (GM and More) 2019-Aug-14

Posted: Thu Aug 26, 2021 7:59 pm
by pharaon
i'm playing different vesrion, and i'd like to know how did you find timer
mnomic wrote:
Sun Sep 08, 2019 11:16 am
Hi again,

just one more script goodie for ... fast/immediately ship build ...

Cheers,
--- mnomic

Code: Select all

{ Game   : Anno1800.exe
  Version: 
  Date   : 2019-09-08
  Author : mnomic

  This script does blah blah blah
}

define(address,"Anno1800.exe"+64C5976)
define(bytes,F3 0F 11 46 14)

[ENABLE]

assert(address,bytes)
alloc(newmem,$1000,"Anno1800.exe"+64C5976)

label(code)
label(return)

newmem:
 push rcx
 mov rcx,[rbx+08]
 test rcx,rcx
 jz code

 movzx ecx,word ptr [rcx+44]    // player id
 cmp ecx,0
 jne code

 mov [rsi+14],(float)0.0
 movss xmm0,[rsi+14]
code:
 pop rcx
 movss [rsi+14],xmm0
 jmp return

address:
  jmp newmem
return:

[DISABLE]

address:
  db bytes
  // movss [rsi+14],xmm0

dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: "Anno1800.exe"+64C5976
// ---------- INJECTING HERE ----------
"Anno1800.exe"+64C5976: F3 0F 11 46 14           -  movss [rsi+14],xmm0
// ---------- DONE INJECTING  ----------
}

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Wed Sep 01, 2021 11:05 am
by MountainOfBooks
Hi everyone,
New DLC The High Life has updated Anno 1800.
Does anybody else have issues loading the latest table?? (from 2021-Mar-21: Release for version 10.1.990580)
Thanks in advance!

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Wed Sep 01, 2021 3:40 pm
by jjalexander
@MountainOfBooks: As expected when a new version of the game comes out, the table stops working.

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Thu Sep 02, 2021 3:53 pm
by flashboth
Hello Recifence,
Please update 12.0
thanks in advance!

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Fri Sep 03, 2021 1:20 am
by zyzerg
please update 12.0 , thanks~

Re: Anno 1800 v10.1.990580 UPLAY (GM and More) 2021-Mar-21

Posted: Sat Sep 04, 2021 6:20 pm
by blaba
Please update v12 thanks :)