Rayoz12's Cheat Panel

Rayoz12's Cheat Panel Mod v0.0.4

Hi can anyone tell me what “Restore (selected) Unit Movement”? I can’t get it to do anything so I’m a bit confused

Rest of the trainer works perfectly!
Select any unit of yours on the map, click the button, and it restores its movement. Currently, I recall it doesn't seem to work if you've lost the ability to move a unit due to "zone of control" (e.g. trying to move past a hostile unit).
 
I trick the restore unit movement by not using all the unit movement points, and then click it. It always works then. Otherwise, it doesn’t always work.
 
When I opened a single player game this morning there was content that downloaded. Following that I was unable to bring up the cheat menu. Has anyone else seem that?

If so, is there a solution?
 
Last edited:
I'll chime in and say that the mod is still functioning for me without a hitch in the latest 1.2.2 patch that was released on Monday, June 23rd.

However, I'll add that I've noticed that some mods (both Steam Workshop and CF) do not load properly until I've saved my game and then reloaded it. It doesn't seem to be consistent as to which are affected, or why, but it happens every once-in-a-while, and this mod was affected by this anomaly earlier in the week (it's been fine since).
 
Thank you MiRai.

I did some research on Steam and found the following;

To access a legacy Steam beta, you typically need to:
  1. Open Steam: Launch the Steam application on your computer.

  2. Locate the game: Find the game in your library for which you want to access the legacy version.

  3. Access Properties: Right-click on the game and select "Properties" from the dropdown menu.

  4. Navigate to Betas: In the game's Properties window, find and click on the "Betas" tab.

  5. Select the Beta: Use the dropdown menu under "Beta Participation" to choose the desired legacy version or specific beta build.

  6. Wait for Download: Steam will download the selected beta version, which may take some time.

  7. Launch and Play: Once the download is complete, launch the game and enjoy the legacy version.
That is how I fixed the issue. Of course you cannot use any of the UI upgrades in the new patch.
 
So I used a "cheat panel" mod by Fancy Pants and it worked through version 1.2.2. When 1.2.3 came out, it would crash the game every time I played. BTW, I had no other mods loaded. When I looked at this forum, it appeared that mod was no longer listed. Now this mod by rayoz12s was available, so I uninstalled the original and installed this one. When I click on it in the Add-Ons menu... it shows the author is Fancy Pants... so what gives? Explanation for who the real author is and why it crashes with 1.2.3? Thanks
 
Last edited:
Update 1.2.3 still worked, but 1.2.4 removed the cheat panel (& cntrF8), although it is still listed in the additional content-add-on panel as enabled.

(this is on an M2Macbook)
 
Last edited:
I can confirm also that the mod actually stops the icons in the top left corner from showing. Have to disable to get them showing again. Really like this mod and hope Rayoz12 can fix.
 
[In 1.2.4] Disabling the cheat panel, as CajunLTE notes, restores the usual top left icon list.
Doing that, I also noticed that what turns out to the the religion icon (that I never used) was actually what I using in 1.2.3 instead of cntrl F8 to access the cheat panel... so that could be part of the interactions messing things up.
 
I’ve encountered the same issue.
The F8 hotkey doesn’t respond and the top icon disappears unless I disable the mod.
This mod is really useful, and I hope Rayoz12 can release a fix. Thanks for your great work!
 
Sadly the update has messed with this one. F8 not working and the icons are also gone - will show if i disable the panel.

One of the best mods I have used. Kudos! Hoping for a fix :)
 
I was able to edit the mod's files and got the UI to work, will test out with a game to see if the cheats still work.

For any who know how to work your way around js or any coding language, try following beezany's guide to fixing the Wonders Screen mod. This is basically how I got the cheat panel UI to work as well.
 
Just wanted to preface this by saying, I'm not really that knowledgeable with JavaScript, I'm more of a SQL guy and write Python code on the side. So feel free to correct any errors or add anything I may have missed.

So far, the changes I made have been working for me. I'm almost done with the Exploration Era with this mod on.
To make these changes yourself, go to the cheat panel mod directory and then go to the ui folder. You'll need to change a few lines in two files on there.

In cheat-panel/cheat-panel.js, change lines 6 to 10 to the following:
JavaScript:
import { P as Panel } from '/core/ui/panel-support.chunk.js';
import { MustGetElement } from '/core/ui/utilities/utilities-dom.chunk.js';
import FocusManager from '/core/ui/input/focus-manager.js';
import { b as InputEngineEventName } from '/core/ui/input/input-support.chunk.js';
import {N as NavTray } from '/core/ui/navigation-tray/model-navigation-tray.chunk.js';

In sub-system-dock/panel-sub-system-dock.js, change lines 7 to 11 to the following:
JavaScript:
import ContextManager from '/core/ui/context-manager/context-manager.js';
import FocusManager from '/core/ui/input/focus-manager.js';
import { P as Panel } from '/core/ui/panel-support.chunk.js';
import DialogBoxManager from '/core/ui/dialog-box/manager-dialog-box.chunk.js';
import { Icon } from '/core/ui/utilities/utilities-image.chunk.js';
and then change line 342 to:
Code:
                DialogBoxManager.createDialog_Confirm({

And that should be it, hopefully it works for you guys as well
 
Back
Top Bottom