Jump to content

MillionDollar

Member
  • Posts

    58
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by MillionDollar

  1. 59 minutes ago, Lmaoooejefwep said:

    Ive been trying to figure out how to clear everyone's inventory that has played on my minehut server, can anyone help me?

    Delete their player data. world folder -> player -> delete all .dat files

  2. 4 minutes ago, lizthelizard19 said:

    Hello, I just started a server with my friend and we keep having random people joining after making our server non visible. These people killed us and took all of our stuff and was extremely rude. I tried the /kick command it wouldn't let me. I'm getting super frustrated and I'm at a total loss. 

    You should head over to your server's console and op yourself "op your_name_here", afterwards you should enable the whitelist so only people you add can join (/whitelist on - /whitelist add name_here - You can do it through console as well, just remove the slash)

    To ban and kick people you still need to be opped, and use /ban name or /kick name

    • Like 1
  3. On 6/28/2021 at 6:39 PM, Keenu_MC said:

    Hey I dont know how to make a skript when you do /start and it gives u an unbreakable pickaxe, BUT you can only use the command one time. And I need a command to reset it incase I make new seasons...

     

    command /start:
        trigger:
            if {claimed::%player's uuid%} is not set:
                set {claimed::%player's uuid%} to "a"
                give player 1 unbreakable wooden pickaxe
    
    command /rst <offlineplayer>:
        permission: op
        trigger:
            delete {claimed::%arg 1's uuid%}

     

  4. 20 hours ago, ToastyBoiUwU said:

    I'm trying to change the difficulty of the world through command and normal settings, but the command seems to be broken, can someone please help me fix it? (Any suggestions would be greatly appreciated)

    Stop your server and change the difficulty on the dashboard, afterwards start it back up.

    1.17

    19 hours ago, Kiaxxen said:

    How do I update my server to 1.17? The first part of the update is out right now. So how do I update it?

     

    In your server's appearance tab you can see the Server version section.

    image.png.9d68c5ac41d2e1ce88ec2da309737d73.png

  5. 6 hours ago, RigMorde said:

    when will 1.17.0 come to minehut

    1.17 is already supported, you can change your version in your server appearance tab.

     

  6. Requires:
    - SkBee
    - Skellett
    - skript-gui

    Commands:

    Spoiler

    /setspawn - /spawn
    /enable <duel type>
    /disable <duel type>
    /createarena <name>
    /setarenaspawn <name> <1/2>
    /deletearena <name>
    /duel <player>
    /acceptduel <player>


    Duels:

    Spoiler

    Combo
    NoDebuff
    Soup
    Classic
    Archer


    This skript is pretty badly optimized, and can lag a bit. Won't be updated.

    practice.sk

  7. 8 minutes ago, tmoa2 said:

    So I'm making a dungeons skript and somethings wrong. Skript is down below.

     

    It runs the first 3 lines of code, but then stops working. Can someone help? I've been asking since forever.

    thingy.sk 448 B · 0 downloads

    You shouldn't use 2 of the same event, like ever. So instead of that try this.

    on death:
        if victim is a witch:
            send "&c[BOSS] Mini Daze&f: You win. This is not over though, for my last words. MINIONS! ATTACK!" to attacker
            loop 9 times:
                spawn 10 zombies at player
                set name of last spawned zombies to "Mini Daze Minion"
        if victim is a zombie:
            add 1 to {blah}
            if {blah} is 90:
                send "&a%attacker% has defeated Mini Daze!" to attacker

     

  8. 2 hours ago, ejcnencsnce said:

    im trying to make a infinity stones Skript and the potion effect isn't working pls help

    on right click with a stone button:
      if player is holding a stone button named "§5§nPower Stone" with lore "§nRight click to get stregth for a while" and "left click for tnt to explode":
      on right click apply strength to player for 3 seconds

    You can't use an event inside an event, so you'd just need to remove on right click from on right click apply strength to player for 3 seconds

  9. 10 minutes ago, g1ps said:

    Hello. can you help me understand the scoreboard? please
    image.png.134db18ef8a9c9cc6afd219a9110a887.png

    
    set score "&bgens:" in sidebar of loop-player to 9
            set score "&9%gensize({_p})% &7/ &9%searchcap({_p})%" in sidebar of loop-player to 8

    And here it shows normally

    image.png.92dc59bd9907c7bf172ca6f139daa650.png

    I believe that you'd need to set {_p} to loop-player if you haven't already.

    • Like 1
  10. 44 minutes ago, AgentGamerPro said:
    
    on break:
    	if {Blocks::*} does not contain event-block:
    		cancel event
    
    on load:
    	clear {Blocks::*}
    	add stone, oak planks, iron ore, gold ore, diamond ore and emerald ore to {Blocks::*}

    Change the last line as you see fit

    There's a big problem there. If spawn was made out of any of the blocks in the list it would be breakable. So @codeispoggg I recommend you to learn how to use worldguard. Specifically learn how to use setpriority and region flags. 

  11. 4 minutes ago, gtfdfguig said:

    So i installed the Crazy Auctions plugin in my server, and it doesn't show up as an installed plugin, i try to do the commands and it doesnt work, even after i installed it through dashboard, when i do /plugins or /pl it doesn't show up

    Please help as Auction house plugin also does not work because it is outdated

    After you install a plugin you need to restart the server.

  12. 9 hours ago, Jockerlight said:

    Hey so I made a money Skript and I was wondering how I print the amount of players money at the scoreboard as “k” not as 13.000

    You could make it check if it passed the required amount, so for an example.

    Player has 500$, it won't turn into 0.5k, but it'll stay as 500$ until they reach 1000 or more, where it should turn into 1k

    So just check if player has equal or more money than 1000 and then just divide that number by 1000 and add "k" at the end.

  13. 7 hours ago, SweatyFuzeMain said:

    How do I disable renaming shulkers in an anvil? I am trying to make a dupe server.

    You can disable it by using the on anvil rename event from Tuske

    on anvil rename:
    	if event-item is shulker box:
    		cancel event

    The only problem is that you're required to put all shulker names, so for each color you need to put it in the skript.

    • Like 1
×
×
  • Create New...