diff --git a/src/main/java/ml/duncte123/skybot/objects/delegate/ScriptDelegate.java b/src/main/java/ml/duncte123/skybot/objects/delegate/ScriptDelegate.java index b5ca3298f..dad70c676 100644 --- a/src/main/java/ml/duncte123/skybot/objects/delegate/ScriptDelegate.java +++ b/src/main/java/ml/duncte123/skybot/objects/delegate/ScriptDelegate.java @@ -78,6 +78,14 @@ public void run(File file, String[] arguments) throws CompilationFailedException throw new VRCubeException("Erm, no?"); } + public Object dump() { + return "\uD83D\uDEAE"; + } + + public Object find() { + return "You will never find me."; + } + private synchronized String generateScriptName() { return "Script" + (++counter); }