Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions BedwarsAFKv2/liteconfig/common/macros/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
//Set this to 1 if you have ++ and want to use it, 0 if your don't have ++
@#nicking = 0;

//Tipping feature - the bot will run /tipall every time it joins the lobby
//Set this to 1 if you want to use it, 0 if you don't.
@#tipping = 1;

// ---------------- //
// IGNORE, BOT CONFIG //
// ---------------- //
Expand Down
7 changes: 7 additions & 0 deletions BedwarsAFKv2/liteconfig/common/macros/failsafe.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ foreach(teams);
next;
if(&currentlocation == "Lobby");
stop(bwstart)

if(%@#tipping% == 1)
log("&f[&cBW&f] You have tipping enabled. Disable this in user config if you don't want it.")
echo("/tipall")
wait(40t)
endif;

if(%@#nicking% == 1)
log("&f[&cBW&f] You have nicking enabled. Changing your nick. Disable this in user config if you don't want it.")
echo("/nick random")
Expand Down