0 of 0

File information

Last updated

Original upload

Created by

QuePro

Uploaded by

GamingResources

Virus scan

Some manually verified files

73 comments

  1. WazzupChatBan
    WazzupChatBan
    • member
    • 0 kudos
    Do not download this it is not working.
  2. thlsslvg
    thlsslvg
    • member
    • 0 kudos
    Guys its a virus dont download :)
    I wanted money and I got adware :(
  3. N4de
    N4de
    • member
    • 0 kudos
    'SuperCheat.bat' just will not open for more than a split second. I've gone through every comment and tried everything but nothing really works.
    I edited "python" to "py" when editing 'Installer.bat' in notepad.
    I tried editing the name of the save file in notepad from "SaveFile.es3" to the actual name of my most recent savefile.
    I tried changing it to "newest file" which somebody suggested since the save file keeps changing.
    The only thing I can't try is installing all the modules manually cus nobody ever really clarified how to do so. I try in cmd, but then there's always a syntax error or something. the word "pip" isn't possible to use and I searched it up and tried changing the path like some people suggested but nothing really works. all I know is that 'SuperCheat.bat' will not open for more than a fraction of a second.
  4. Jonas69690
    Jonas69690
    • member
    • 0 kudos
    In my oppinion its sad that ppl download and upload something like that, because why do you should chat in the game. The game is so good, it takes ppl the fun for this game. 
    1. GamingResources
      GamingResources
      • member
      • 0 kudos
      Its a single player game lol, its their choice, what if they want to have a sendbox mode where they dont have to worry about money nor level and just build their shop? Back up save file exists for a reason, saving ur legit save file.
  5. iamdumb42
    iamdumb42
    • member
    • 0 kudos
    I had some problems while installing the mod but it finally worked. First thing: these errors are normal, the os, shutil, and time packages come automatically with newer python versions.
    ERROR: Could not find a version that satisfies the requirement os (from versions: none)
    ERROR: No matching distribution found for os
    ERROR: Could not find a version that satisfies the requirement os (from versions: none)
    ERROR: No matching distribution found for os
    ERROR: Could not find a version that satisfies the requirement shutil (from versions: none)
    ERROR: No matching distribution found for shutil
    ERROR: Could not find a version that satisfies the requirement shutil (from versions: none)
    ERROR: No matching distribution found for shutil

    Another issue was running the SuperCheat batch. It popped up and closed immediatly. Maybe you have to change a path in the Main.py file. Editable with for example Notepad.
    Line 89:
    save_file_path = os.path.join('C:\\', 'Users', os.getlogin(), 'AppData', 'LocalLow', 'Nokta Games', 'Supermarket Simulator', 'SaveFile.es3')

    The saveFile name probably got changed last patch or so, but you have to change the .es3 File name to your actual file name.
    Should look like this:
    save_file_path = os.path.join('C:\\', 'Users', os.getlogin(), 'AppData', 'LocalLow', 'Nokta Games', 'Supermarket Simulator', '03-04-2024-14-07-27.es3')
    1. GamingResources
      GamingResources
      • member
      • 0 kudos
      edit installer.bat in notepad and change python to py and run it again, seems to fix it for some people.
    2. iamdumb42
      iamdumb42
      • member
      • 0 kudos
      Both worked for me but like i said, the game file name in the python file was wrong
    3. NaviraVathir86
      NaviraVathir86
      • member
      • 0 kudos
      Had issues with Installer.bat but when I changed the saveFile in Main.py like you did, the SuperCheat.bat finally worked. Thank you so much for figuring it out.
    4. bensch28n
      bensch28n
      • member
      • 0 kudos
      your tips were a great help, now I can open SuperCheat.bat and configure the individual options, BUT they are not available in the game as soon as I start it. What can I do?
    5. iamdumb42
      iamdumb42
      • member
      • 0 kudos
      The problem is, every time you load into a save file ingame, a newer one gets created, with a newer name and so on. If you look into the directory where the game files are saved, there are more than one. I edited the python script for a few lines, it searches the newest file and uses this for the supercheat.
      I replaced the line 89, the upper code piece with the bottom code piece

      save_dir_path = os.path.join('C:\\', 'Users', os.getlogin(), 'AppData', 'LocalLow', 'Nokta Games', 'Supermarket Simulator')

      newest_date = 0
      newest_file = None
      for file in os.listdir(save_dir_path):
        if file.endswith(".es3"):
      file_path = os.path.join(save_dir_path, file)
      file_info = os.stat(file_path).st_mtime
      if file_info > newest_date:
      newest_date = file_info
      newest_file = file

      save_file_path = os.path.join('C:\\', 'Users', os.getlogin(), 'AppData', 'LocalLow', 'Nokta Games', 'Supermarket Simulator', newest_file)




      So the beginning of the main function should look like this:
      # Main Function
      def main():
      save_dir_path = os.path.join('C:\\', 'Users', os.getlogin(), 'AppData', 'LocalLow', 'Nokta Games', 'Supermarket Simulator')

      newest_date = 0
      newest_file = None
      for file in os.listdir(save_dir_path):
        if file.endswith(".es3"):
      file_path = os.path.join(save_dir_path, file)
      file_info = os.stat(file_path).st_mtime
      if file_info > newest_date:
      newest_date = file_info
      newest_file = file

      save_file_path = os.path.join('C:\\', 'Users', os.getlogin(), 'AppData', 'LocalLow', 'Nokta Games', 'Supermarket Simulator', newest_file)

      if not os.path.exists(save_file_path):
      ...
      it works for me, but it should work for everyone else since no new packages are required
  6. llEzClappzll
    llEzClappzll
    • member
    • 0 kudos
    i can install both modules the supercheat or installerbat what do i do or am i missing a step because i just downloaded python
    C:\Windows\System32>pip install Installer.bat
    ERROR: Could not find a version that satisfies the requirement Installer.bat (from versions: none)
    ERROR: No matching distribution found for Installer.bat
    C:\Windows\System32>pip install SuperCheat.bat
    ERROR: Could not find a version that satisfies the requirement SuperCheat.bat (from versions: none)
    ERROR: No matching distribution found for SuperCheat.bat
  7. bensch28n
    bensch28n
    • member
    • 0 kudos
    I was able to download python, run installer and install all modules but SuperCheat.bat does not work (opens only very short). I tried to open it manually but I got the
    error that the file cannot be found although it is in this file path.
    Do you know what the Problem could be?
  8. nirex999
    nirex999
    • member
    • 0 kudos
    I need help. I get this error after runnung the installer. 
    https://imgur.com/a/lfrs5t1
    1. GamingResources
      GamingResources
      • member
      • 0 kudos
      Try running supercheat.bat
    2. GamingResources
      GamingResources
      • member
      • 0 kudos
       it should work
    3. nirex999
      nirex999
      • member
      • 0 kudos
      cmd opens for a split second and then closes again...
    4. GamingResources
      GamingResources
      • member
      • 0 kudos
      Try installing the modules manually also try running it in vsc or something so you can sed the error if you want to
    5. dhutch6302
      dhutch6302
      • member
      • 0 kudos
      had this issue. the fix for me after hours of research and messing around was to open the supercheat.bat in not pad (right click and there should be an option to edit in note pad) and change the word "python" to "py"
    6. nirex999
      nirex999
      • member
      • 0 kudos
      Thanks bro changing it to py also fixed it for me.
    7. GamingResources
      GamingResources
      • member
      • 0 kudos
      Oh, thanks, not sure why python doesnt work for some people but i changed the description stating this fix, thanks for sharing.
  9. deleted167759728
    deleted167759728
    • account closed
    • 0 kudos
    Hi,
    what can I do? Please help me 🙏
    I got this Errors:

    C:\Windows\system32>pip install shutil
    Defaulting to user installation because normal site-packages is not writeable
    ERROR: Could not find a version that satisfies the requirement shutil (from versions: none)
    ERROR: No matching distribution found for shutil

    Thanks for an answer
    1. YetanotherSteve
      YetanotherSteve
      • member
      • 0 kudos
      @wolzjo I am having the same trouble. After looking around the web (by entering the text after the two ERROR: messages) I keep coming up with people trying to install 'tensorflow'. for the heck with it I tried pip install tensorflow, and that installed a bunch of stuff, so I CAN install some things with pip from the command prompt.

      I thought that python / pip may be looking for some special place to install those four items from, I even found a site that showed a script to update all packages in Windows, ran it, saw that it updated a lot of things for a minute, and I STILL cannot execute the installer.bat or run pip install os without errors. (or pip install shutil or time, colorama was already working)

      I am thinking that there is some place we need to install those four from, but I can't figure it out.

      (-On a side note, I installed tensorflow with my VPN turned off.)
      (-On ANOTHER side note, do NOT install CheatEngine from the official download site trying to use a cheat table to do a similar cheat, it secretly installs a bunch of useless McAfee and other antivirus crap on your system.
      (-On YET ANOTHER side note, I CAN confirm that CheatHappens Aurora does work (it requires a paid membership which I have), it just doesn't have a 'completed checkouts giver' option and one of the devs there says that since the game is 'programmed in blueprints' (?) it makes doing anything for it 10 times harder. (than for some other game cheats))

      Thanks in advance for any help that results from my ridiculously long post!
    2. GamingResources
      GamingResources
      • member
      • 0 kudos
      Did you try running SuperCheat.bat even if the installer hasnt worked properly? It may still work, sometimes packages are already installed
  10. YetanotherSteve
    YetanotherSteve
    • member
    • 0 kudos
    TL:DR, uninstalled python, rebooted & reinstalled Python under admin, checked ON every install option, followed instructions from the three videos (two in English and one in French) and tried the -m, still no luck running SuperCheat.bat (opens and closes immediately)

    Any ideas what to do next?

    Tried again with errors, this is what I did...
    1) Uninstalled Python 3.12.2, rebooted my PC, re-installed Python 3.12.2 while re-watching Amit's installer video that was linked in the mod's description. (I have used his videos in the past, he does a good job)
    1a) Since the 'use admin privileges checkbox was greyed out, so I ran the installer by right-clicking and running it as admin from Explorer. I selected custom install and checked all of the boxes. Python was installed to c:\Program Files\Python 3.12
    2) Amit's video showed CMD open to c:\users\Dell, mine was at c:\WINDOWS\system32. Although I know both my user folder and system32 are in the environment path, I still opened CMD as admin, and changed my directory prompt to match what Amit has in the video, c:\users\YAS (entered cd.. twice to go to c:\, then entered cd users and cd YAS to be at c:\users\YAS, my PC-user name is YAS)
    3) in CMD (admin'd) at c:\users\YAS, entered py and got the same thing he got (2:30), I ran the print demo he ran and that worked. Opened IDLE in start menu, also ran the print demo and that also worked.
    4) As per the French language video, I (re)opened variables from start menu search ("Edit the system environment variables")
    In the new 'System Properties' window, opened Environment Variables box, Under System variables I scrolled down and highlighted "Path", hit edit, and saw that the following are in the list: 
    C:\Program Files\Python312\
    C:\Program Files\Python312\Scripts\
    C:\Users\YAS\AppData\Local\Programs\Python\Python312
    C:\Users\YAS\AppData\Local\Programs\Python\Python312\Scripts

    5) Alt-Tabbed over to the unzipped mod files, ran installer.bat, got some errors in red, that turned green when it finished running
    ERROR: Could not find a version that satisfies the requirement os (from versions: none)
    ERROR: No matching distribution found for os
    Defaulting to user installation because normal site-packages is not writeable
    also saw this in green [requirement already satisfied: colorama in c:\users\YAS\appdata\roaming\\python\python312\site-packages (0.4.6)]

    5a) Re-ran installer.bat as admin, same results as above.

    6) Followed the directions from the codebasics video for installing modules, 
    6a) Opened CMD as admin, noted his path was c:"\WINDOWS\System32, entering python shows me that 3.12.2 is running with >>> prompt
    6b) I entered import matplotlib and returned to the >>>, which was surprising. I followed codebasics' instructions anyway,, entering crtl-Z to return to c:\WINDOWS\system32
    6c) Entered pip install matplotlib, and I got a bunch of 'Requirement already satisfied' messages.

    7) Still at CMD (admin) path c:\WINDOWS\system32, and after re-reading the mod description, I tried entering -m pip install os, and I got back '-m' is not recognized as a command, program or batch file.
    7a) ran python (>>> prompt) and entered -m pip install os, got back a 'syntax error: invalid syntax'
    7b) Opened IDLE shell,  entered -m pip install os, also got back a "syntax error: invalid syntax'
    7c) I tried again, removing the -m and only entering pip install os at system32, and got this error (like when running the installer.bat
    ERROR: Could not find a version that satisfies the requirement os (from versions: none)
    ERROR: No matching distribution found for os
    7d) Tried  only entering pip install os in python in CMD, and in IDLE, and got the syntax error again.

    What am I doing wrong? Thanks in advance!
    1. GamingResources
      GamingResources
      • member
      • 0 kudos
      tey running the script (SuperCheat.bat) either way, let me know if it works