1 #include "../console.h"
20 name =
"debug_menu_how_to";
21 description =
"Displays information on how to use the debug menu in the console.";
26 BlamResult
Execute(std::vector<std::string> arguments)
30 Blam::Logger::LogEvent(
"Use the up and down arrow keys to navigate through the menu", BlamColor(255, 255, 0));
31 Blam::Logger::LogEvent(
"Use the left and right arrow keys to increase/decrease an item's value", BlamColor(255, 255, 0));
33 Blam::Logger::LogEvent(
"- For console commands, this will execute the command for the item", BlamColor(255, 191, 0));
34 Blam::Logger::LogEvent(
"- For variables/globals, this will increase the value (identical to pressing the right arrow key)", BlamColor(255, 191, 0));
35 Blam::Logger::LogEvent(
"- For submenus, this will open the submenu and display its child items within the menu", BlamColor(255, 191, 0));
39 return BlamResult::Success_OK;