Sudden Strike 4 (GM and More) 2019-Feb-23

Upload your cheat tables here (No requests)
TimFun13
Expert Cheater
Expert Cheater
Posts: 1354
Joined: Fri Mar 03, 2017 12:31 am
Reputation: 6

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by TimFun13 »

kirby59 wrote:
Wed Oct 17, 2018 4:02 pm
Recifense wrote:
Sun Oct 14, 2018 6:55 pm
kirby59 wrote:
Sat Oct 13, 2018 3:00 pm

I can not activate. The script does not work.
Image
How did you get this message?

Cheers!
Double click on the script, then in the appeared window, push Ctrl+A (select all), Ctrl+C (copy all), press the button "OK". Then In the main window of Cheat Engine call a Memory Viewer. Go to the menu Tools->Auto Assemble and push Ctrl+V (paste all) and press the button "Execute" and get an the error:
Image
I think, therefore, the script cannot be activated.
Those scripts are CE table framework scripts, they have extra stuff (disable and enable sections) to "execute" a script like that you would need to edit the script to only have one section. And on the table some scripts require other script to have been ran; so that's why it can't find the "MOSR" symbol, it was never created.

Why not just use the table as is? Just enable the scripts you want.
It's fine to edit stuff, but you really need to understand what's going on in the script, thus you need to also understand how the scripting works in CE.
There are some tutorials here at the forum, and the [Link] also has some.

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1

mattynipps
What is cheating?
What is cheating?
Posts: 2
Joined: Wed Oct 17, 2018 4:32 pm
Reputation: 0

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by mattynipps »

It appears the game has been updated yet again (Steam version anyway)...
From version 1.12.28250
To version: 1.12.28732
therefore the latest versions of the cheats are not working.

ezafach
Cheater
Cheater
Posts: 27
Joined: Thu Oct 18, 2018 3:58 pm
Reputation: 5

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by ezafach »

Can not active 1.12.28520 PLAZA

edit: sorry, it works, I don't know if this needs to be activated in-game, not only from the main menu.. thank you :D

kirby59
Expert Cheater
Expert Cheater
Posts: 83
Joined: Sat Aug 19, 2017 8:36 am
Reputation: 9

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by kirby59 »

ShyTwig16 wrote:
Wed Oct 17, 2018 4:28 pm
Those scripts are CE table framework scripts, they have extra stuff (disable and enable sections) to "execute" a script like that you would need to edit the script to only have one section. And on the table some scripts require other script to have been ran; so that's why it can't find the "MOSR" symbol, it was never created.

Why not just use the table as is? Just enable the scripts you want.
It's fine to edit stuff, but you really need to understand what's going on in the script, thus you need to also understand how the scripting works in CE.
There are some tutorials here at the forum, and the [Link] also has some.
The fact is that if do this:
//assert(MOSR,48 8B 47 38 F3 0F 10 80 10 01 00 00)
then the script is activated, but the game crashes.
The problem lies somewhere in this Lua script:

Code: Select all

local a = readInteger("ServerUnit:GetSightRange+02cf")
  local s0 = string.format("%X",a)
  local a = readInteger("ServerUnit:GetSightRange+027a")
  local s1 = string.format("%X",a)
  if (s0 == "38478B48") then
    return "define(MOSR,ServerUnit:GetSightRange+02cf)"
  elseif (s1 == "38478B48") then
    return "define(MOSR,ServerUnit:GetSightRange+027a)"
  else
    return ""
  end
When I try to execute it, an error occurs:

Error:[string "local a = readInteger("ServerUnit:GetSightRan..."]:2: bad argument #2 to 'format' (number expected, got nil)

This lua script sometimes works, but the main script i can not activated.

TimFun13
Expert Cheater
Expert Cheater
Posts: 1354
Joined: Fri Mar 03, 2017 12:31 am
Reputation: 6

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by TimFun13 »

kirby59 wrote:
Sat Oct 20, 2018 3:52 am
...
The fact is that if do this:
//assert(MOSR,48 8B 47 38 F3 0F 10 80 10 01 00 00)
then the script is activated, but the game crashes.
The problem lies somewhere in this Lua script:

Code: Select all

local a = readInteger("ServerUnit:GetSightRange+02cf")
  local s0 = string.format("%X",a)
  local a = readInteger("ServerUnit:GetSightRange+027a")
  local s1 = string.format("%X",a)
  if (s0 == "38478B48") then
    return "define(MOSR,ServerUnit:GetSightRange+02cf)"
  elseif (s1 == "38478B48") then
    return "define(MOSR,ServerUnit:GetSightRange+027a)"
  else
    return ""
  end
When I try to execute it, an error occurs:

Error:[string "local a = readInteger("ServerUnit:GetSightRan..."]:2: bad argument #2 to 'format' (number expected, got nil)

This lua script sometimes works, but the main script i can not activated.
Sounds like a version difference, with the readInteger returning nil; see if in the memory viewer you can "go to [this] address" ServerUnit:GetSightRange.
You can put in a check for nil, but you'll still have the issue of not finding the address.

Code: Select all

local a = readInteger("ServerUnit:GetSightRange+02cf")
  local s0 = string.format("%X",a or 0)
  a = readInteger("ServerUnit:GetSightRange+027a")
  local s1 = string.format("%X",a or 0)
  if (s0 == "38478B48") then
    return "define(MOSR,ServerUnit:GetSightRange+02cf)"
  elseif (s1 == "38478B48") then
    return "define(MOSR,ServerUnit:GetSightRange+027a)"
  else
    return ""
  end

aaronpaul
What is cheating?
What is cheating?
Posts: 2
Joined: Mon Oct 22, 2018 10:40 am
Reputation: 0

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by aaronpaul »

anyone working on this? :)

wilbur
Novice Cheater
Novice Cheater
Posts: 21
Joined: Wed Dec 20, 2017 3:33 pm
Reputation: 0

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by wilbur »

this is gonna sound stupid but after playing for 3 days the cheat table no longer responds, when i try to activate it,game is still the same as previous days, no updates applied ,1.12.28250

aaronpaul
What is cheating?
What is cheating?
Posts: 2
Joined: Mon Oct 22, 2018 10:40 am
Reputation: 0

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by aaronpaul »

The table isnt working because Sudden Strike 4 was updated

Rexurioz
Expert Cheater
Expert Cheater
Posts: 56
Joined: Sat Jun 03, 2017 5:07 pm
Reputation: 3

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by Rexurioz »

update pls

bulluk
Noobzor
Noobzor
Posts: 9
Joined: Fri Apr 21, 2017 10:25 am
Reputation: 1

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by bulluk »

i'm playing the sudden strike 4 with desert DLC version 1.12.28520, and somehow the table for the 1.12.28520 didn't work on me. :(
would you please take a look on the table, Recifense?

Rexurioz
Expert Cheater
Expert Cheater
Posts: 56
Joined: Sat Jun 03, 2017 5:07 pm
Reputation: 3

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by Rexurioz »

why does the game crash when I click in cheat engine "Find out what writes to this adress "?

Rexurioz
Expert Cheater
Expert Cheater
Posts: 56
Joined: Sat Jun 03, 2017 5:07 pm
Reputation: 3

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by Rexurioz »

https://youtu.be/JxcG2hwyl3E

mattynipps
What is cheating?
What is cheating?
Posts: 2
Joined: Wed Oct 17, 2018 4:32 pm
Reputation: 0

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by mattynipps »

Steam version has been updated again, now to version: 1.13.29179

hajesu
What is cheating?
What is cheating?
Posts: 4
Joined: Tue Dec 04, 2018 3:12 pm
Reputation: 0

Re: Sudden Strike 4 (GM and More) 2018-Oct-14

Post by hajesu »

Please update for origin version 1.12.28660.
Thanks

User avatar
Recifense
Table Makers
Table Makers
Posts: 1446
Joined: Thu Mar 02, 2017 11:25 pm
Reputation: 3423

Re: Sudden Strike 4 (GM and More) 2018-Dec-14

Post by Recifense »

Hi guys,

A table was added for version 1.14.29902. Please look at the first post.

Cheers!

Post Reply

Who is online

Users browsing this forum: AhrefsBot, Audience3339, bigkorban, Bing [Bot], DotBot, ElderMagi, Ginger256, Google [Bot], Google Adsense [Bot], mastahcow, MiorineRembran, Nippah, Rol 66, saulob, seefusensei, theemark, valgul, WankHole, WayLen, YeeYeeHaw