Solved Creating and Deleting Worlds with MultiVerse?

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

acai

Active Member
Oct 23, 2020
89
1
8
Hello! I'm making a minigame, but creating worlds with Multiverse doesn't seem to work. Any help?
My code (quite long):

#--------------------
on damage:
damage cause is fall:
cancel event
command /mbadmin [<text>] [<text>]:
permission: gumble.mineblock.admin
trigger:
if arg-1 is "spec":
make player execute "vanish"
make player execute "tp arg-2"


command /mineblock [<text>]:
trigger:
if arg-1 is "create":
execute console command "/mvc %player% -t flat"
give 1 of wooden axe to player
else:
if arg-1 is "delete":
execute console command "/mvdelete %player%"
make console execute "mvconfirm"
on mine:
if {minedblocks.%player%} is not set:
set {minedblocks.%player%} to 0
add 1 to {minedblocks.%player%}
if {minedblocks.%player%} is 1000:
set {minedblocks.%player%} to 0
execute console command "/eco give %player% 10000000"
#--------------------

Copy-Paste decided to remove my indentation. :emoji_stuck_out_tongue:
https://pastebin.com/ktuXMH6J
[doublepost=1606415944,1605317172][/doublepost]nobody replied, so I fixed it myself instead
 
Status
Not open for further replies.