Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added error message if SKYBLOCK.SK is not in the right folder #218

Merged
merged 1 commit into from
Mar 15, 2019
Merged
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
26 changes: 26 additions & 0 deletions SkyBlock/SKYBLOCK.SK/Functions/reportfalsedirectory.sk
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#
# ==============
# reportfalsedirectory.sk
# ==============
# reportfalsedirectory.sk is part of the SKYBLOCK.SK functions.
# ==============

import:
java.io.File

#
# > Event - on load
# > Actions:
# > Detects if this file is not in the right folder and reports it to the chat of
# > the server to inform the server operator about it. Repeating the error every
# > 10 seconds until the file is at the right spot, which stops the while loop.
on load:
while new File("plugins/Skript/scripts/SkyBlock/SKYBLOCK.SK/Functions/reportfalsedirectory.sk").exists() is false:
broadcast "[SKYBLOCK.SK] Error occured: Files aren't at the supported location."
broadcast "[SKYBLOCK.SK] Put the SkyBlock folder into the supported directory:"
broadcast "[SKYBLOCK.SK] plugins/Skript/scripts/SkyBlock/SKYBLOCK.SK/..."
broadcast "[SKYBLOCK.SK] plugins/Skript/scripts/SkyBlock/lang/..."
broadcast "[SKYBLOCK.SK] plugins/Skript/scripts/SkyBlock/islands/..."
broadcast "[SKYBLOCK.SK] plugins/Skript/scripts/SkyBlock/config/..."
broadcast "[SKYBLOCK.SK] plugins/Skript/scripts/SkyBlock/addons/..."
wait 10 seconds