Page 1 of 1

/cheat off

Posted: Mon Oct 26, 2020 9:12 pm
by raiguard
It would be nice to have a built-in command for disabling cheat mode, instead of just enabling it. It doesn't need to do anything else, just disable cheat mode for the player who types it. I could read this command's execution and do my own cheat-mode cleanup for Editor Extensions as well. :)

Re: /cheat off

Posted: Mon Oct 26, 2020 9:45 pm
by Rseding91
The "cheat" command was added purely for our own internal use. Since we got sick of it not working in the released version of the game when we'd want to test stuff for bug reports we just left it enabled in the released version.

It's just a shortcut for a few lua commands. You can turn cheat mode off yourself by just doing: /c game.player.cheat_mode = false

Re: /cheat off

Posted: Tue Oct 27, 2020 1:44 am
by eradicator
Already implemented *cough*.

Code: Select all

/sudo cheat(off)

Re: /cheat off

Posted: Tue Oct 27, 2020 2:02 am
by raiguard
eradicator wrote:
Tue Oct 27, 2020 1:44 am
Already implemented *cough*.

Code: Select all

/sudo cheat(off)
EE already has it as well:

Code: Select all

/EditorExtensions disable-cheat-mode
But /cheat off would be more convenient. :D

Re: /cheat off

Posted: Tue Oct 27, 2020 4:48 am
by ssilk
more of such suggestions ;)

Re: /cheat off

Posted: Tue Oct 27, 2020 12:43 pm
by eradicator
Raiguard wrote:
Tue Oct 27, 2020 2:02 am

Code: Select all

/EditorExtensions disable-cheat-mode
I think i win the shortness contest. Also my personal dev mod just has a shortcut button for it ;).

Raiguard wrote:
Tue Oct 27, 2020 2:02 am
But /cheat off would be more convenient. :D
If you really care that much you know how to implement "//cheat off" or "/cheats off" or whatever :p.