Jump to content

Invislol

Member
  • Posts

    147
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by Invislol

  1. 17 hours ago, StarBunnie said:

    Well you look at a place chest and type "/lc set" then while still looking at the chest type "/lc add 10-15" to add your current item you're holding in your hand to the chest. If you done that it should refill the chest every time it triggers the delay. What version is your server on?

    You can do it without setting the location. just loop blocks around a set coord then spawn it to their surface location.

  2. 1 hour ago, _Tarna_ said:

    This plugin hasn't been updated in more than 5 years and the page itself says it only supports versions 1.7 through 1.10. Unless you're sure it works on 1.16.5+, don't think this can be added till custom version support comes out or the plugin author updates it. 

    Adding on to this, You can very much make this in skript and it Isn't hard.

    • Like 1
  3. No current plugins that I know of (I checked and will recheck after I make this) But, if you still want yo use it continue reading!

    ou can use client modifications for that for example ones on Lunar Client, Or you can make a way points skript that will not be as good as the lunar client one!

    (You can use mods just lunarclient is a safe client and I just recommend it for other things too but, using fabric or forge you can find mods that have it!)

  4. I am bored so over the next 2 days I'll be making most skripts.
    And, fixing some broken skripts


    By most I mean:
    - Under 200 Lines
    - Quick To make
    - Not too complex (I have to work on other things)
    - Must be given detail

    Do your damage!

  5. Got bored and made a skript that a lot of people in the minehut community who want to grow their server may want to use!
    Took me like 10 - 20 minutes (mostly worth of debuging a stupid issue) To make so if you find a issue please respond so I can quickly fix it ;D

    The Skript:

    (Forogt the requrements but, I think its TuSKe or something)

     

    #Enjoy ;D
    
    options:
        permission: permission.everyone
    
    command /adalerts:
        permission: {@permission}
        permission message: &cNo permission to do that!
        trigger:
            open virtual chest inventory with size 1 named "&a&lAd-Alerts" to player
            wait 1 tick
            format gui slot 0 of player with emerald block named "&A[VIP]" with lore "&7&m-------------------------" and "&fClick to get notifications for &a[VIP] &fAdvertisements" and "&7&m-------------------------" to run:
                timer("7m", player)
                close player's inventory
                set {lasttimer.%player%} to "VIP"
            format gui slot 2 of player with diamond block named "&b[PRO]" with lore "&7&m-------------------------" and "&fClick to get notifications for &b[PRO] &fAdvertisements" and "&7&m-------------------------" to run:
                timer("5m", player)
                close player's inventory
                set {lasttimer.%player%} to "MVP"
            format gui slot 4 of player with gold block named "&6[LEGEND]" with lore "&7&m-------------------------" and "&fClick to get notifications for &6[LEGEND] &fAdvertisements" and "&7&m-------------------------" to run:
                timer("2m", player)
                close player's inventory
                set {lasttimer.%player%} to "LEGEND"
            format gui slot 6 of player with lapis block named "&3[PATRON]" with lore "&7&m-------------------------" and "&fClick to get notifications for &3[PATRON] &fAdvertisements" and "&7&m-------------------------" to run:
                timer("1m", player)
                close player's inventory
                set {lasttimer.%player%} to "PATRON"
            format gui slot 8 of player with barrier named "&cCancel" to run:
                cancelTimer(player)
    
    function timer(t: string, p: player):
        wait 2 ticks
        set {_time} to {_t}
        set {running.timer::%{_p}%} to true
        if {_time} contains "s":
            replace all "s" with " seconds" in {_time}
        else if {_time} contains "m":
            replace all "m" with " minutes" in {_time}
        send "&a%{lasttimer.%{_p}%}% &aTimer has started!" to {_p}
        set {_time} to ({_time} parsed as time)
        wait {_time} parsed as timespan
        if {canceled.%{_p}%} isn't set:
            send title "&7&m- &a&lAD TIMER &7&m-" to {_p} for 2 seconds
            wait 3 seconds
            send "&aTimer Over &7(/adalerts) &ato restart!" to {_p}
            delete {running.timer::%{_p}%}
    
    function cancelTimer(p: player):
        if {running.timer::%{_p}%} is set:
            set {cancel.%{_p}%} to true
            send "&a%{lasttimer.%{_p}%}% &aTimer canceled" to {_p}
            delete {running.timer::%{_p}%}
        else:
            send "&cThere is no running timers for you!" to {_p}

     

  6. 2 minutes ago, minehackercraft said:

    Thanks for your reply , but it said 1.16.5 is the latest version , I can't see 1.17 there .

    Paper doesn't yet support 1.17. Please go to where you see the words "paper" And switch it to spigot then check if you can see 1.17 again!

    • Like 1
  7. Just now, _Tarna_ said:

    By piston duping, what do you want to dupe? If you are trying to dupe stuff like tnt, you can enable that by setting a value called like piston-duplication in the server's paper.yml. But if you are trying to dupe sand, you cannot. Paper completely disabled sand duping and didn't leave an option to enable it.

     

    Things like TNT dupers still work on the latest version of the game. I've seen people use them before. You just need to enable it in paper.yml since Minehut runs on paper spigot and that patches it. 

    Sorry, Forgot paper.yml was able to be edited now

     

×
×
  • Create New...