add GrepLogCommand that is NOT skidded from any bot

technically some parts are still based off of HBot but at least it got a lot lower
This commit is contained in:
ChomeNS
2024-10-22 15:17:35 +07:00
parent e8ef3adf3b
commit 41e57d04f2
5 changed files with 317 additions and 0 deletions

View File

@@ -69,6 +69,7 @@ public class Bot {
public TPSPlugin tps;
public EvalPlugin eval;
public TrustedPlugin trusted;
public GrepLogPlugin grepLog;
public BruhifyPlugin bruhify;
public CloopPlugin cloop;
public ExploitsPlugin exploits;
@@ -123,6 +124,7 @@ public class Bot {
this.tps = new TPSPlugin(this);
this.eval = new EvalPlugin(this);
this.trusted = new TrustedPlugin(this);
this.grepLog = new GrepLogPlugin(this);
this.bruhify = new BruhifyPlugin(this);
this.cloop = new CloopPlugin(this);
this.exploits = new ExploitsPlugin(this);