Jump to content

KJPAKA

Member
  • Posts

    457
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by KJPAKA

  1. Adding on with what @Endgator stated. You can also look at YouTube video tutorials of the plugin and it will run your through how to set it up. Also, you can look at the websites of the plugin. Minehut links them in the plugin section in the description area of it.

    • Like 1
  2. First of all i'm not sure how to do that on your console. However, have you tried running the command "/gamerule randomtickspeed 0" in the console? Otherwise i'm not sure.

  3. Minehut needs to make money to keep their network up. Also, many people including myself have made a ton of money off Minehut servers, which makes Minehut loose out on a ton of money. Also, your getting a free player base instantly if your server is good! Take into consideration that external servers pay up to $2000+ on advertisements. And compared to other server hosts Minehut is the best for its price. Personally, I think the unlimited plan for $50 a month is a 100% worth it.

  4. I'm going to be straight-forward, there are so many external pay to win servers as well averaging 2k+ players that have been up for years. I don't think Minecraft is going to care about a Minehut server. Also, people need to make money from Minecraft servers some people make a living off of it, it's there job. So at the end of the day if you don't like pay to win servers just simply don't play them.

  5. on load:
        delete {request::*}

    command /tpa [<offline player>]:
        trigger:
            set {_p} to arg-1 
            set {_u} to uuid of arg-1
            if {_p} is online:
                if {_p} is not player:
                    if {request::player::%{_u}%} is set:
                        send "&cThis player already has a active teleportation request, please wait!" to player
                        stop
                    send "&2%player% &ahas requested to teleport to you! &7&o(/tpaccept to accept, automatically expires in 30 seconds)" to {_p}
                    send "&aYou have requested to teleport to &2%{_p}%&a! &7&o(This will automatically expire in 30 seconds)" to player
                    set {request::player::%{_u}%} to player
                    wait 30 seconds
                    if {request::player::%{_u}%} is set:
                        delete {request::player::%{_u}%}
                        send "&CYour teleportation request to %{_p}% &chas expired!" to player
                        send "&cYour teleportation request from %player% &chas expired!" to {_p}
                else:
                    send "&cYou can't tpa to yourself!" to player
            else:
                send "&cThe specified player is currently offline!" to player

    command /tpaccept:
        trigger:
            set {_u} to uuid of player
            if {request::player::%{_u}%} is set:
                set {_p} to {request::player::%{_u}%}
                if {_p} is online:
                    teleport {_p} to location of player
                    send "&aYour teleportation request to %player% &ahas been accepted!" to {_p}
                    send "&aYou have accepted the teleportation request from %{_p}%" to player
                    delete {request::player::%{_u}%}
                else:
                    send "&cThis player is no longer online!"
            else:
                send "&cYou have no teleportation requests to accept!" to player
     

    • Thanks 1
  6. Hey @Keep,

    I'm not sure exactly what you mean by this. However, here is the code to make it a 1 out of 100 chance for it to drop 1 diamond on the command /sell!

    command /sell:
    	set {_chance} to a random integer between 1 and 100
    	if {_chance} is between 1 and 3:
    		drop 1 diamond at location of player
    		send "&aYou got lucky and got a diamond!" to player

    If you have any more questions I highly recommend you look at some tutorials on YouTube. For instance, Minehut Skript tutorials are good to watch to get the basics. Then its self teaching from there.

    Minehut Skript Tutorials: 

     

     

  7. I made the Skript more efficient and shorter as you can now specify the player to give the item too.

    command /stick [<offline player>]:
        permission: op
        trigger:
            set arg-1 to {_p}
            give {_p} 1 of stick
    
    on right click with stick:
        make player execute command "command"

    Replace command in the quotes with whatever command you wish.
    Make sure to watch Minehut Skript tutorials or some type if 
    your starting off and need help quickly.

    tutorials: https://www.youtube.com/playlist?list=PL34SSaSWNChTFvDSspJ56Tvm5sH4sS4mn

×
×
  • Create New...