Page 1 of 3

SuperMarket Together Cheat Table v2.0.1.6 InDev [06/02/2025]

Posted: Tue Aug 13, 2024 2:31 pm
by Shaggalicious
SuperMarket Together Cheat Table

Steam Link:



06/02/25
This game updates very frequently, if the table isnt updated here yet or if you have any questionf feel free to join our discord : [Link]


Image

Download
06/02/2025
supermarket-together-v2.0.1.6.CT
06/02/25
(453.4 KiB) Downloaded 16034 times
Old Versions
Spoiler
25/08/24
Supermarket Together v1.4.7 InDev.CT
25/08/24
(135.03 KiB) Downloaded 51749 times
19/08/24
Supermarket Together v1.4 InDev.CT
19/08/24
(90.53 KiB) Downloaded 6868 times
15/08/24
Supermarket Together v1.2 inDev.CT
15/08/24
(47.49 KiB) Downloaded 5201 times
13/08/24
Supermarket Together v1.CT
13/08/24
(22.63 KiB) Downloaded 2797 times
Extra thanks to: Jarsa1312, stigmaoffire, send & camohax for their contributions

Re: SuperMarket Together Cheat Table v1 [13/08/2024]

Posted: Wed Aug 14, 2024 1:28 am
by TheDronBit007
1. Code to server DS not work.
2. Table see not currect values. EXP look like 1167867904 and 575

Re: SuperMarket Together Cheat Table v1 [13/08/2024]

Posted: Wed Aug 14, 2024 8:36 am
by ZNMars
Doesnot work

Re: SuperMarket Together Cheat Table v1 [13/08/2024]

Posted: Wed Aug 14, 2024 4:20 pm
by Shaggalicious
TheDronBit007 wrote:
Wed Aug 14, 2024 1:28 am
1. Code to server DS not work.
2. Table see not currect values. EXP look like 1167867904 and 575
ZNMars wrote:
Wed Aug 14, 2024 8:36 am
Doesnot work
i've been trying to update the table today but havent had enough work. i posted an indev version in the discord server
this link might work
[Link]

Re: SuperMarket Together Cheat Table v1.4 InDev [19/08/2024]

Posted: Mon Aug 19, 2024 6:08 pm
by Shaggalicious
also uploaded v1.4 indev here

Re: SuperMarket Together Cheat Table v1.4 InDev [19/08/2024]

Posted: Fri Aug 23, 2024 3:49 pm
by stigmaoffire
Shaggalicious wrote:
Tue Aug 13, 2024 2:31 pm
SuperMarket Together Cheat Table

Steam Link:


Another Game i found in cheat requests, still early days table. if you want to help me test functions, have any questions or the table needs to be updated feel free to join my discord (invite code: n7QPrYn7p5). otherwise please tag me in your replies and if the table works for you an uprep would be appreciated :D


!! Posting InDev Table because of popularity. not updating post and table is not finished but since the amount of downloads i'm going to post it here!!

Image


Functions

Code: Select all

*Local Functions*
-Edit Money
	Allows you to change your money to whatever you want
-Edit Max Employees
	allows as many employees as you want
-Edit Franchise XP and Points
        allows you to set Franchise XP and Points
-Edit Max Customers     
	allows you to set max costumers
-Edit Storage/Space & Prices
	allows you to set the prices of store expansion   

*Online Functions*
-Give/Remove Money
	Adds or removes money in game session
-Unlock All Franchise upgrades
	unlock all franchise upgrades with 1 click
-Spawn Boxes
	allows you to spawn boxes as if they were purchased items
-Spawn Brooms/Tablets/Scanners	
	allows you to infinitely drop brooms/tablets/scanners.  extra explanation in discord
-Teleport to cool room/ manager room
	Shift+C to teleport to cool room/ Shift+X to teleport to manager room
-Edit Character and hat
	Allows you to change character and hat. extra explanation in discord
Download (InDev Half Working Version)
19/08/24
Supermarket Together v1.4 InDev.CT


Old Versions
Spoiler
15/08/24
Supermarket Together v1.2 inDev.CT
13/08/24
Supermarket Together v1.CT
Here is add funds script I made, feel free to use it.

Code: Select all

usemono()
[ENABLE]



{$lua}
--credits to Akira Fudo for the getStaticFieldAddress function
code = decodeFunction("c-n/h(2G}]5T032ZMT4,swjUV6)}X,c!UbAZB%ifs8S]akri+ks;xciH-cN(F-jkRHvj{Y0;]A0:!rLg8!y3*u_oxj11rt!eCzpkzMb*^CzJFLZoIy/adU%03d5Jr.P/-!LLwjs+IOujb]RJ;0Ov}y5yxE#cn:(1j%j/S=4eDq=)b/e%AzbQR9VvPLJf6kRl)KvCZ:z7ZXWC5@AVfH[HI0P+Vug6l*T,#+WpslF,1FmbJ3ZjTP!$5L=8ut-6;!cBYcadUO2}UR!R6:u]t#ng?f.vW1eIlOFnHluI0:T$QN.oYtHLV9X=]C6$_))fG]p8QTXm8?#v)EgEwBIWo=C+aj?es:m0s@gdK-(/_XhYS$gkkz%$M^tCzw4sTVYQXUhZ?Ueh1P-yO2/V0CX2;]!a?5dS!S8#]+:]ieEY7ps/DX)*)D7Y0o=pQd9Klh}zoo0qoGW:NY4k9xg0=H?5^J5HC!xygG2ZL)yPa[g[QxZlJ+9=n5pC{U},k5gqP/Ca?*.jg+Vx-M5@q(34.;0,VM;;$@MXSnt0JS*ftgHl/#@LLGZe+lF4t*B:MmXr")
code()
Sleep(1)


local newMoney = tonumber(inputQuery("Money to add", "amount:",""))
--getStaticFieldAddress(nameSpace, className, fieldName, IL2CPP, singletonMonoBehaviour, backingField)
local GameDataPTR = readPointer((getStaticFieldAddress('', 'GameData', 'Instance', false, false, false)))



local method = mono_findMethod('', 'GameData', 'CmdAlterFunds')

if method then

        local success, result = pcall(mono_invoke_method, nil, method, GameDataPTR, {
            { type = vtSingle, value = newMoney}
        })

        if success then
            print("Method 'CmdAlterFunds' invoked successfully")
            return'nop'
        else
            print("Failed to invoke method:", result)
        end
else
    print("Failed to find method 'CmdAlterFunds'")
end



{$asm}




 
[DISABLE]

{$lua}

Re: SuperMarket Together Cheat Table v1.4 InDev [19/08/2024]

Posted: Sat Aug 24, 2024 1:58 pm
by Shaggalicious
stigmaoffire wrote:
Fri Aug 23, 2024 3:49 pm
Hi, Thanks for taking the time to make this, i will definitely take part of this approach. the inputquery was something i was fiddling with so that helps out a bunch, and i might implement the succes/failure structure. However you may understand my apprehensiveness to publish someone elses obfuscated code (that i then don't know what it does exactly). Maybe i'm new and unaware that either CE doesn't allow much misuse in their scripts or this person is some well known figure that's broadly considered trustworthy. i hope you get where i'm coming from, and once again thanks for your effort, it's much appreciated <3

Re: SuperMarket Together Cheat Table v1.4 InDev [19/08/2024]

Posted: Sat Aug 24, 2024 4:33 pm
by Azrafen
Hello,

First of all, thanks for the hard work !

Secondly, I'm really new to this and I didn't find a way to change which box spawns when I check the option.

Once again, thank you ! :)

Re: SuperMarket Together Cheat Table v1.4.7 InDev [25/08/2024]

Posted: Sun Aug 25, 2024 4:10 pm
by Shaggalicious
uploaded 1.4.7 indev here aswell

Re: SuperMarket Together Cheat Table v1.4.7 InDev [25/08/2024]

Posted: Mon Sep 16, 2024 9:56 am
by bunkzirconium
Hi, I just wanted to check, is there an update to the current table?

Re: SuperMarket Together Cheat Table v1.4.7 InDev [25/08/2024]

Posted: Sun Sep 29, 2024 4:42 pm
by Shaggalicious
bunkzirconium wrote:
Mon Sep 16, 2024 9:56 am
Hi, I just wanted to check, is there an update to the current table?
sorry i didn't see your message yet, the game is getting updated every day or two now so i'm not keeping up with it on the forums, i post indev versions in the server that are mostly working though feel free to take a look: [Link]

Re: SuperMarket Together Cheat Table v1.4.7 InDev [25/08/2024]

Posted: Sat Oct 05, 2024 1:33 pm
by nicky9270
Hey when i try to press game data it doesnt work i need help pls

Re: SuperMarket Together Cheat Table v1.4.7 InDev [25/08/2024]

Posted: Wed Oct 16, 2024 9:34 pm
by Send
Table updated for today's patch. Added new features. Table in discord linked in original post.

Re: SuperMarket Together Cheat Table v1.4.7 InDev [25/08/2024]

Posted: Mon Oct 21, 2024 1:49 am
by Send
Updated for today's patch. Table v1.8 available in our discord.

Re: SuperMarket Together Cheat Table v1.4.7 InDev [25/08/2024]

Posted: Mon Oct 28, 2024 4:12 am
by Send
Updated. Table in discord.