English:
This skript is an efficient API skript for Minecraft servers.
Use this to efficiently manage your servers.
Copyright to this skript exists for "MCKD".
This skript prohibits unauthorized distribution, secondary modification, and sale.
We are not responsible for any disadvantages that arise from breaking this.
Do you want to know how to use it?
Code (Text):
# Get a Folder(Directory) Size
command /sfolder:
trigger:
send "size of %sfolder("plugins/TestAPI")%"
# Get a File Size
command /sfile:
trigger:
send "size of %sfile("plugins/TestAPI/Text.txt")%"
# Create a File
command /cfile:
trigger:
cfile("plugins/TestAPI/Text.txt")
# Create a Folder(Directory)
command /cfolder:
trigger:
cfolder("plugins/TestAPI/Text.txt")
# Download a File
command /downloadfile:
trigger:
downloadfile("https://spigotmc.org/download/TestAPI.jar", "plugins\\TestAPI.jar")
# Delete a Folder(Directory)
command /dfolder:
trigger:
dfolder("plugins/TestAPI")
# Delete a File
command /dfile:
trigger:
dfile("plugins/TestAPI/Text.txt")
# Unzip
command /unzip:
trigger:
unzip("plugins/TestAPI.zip", "plugins")
# Write a File
command /wfile:
trigger:
wfile(1, "plugins/TestAPI/Text.txt", "Hello, world!") # (Line, Path, Text)
# Copy a Folder
command /copyfolder:
trigger:
copyfolder("plugins/TestAPI", "plugins/TestAPI2/Old")
# Copy a File
command /copyfile:
trigger:
copyfile("plugins/TestAPI/Text.txt", "plugins/TestAPI2/Texts")
required addons:
- skUtilities.( +v0.9.2 )
Contacts:
- Discord:
MCKD#0001
한국어:
이 스크립트는 Minecraft 서버를 위한 효율적인 API 스크립트입니다.
이를 통해 서버를 효율적으로 관리할 수 있습니다.
이 스크립트에 대한 저작권은 "MCKD"에게 있습니다.
이 스크립트는 무단 배포, 2차 수정 및 판매를 금지합니다.
우리는 이것을 깨는 것으로부터 발생하는 어떠한 불이익에 대해서도 책임이 없다.
어떻게 사용하는지 알고 싶으세요?
Code (Text):
# 폴더의 크기를 불러옵니다.
command /sfolder:
trigger:
send "size of %sfolder("plugins/TestAPI")%"
# 파일의 크기를 불러옵니다.
command /sfile:
trigger:
send "size of %sfile("plugins/TestAPI/Text.txt")%"
# 파일을 생성합니다.
command /cfile:
trigger:
cfile("plugins/TestAPI/Text.txt")
# 폴더를 생성합니다.
command /cfolder:
trigger:
cfolder("plugins/TestAPI/Text.txt")
# 파일을 다운로드합니다.
command /downloadfile:
trigger:
downloadfile("https://spigotmc.org/download/TestAPI.jar", "plugins\\TestAPI.jar")
# 폴더를 삭제합니다.
command /dfolder:
trigger:
dfolder("plugins/TestAPI")
# 파일을 삭제합니다.
command /dfile:
trigger:
dfile("plugins/TestAPI/Text.txt")
# 압축을 해제합니다.
command /unzip:
trigger:
unzip("plugins/TestAPI.zip", "plugins")
# 파일에 메세지를 입력합니다.
command /wfile:
trigger:
wfile(1, "plugins/TestAPI/Text.txt", "Hello, world!") # (Line, Path, Text)
# 폴더를 복사합니다.
command /copyfolder:
trigger:
copyfolder("plugins/TestAPI", "plugins/TestAPI2/Old")
# 파일을 복사합니다.
command /copyfile:
trigger:
copyfile("plugins/TestAPI/Text.txt", "plugins/TestAPI2/Texts")
필요한 애드온:
- skUtilities.( +v0.9.2 )
문의:
- 디스코드:
MCKD#0001