Jump to content

Pryzmm

Moderator
  • Posts

    1,924
  • Joined

  • Last visited

  • Days Won

    33

Posts posted by Pryzmm

  1. 1 hour ago, zatilyx said:

    I just created my own server and i wanted to make a custom image, when i use the custom image command the pictures get too big, i want them to be 2x2 but i don't know how to make them that small. Can anyone help me?

    can you tell us the plugins youre using?

  2. On 5/2/2022 at 6:41 PM, Dylanisnsane said:

     

    It could just be much easier, you could just make it so if the player is holding a tool named something, it drops something specific;

    on break:

      if event-block is [block]

      cancel drops

      if players tool is a diamond pickaxe named "[name]":

       set {_amount} to random integer between [fortune number and [fortune number]
            set {_drop} to {_amount} of [item] named "optional"

            drop {_drop} at event-blocks location

    no...
    the skript by @Uss53 us much better than this

  3. 7 hours ago, ButterflyBullets said:

    So ive been skripting lately and every time i test the skript on minehut it says something like "a severe error happened with skript and its not your fault and you cant do anything about it." and its a plugin like tuSKe or SKquery or SKBee, so those plugins become unusable. Anybody know why?

    if youre using skript 2.6+, youll need to update all your skript addons, as when skript updated to 2.6, all previous addons that didnt update broke.

  4. 4 hours ago, AttePatte said:

    When you loop say.. a zombie yes, when you loop a zombie does the looped zombie get stored to the server memory? And if so, wouldn't it after a while start to lag the server. Ik, pretty dumb question but that's why I'm asking from smart people only.

     

    take this skript for an example:

    command /killzombies:
    	trigger:
    		loop all zombies in world("world"):
    			kill loop-entity
    		send "&aAll zombies killed!"

    It will loop all the zombies in the world with the name "world". Once it loops through all the zombies it forgets about the loop ever happening, not saving any information into the server memory.
    Here's another example:

    command /killzombies:
    	trigger:
    		loop all zombies in world("world"):
    			add loop-entity to {Zombies::*}
    		kill {Zombies::*}
    		clear {Zombies::*}
    		send "&aAll zombies killed!"

    Once the loop is done in this skript, all the zombies will be saved into a variable, where only then will it get saved into a file (variables.csv). Then when it kills the zombies after the loop, it will then clear the variable, removing any data regarding the already dead zombies.

    • Thanks 1
  5. 11 hours ago, Yellow_Nub said:

    Hello, so i have a problem where on chat my nickname does not show but on tab it does! I have been trying to fix it thru essentials and skript

    but i  cannot make it work, if you have any idea please help me!

     

    You might have another plugin that could be interfering with how chat looks.
    Also not 100% sure but you might need Essentials-Chat for it. Again, not 100% sure.

  6. 5 hours ago, shadowgamer5213 said:

    Me and a ton of other bedbombing players got banned for around 3 months. No idea why. Any ideas? (Right before this, bedbombing got suspended)

    youll have to consult with the staff team of bedbombing as a ban from a server not "owned" by minehut is not a minehut issue.
    As for the suspension of the server, there could be a number of reasons why the server was suspended.

  7. 1 hour ago, chipchip9 said:

    It crashes as soon as I do the command. Also, where do I find the logs?

    logs are found in your file manager.

    1. Go to minehut.com and start your server

    2. Click "Manage Server" and look for the File Manager tab at the top

    3. Go to the logs folder. YOU CAN ONLY OPEN LATEST.LOG

  8. 38 minutes ago, Tyod00 said:

    When ever I try to type the captcha it says “Cannot send chat message”

    im pretty sure you have to do "/captcha <text>"

    if thats not the case, check your chat settings and see if chat is at "commands only". Set it to "all" or whatever it is.

  9. On 5/2/2022 at 10:17 AM, Its5mmx said:

    Hypex

    Welcome to Hypex, where everything is centered around creativity, innovation and fun!

    On Hypex you can create your own place: it can be a game, a map, a building, a place to relax or a normal survival. The possibilities are endless.

    Publish your places and make them public, or just play with a few friends: the choice is yours to make.

    Plugins, scripting, teams and kits can help you to create your very own creation just as you imagine.

    Want to play with friends? We have got you covered! We support Java, Bedrock and VR users.

    Java/VR IP: HypexNet.minehut.gg
    Bedrock IP: bedrock.minehut.gg | Port: 19132 | Type /join  HypexNet after joining.

    hypexBanner.png

    yo i think this is the first time VR was supported in a minehut server. Cool!

  10. 19 hours ago, AZA2132 said:

    your server must be corrupted

    tf no?

    On 4/30/2022 at 2:55 AM, superhumus said:

    Hello,

    I logged-in to my server and all my work disappeared, how can I restore it (I don't see old  backup)? why did it happen?

    Thanks,

    Superhumus

    It's possible your old backup was replaced by a newer one.

  11. 18 minutes ago, kepler_2258 said:

    SERVER NAME IS: boxswim

    THE PLAYER THAT WAS MESSAGING THE SERVER NAME IS: yannickkloren

    HES TRYING TO MAKE YOU FILL OUT A CAPTCHA ON A FAKE MINEHUT FORUM TO STEAL YOUR IP ADRESS

    I WOULD ADVISE FOR HIM/HER TO BE PUNISHED AND FOR THAT SERVER TO BE REMOVED, WHO KNOWS HOW MANY PLAYERS

    THEY STOLE IP'S FROM

    server was suspended gg

  12. 3 hours ago, kirbbb said:

    Every time I try to join my server, I always get kicked because I loaded too many chunks last time i logged on. Is there any way to fix this?

    Is there any chunked being force loaded?

    Try setting the server render distance lower.

  13. On 5/14/2021 at 8:28 AM, Invislol said:
    on damage:
        set victim's chestplate to {_c}
        if {_c} is "<none>":
            set victim's leggings to {_l}
            if {_l} is "<none>":
                set victim's boots to {_b}
                if {_b} is "<none>":
                    set victim's helmet to {_h}
                    if {_h} is "<none>":
                        cancel event 
    
    on damage:
        set attacker's chestplate to {_c}
        if {_c} is "<none>":
            set attacker's leggings to {_l}
            if {_l} is "<none>":
                set attacker's boots to {_b}
                if {_b} is "<none>":
                    set attacker's helmet to {_h}
                    if {_h} is "<none>":
                        cancel event 

    Btw this is not tested so you will have to test and if its broken fix it ;D

     

    EDIT: Just realized @CorruptionGamez necroposted. Woops...

     

    could be made much simpler

    on damage:
    	if attacker is not wearing any armor:
    		cancel event
    	if victim is not wearing any armor:
    		cancel event

    https://skripthub.net/docs/?id=1165

    • Like 1
×
×
  • Create New...