Page 1 of 2

Muck Cheat Engine Table

Posted: Sun Aug 08, 2021 4:53 am
by Frouk
Cheat Engine Table for Steam version,
Tables was created for last version
Old versions are not supported(i wasn't able to check on old versions, so idk if tables supporting old versions)


Features
Godmode
No hunger
Unlimited stamina
Unlimited jumps
Set Armor
Freeze Timer
Picked powerups +1 from global
Picked powerups = Total picked powerups
Free boat repair
No arrow use
Free Chests
Override powerup amount
Free Crafting
Infinite Hit Reach
Large Hit Radius
Bypass Item Limit
Infinite Building Items
No Food Item Depletion
Instant Furnace
Infinite Furnace Fuel
Infinite Battle Totem
Enemy no attack
Stack Crafting(Shift + LMB)(Caution: Lags)
Enemies don't attack buildings
Modifiable Attack Speed
Noclip
Item Spawner
One Hit Kill
Pickup Anything
Changelog
v.1.0: Release
v.1.1: Added possibility to initialize all addresses, hotbar,power up and item manager
v.1.2: Deleted power up name(basicly it's was just a name and description),Now you can edit value of power ups(i'm using mono dissector
to dissect data, but some errors may need to be fixed)
v.1.3: Added godmode,heal player and free chests/trades(money don't spend if you buying something or opening chest,game still will check if you have enough coins, nopping the method that checks coins will delete coins from your inventory)
v.1.4: Sorted headers and deleted m_pCached, reduced table size
v.1.5: Added infinite usage of current item script
v.1.6: Added Player Movement header
v.1.7: Reduced scripts size,added noclip(broken),maded intialize all script,heal player now restores shield capacity
v.1.8: Added headers:
  • Game Manager
  • Build Manager
  • Boss UI
  • Furnace UI
  • Couldron UI
Added scripts:
  • Full Stamina
  • Full Hunger
  • Full Stamina & Hunger
v.1.9: Added:
  • Coin Instance
  • Player Instance
  • Set Armor
and etc.
v.2.0: Added free boat repair,free chests,override money(when used),override powerup amount,add amount to picked up item(if item stored in it) and etc.
v.2.1: As incompitence in old times, I've decided to re-work on this table
v.2.2: Fixed "Instant Furnace", which only would melt first item slow(now it is instant)
v.2.3: Fixed "One Hit Kill" and made it in one script
v.2.4: Added stack crafting(hold shift while crafting), fixed modified powerups not displayed correctly
v.2.5: You can now spawn items
v.2.6: Working Noclip and removed some useless scripts
Notes
Some features are client sided and server sided(if you're host,some features or values will apply to all players)
What is server-side and client-side?
  • Client-side means that the action takes place on the user’s (the client’s) computer
  • Server-side means that the action takes place on a server
All newest versions of table are located in Muck Cheat Tables.7z,i will no longer post tables in new posts, instead of posting tables in new posts i will keep updating .7z file
What happened to posts with tables?
  • They have been deleted because nobody wants to download .7z file
  • Tables in posts have more downloads than .7z file
  • I've pushed all updates in .7z file, but no one wanna to download file
What initializing breakpoint means?
  • Means that to initialize address you need to play 10 sec or less in game to initialize address
Some cheats in table was made in lua
From this moment tables updates will take longer
Download:
Muck Cheat Tables.7z
password: FearLess
(37.47 KiB) Downloaded 4777 times
Last Version:
Muck.CT
v.2.6
(172 KiB) Downloaded 42 times

Re: Muck Cheat Engine Table

Posted: Sun Aug 08, 2021 7:49 pm
by Frouk
v.1.1: Added possibility to initialize all addresses, hotbar,power up and item manager

Re: Muck Cheat Engine Table

Posted: Mon Aug 09, 2021 6:23 am
by lightfoot_evan
This is very confusing especially the power ups

Re: Muck Cheat Engine Table

Posted: Mon Aug 09, 2021 6:54 am
by Frouk
v.1.2: Deleted power up name(basicly it's was just a name and description),Now you can edit value of power ups(i'm using mono dissector
to dissect data, but some errors may need to be fixed)

Re: Muck Cheat Engine Table

Posted: Mon Aug 09, 2021 6:55 am
by Frouk
lightfoot_evan wrote:
Mon Aug 09, 2021 6:23 am
This is very confusing especially the power ups
In v.1.2 you can edit vakue of power ups

Re: Muck Cheat Engine Table

Posted: Mon Aug 09, 2021 7:09 am
by aSwedishMagyar
Howdy, noticed you're using statics to get your pointers and that's great. You should know though that once the method has been JIT compiled that base static address is always the same so you can simply register that and use it as a base in a 'Pointer' memory record instead of just a regular address (using the functions I have below you would keep everything else the same but turn each of the main headers into a pointer record).

Here are some functions I use to setup my statics in a mono game (easier to keep track of as a table of names instead of individual functions). I've added the class names you were using to the getStaticsList():

Code: Select all

function getStaticsList()
	return {'PlayerStatus','DayCycle','PowerupInventory','Hotbar','ItemManager'}
end
function registerBaseAddresses()
	local staticsList = getStaticsList()
    for i = 1,#staticsList do setupStatics(staticsList[i]) end
end
function unregisterBaseAddresses()
	local staticsList = getStaticsList()
    for i = 1,#staticsList do unregisterSymbol(staticsList[i]) end
end
function setupStatics(statName)
	local classId = mono_findClass('',statName)
	local stat = mono_class_getStaticFieldAddress(nil, classId)
    if stat and stat ~= 0 then unregisterSymbol(statName); registerSymbol(statName,stat) end
end
To use this in your table you would just call registerBaseAddresses() in the enable section and unregisterBaseAddresses() in the disable section.

Cheers,
aSwedishMagyar

Re: Muck Cheat Engine Table

Posted: Tue Aug 10, 2021 6:29 am
by Frouk
v.1.3: Added godmode,heal player and free chests/trades(money don't spend if you buying something or opening chest,game still will check if you have enough coins, nopping the method that checks coins will delete coins from your inventory)

Re: Muck Cheat Engine Table

Posted: Thu Aug 12, 2021 5:27 am
by Frouk
v.1.4: Sorted headers and deleted m_pCached, reduced table size

Re: Muck Cheat Engine Table

Posted: Fri Aug 13, 2021 4:47 am
by Cheater69
Wow, you are not really a great listener, right Frouk? STN warned you about spamming your own threads. Oh, that is right. You do it because you do not like your threads being dead, right? I have read that BS from your San Andreas thread. Well... It is your funeral.

Re: Muck Cheat Engine Table

Posted: Fri Aug 13, 2021 1:04 pm
by Frouk
Cheater69 wrote:
Fri Aug 13, 2021 4:47 am
Wow, you are not really a great listener, right Frouk? STN warned you about spamming your own threads. Oh, that is right. You do it because you do not like your threads being dead, right? I have read that BS from your San Andreas thread. Well... It is your funeral.
Like nobody was doing this thing

Re: Muck Cheat Engine Table

Posted: Sat Aug 14, 2021 2:29 pm
by Frouk
All newest versions of table are located in Muck Cheat Tables.7z,i will no longer post tables in new posts, instead of posting tables in new posts i will keep updating .7z file

Re: Muck Cheat Engine Table

Posted: Sun Aug 15, 2021 6:20 am
by Frouk
Should i make heal function restore hunger and stamina as well?

Re: Muck Cheat Engine Table

Posted: Mon Aug 16, 2021 9:37 am
by Frouk
Frouk wrote:
Sun Aug 15, 2021 6:20 am
Should i make heal function restore hunger and stamina as well?
I'm still waiting for respond...

Re: Muck Cheat Engine Table

Posted: Mon Aug 16, 2021 4:34 pm
by Frouk
Frouk wrote:
Sun Aug 15, 2021 6:20 am
Should i make heal function restore hunger and stamina as well?
Nobody responded so i maded those functions separately

Re: Muck Cheat Engine Table

Posted: Sat Aug 21, 2021 10:57 am
by Frouk
I've converted all asm scripts into lua so all asm scripts are in lua table