'if player consents' in new actions

Hi everyone! I created a new action, cheating, and I need to ask the player if he really wants to cheat.
I wrote this:

A thing can be actived or disabled.

Cheating is an action applying to nothing.
understand "cheat", "cheats" as cheating.
	report cheating:
		say "are you sure you want to activate cheats?";
		if player consents:
			say "cheats actived.";
			now cheats are actived;
		else:
			say "cheats not actived.";

but it gives me this error:

what’s the problem??
thank you in advance! bye!

“Report cheating” is its own rule, and should not be indented.

A thing can be actived or disabled.

Cheating is an action applying to nothing.
understand "cheat", "cheats" as cheating.

Report cheating:
	say "are you sure you want to activate cheats?";
	if player consents:
		say "cheats actived.";
		now cheats are actived;
	else:
		say "cheats not actived.";

lol it was easier than I tought! Thank you very very much!