diff --git a/core/src/main/java/com/sk89q/worldedit/command/ScriptingCommands.java b/core/src/main/java/com/sk89q/worldedit/command/ScriptingCommands.java index 28529fa7..182a4da9 100644 --- a/core/src/main/java/com/sk89q/worldedit/command/ScriptingCommands.java +++ b/core/src/main/java/com/sk89q/worldedit/command/ScriptingCommands.java @@ -73,7 +73,9 @@ public class ScriptingCommands { new RhinoCraftScriptEngine(); } catch (NoClassDefFoundError e) { player.printError("Failed to find an installed script engine."); - player.printError("Please "); + player.printError("Download: https://github.com/downloads/mozilla/rhino/rhino1_7R4.zip"); + player.printError("Extract: `js.jar` to `plugins` or `mods` directory`"); + player.printError("More info: https://github.com/boy0001/CraftScripts/"); return; } this.worldEdit.runScript(LocationMaskedPlayerWrapper.unwrap(player), f, scriptArgs);