Skip to content
Josh Moore edited this page Jun 17, 2020 · 8 revisions

FAQ

Q: How do I install ForgeHax?

Q: How do I use commands?

  • You use commands by typing . chat.
  • Example: .help in chat will print a list of all mods in ForgeHax.

Q: How do I enter an argument that contains spaces?

  • Use quotes.
  • Example: .chatbot spam add spam "This will be treated as one argument"

Q: How do I see a list of mods?

  • Type .mods <search> in chat. The search argument is optional.

Q: How do I toggle a mod?

  • Type .<mod name> enabled 1 to enable, and .<mod name> enabled 0 to disable.
  • Example: .step enabled 1 will enable step hack.

Q: How do I see a list of commands for a mod?

  • Type .<mod name> and it should show a list of settings (if any), their current value, and their description.
  • Example: .step

Q: How do I see a list of options for a command?

  • After the command add -? or --help. Almost every command should have help text for its options by default.
  • Example: .step -? or .step --help or .step enabled -? etc

Q: How do I use the Markers mod?

  • .markers options add stone Will add stone and all its variants to the block list
  • .markers options add 1 -i Will add stone by its block ID
  • .markers options add stone -r 255 -g 0 -b 0 Will add stone and give it the color red.
  • .markers options add stone -m 1 Will add stone with the meta variant of 1 (Granite)
  • .markers options add shulker --regex Will add any block that contains the word "shulker" in its name
  • .markers options remove stone Will remove stone from Markers

Q: How do I use the SpamBot mod?

  • .chatbot spam add test Will add a new entry called "test"
  • .chatbot spam add test "Test text" Will append "Test text" to the test entry message list.
  • .chatbot spam add test --type SEQUENTIAL Will set the spam type to sequential. (Use .spambot add -? to see acceptable arguments)
  • .chatbot spam add test --keyword !test Will set the trigger keyword to "!test"
  • .chatbot spam add test --trigger REPLY Will set the trigger mode to "REPLY" (Use .spambot add -? to see acceptable arguments)
  • .chatbot spam add test --enabled true Will enable the spam entry
  • .chatbot spam import test import_test.txt Will import messages from the file "import_test.txt" inside .minecraft/forgehax
  • .chatbot spam export test export_test.txt Will export messages from the entry into a text file under .minecraft/forgehax.
  • .chatbot spam remove test Will remove the test entry and all its contents
Clone this wiki locally