Cheat codes example
[Processor]
public static string CheatCodeProcessor(string input)
{
switch (input.ToLower())
{
case "cheese":
return "money.add 5000";
case "godmode":
return "player.health.invincible True";
case "noclip":
return "player.movement.noclip True";
// If input doesn't match any cheatcode, we cancel the input
// to prevent other commands from being executed.
default:
return string.Empty;
}
}Last updated