Jump to content

NotKaizo

Member
  • Posts

    204
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by NotKaizo

  1. 1 hour ago, metajet said:

    So I have a server that me and my friend have been working on, but i want him to also be able to edit files and add plugins/addons. Is it possible to do this?

    The answer is yes & no. You can give him access to your Minehut Panel by giving him the login info to it. He will have access to everything such as Market purchases, purchase history, your credits and etc. If you trust him then I would say sure, let him access it. But if you don't, then don't.

    I am sure Minehut will add some kind of feature that allows your friends to access a certain server that you own in the future. We just have to be patient for now.

  2. 6 hours ago, Chqwy said:

    There are no Skript error logs, but on death does not function, it doesn't add the number specified to my list variable. Someone help

    on death:
    	attacker is player
    	victim is a husk
    	if victim's display name is "&8[&c1&8] &2Zombified Bandit":
    		make console execute command "givexp %player%"
    
    command /summonmob:
    	permission: rpg.summon
    	permission message: {@prefix} &cInsufficient Permission!
    	trigger:
    		spawn 1 husk 1 meter above player's location
    		set name of last spawned entity to "&8[&c1&8] &2Zombified Bandit"
    
    command /givexp <player>:
    	permission: rpg.givexp
    	permission message: {@prefix} &cInsufficient Permissions!
    	trigger:
    		set {_xpinteger} to random integer between 10 and 20
    		if arg-1 is set:
    			set {xp::%arg 1%} to {xp::%arg 1%}+{_xpinteger}
    			send "{@prefix} &aGained &c%arg-1% &aXP!"
    		else:
    			send "{@prefix} &cUsage: /givexp <player>"

     

    Debug it maybe?

  3. 18 hours ago, TheRebornChild__ said:

    This Skript lets you right click a paper named &2100$ or &21000$ or &210000$ but you can edit the name or anything to make it easier for you to use. 

    Heres the Skript :

     

    on rightclick with a paper:
      name of tool is "&2100$":
        add 100$ to player's balance
        remove paper named "&2100$" from player

    on rightclick with a paper:
      name of tool is "&21000$":
        add 1000$ to player's balance
        remove paper named "&21000$" from player
        
    on rightclick with a paper:
      name of tool is "&210000$":
        add 10000$ to player's balance
        remove paper named "&210000$" from player

    Wouldn't this be VERY inefficient to use? Imagine having the write another chunk of code to make a new banknote. Even with function, this will still be very inefficient if they need to make a new code for a new banknote.

  4. 2 hours ago, Spartanthenahtan said:

    Hi, does anyone know what CPU minehut uses for its server because im planning on buying a server plan but I noticed minehut does not specify what CPU it uses

    They don't specify but they are quite good from my experience and yeah. Just don't add too much plugins.

  5. On 9/9/2021 at 8:50 AM, ALTITS said:


    command /hat:
        trigger:
            if player is op:
                set helmet of player to player's held item
                remove player's held item from player's inventory
                send "&eYou Now Have A New Hat"

    Because why not
    it was simple to make

    Well, this will break if someone is already wearing an armor piece as it will not give the armor back to the player. Add something like give player player's helmet

  6. 42 minutes ago, Luciddaisyy said:

    So basically the prefix won’t show in chat and I have all the stuff I had to download for it, isn’t showing. HELP

    Make sure you have a chat plugin. Essentials Chat, Luck Perms Chat and etc. If you already have those, check their configs and try the chat format section and edit it to whatever you want. Reload the plugin and your prefix/suffix will show in chat.

  7. Set it to a variable and check if that variable is set when they execute the command. Something like this:

    command /test:
    	trigger:
        	open virtual chest inventory with size 3 named "test" to player
    		if {var::%player's uuid%} is not set:
        		format gui slot 0 of player with paper named "test" to run:
            		if {test::%player's uuid%} >= 10:
                		format gui slot 0 of player with green dye named "test"
    		else:
    			format gui slot 0 of player with green dye named "test"
    		

     

  8. 6 hours ago, Lapzzo said:

    Im doing this because I dont want them to be able to execute /repair, but console to do /repair <player>

    You can add a 2nd argument and make it a integer. They will have to execute /repair <player> <integer> to open up the GUI. 2nd argument will be a password.

  9. 2 hours ago, hypixelupdate said:

    Hey I making a gui and i want it to give a item but it is just giving not open gui heres my code so far: command /Gui:
        permission: op
        permission message: "Hey you cant do that"
        trigger:
            open virtual chest inventory with size 3 named "Admin Gui" to player
            format gui slot 11 of player with golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon explosions" to run:
            give player golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon explosions"
            close players inventory
            format gui slot 15 of player with golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can lightning" to run:
            give player golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon lighting"
            close players inventory
          

    Here you go.

    command /gui:
        permission: op
        permission message: "Hey you cant do that"
        trigger:
            open virtual chest inventory with size 3 named "Admin Gui" to player
            format gui slot 11 of player with golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon explosions" to run:
                give player 1 of golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon explosions"
                close players inventory
            format gui slot 15 of player with golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can lightning" to run:
                give player 1 of golden hoe named "&4Admin Weapon" with lore "A Powerful Admin Weapon That Can summon lighting"
                close players inventory

     

  10. 2 hours ago, Lapzzo said:

    Im not sure what I did, but I think I broke it. Also did u find a way to make it so u cant repair items that are full durability?

    Broken skript:

    command /repair [<player>]:
        permission: repair.use
        trigger:
            if arg-1 is set:
                open inventory of arg-1 to arg-1
                set {activeGui::%arg-1's uuid%} to "inventoryGui"
                play sound "block.note_block.pling"  to arg-1
                send "&aPlease click an item to repair it for 50 Coins!" to arg-1
            else:
                open inventory of player to player
                set {activeGui::%player's uuid%} to "inventoryGui"
                play sound "block.note_block.pling"  to player
                send "&aPlease click an item to repair it for 50 Coins!" to player
    
    on inventory click:
        {activeGui::%player's uuid%} = "inventoryGui"
        cancel event
        set {_dura} to max durability of clicked item
        set {_fix} to durability of clicked item
        if {_fix} < {_dura}:
            if {@balance} >= {@repair_cost}:
                remove {@repair_cost} from {@balance}
                repair clicked item
                play sound "block.note_block.pling" to player
            else:
                play sound "entity.villager.no" to player
                send "&cYou do not have enough!"
        else if {_fix} >= {_dura}:
            play sound "entity.villager.no" to player
    
    on inventory close:
        if {activeGui::%player's uuid%} is "inventoryGui":
            delete {activeGui::%player's uuid%}
            send "&cYou have canceled your purchase!"

    Also I made it so the player in the command (Argument-1) doesnt get opened to the executer, but to arg-1. That was my original intention, but it seemed to break it

    No I did not find a way to make it so it won't repair full dura items. Why are you trying to make it so it opens to arg-1? Just make it so they execute the command.

  11. 20210924_152812.png

    Simple Wands Skript

    ♦ Simple & Easy Config

    ♦ Custom Gui

    ♦ Customizable Cooldowns | 30 seconds (change it in the config)

    ♦ Permission | wand.use (opens up custom gui)

    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

    Custom Gui

    Simple Gui for you to obtain any Wand! /wands

    Spoiler

    20210924_153305.png

    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

    Customizable Cooldowns

    Customize the cooldowns for Wands so people don't spam it!

    Spoiler

    image.png.d9d803014bc4dc0f27ec45313a658833.png

    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

    Left Click Ability

    Heal any player by left clicking your wand while facing them! This can be switched off in the config.

    Spoiler

    image.png.8044ae87533428cfd9968453d13a07fb.png

    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

    Particles Effect

    They don't really do anything so its just to look cool.

    Spoiler

    image.png.fa9489fb432e4da374234984f3719061.png

    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

    About

    ♦ Version: 1.0

    ♦ Update Status: True

    (True = Adding more stuff | False = Abandoned this project)

    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

    Please leave suggestions and ideas down below so I can add them to the Skript. I attached a .txt file as well for people with browsers that blocks .sk files.

     

    Note: Rejoin the server after reloading the script so it registers everything,

     

    wands.sk wands.txt

    • Like 1
  12. 1 minute ago, Lapzzo said:

    Question:

    I can repair stuff already repaired. Any fix?

    Well I couldn't find a way but I will do more research on it tomorrow when I wake up. I am pretty sure you can't repair blocks/non weapons. 

  13. Is there a way to appeal for a mute? I got muted for 3 days for apparently spamming/chat flooding. Yes I was spamming but not in the Minehut Lobby. Why would I get muted for spamming in a different server? 

  14. If I remember correctly, someone told me you can use the stick-like thing on your hand. Most humans will have 5 of the stick-like thing. They call it "fingers".  You can use "fingers" and press your keyboard's key with it and it should type. The faster you move your "fingers" the faster you will type! This is what I know and hope it helped you 🙂

     

    Note: This is a joke so don't take it seriously.

×
×
  • Create New...