Jump to content

AbusingNub

Member
  • Posts

    138
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by AbusingNub

  1. 11 hours ago, charmillion said:

    I'm just wondering if somebody is using a client side mod that adds features like extra enchantments, will those work for them on the server?

    You can add the plugin 'Crazy Enchantments' to get extra enchants on your server! 

    Though, there are many other different plugins that offer a different range of new features to your server. If you are looking for a different feature, simply google a short description of the plugin and you might find one! Otherwise, let me know, I am happy to attempt to find the plugin for you.

  2. 11 hours ago, SagaciousBen said:

    My server members have reported that, while AFK on RiordanSMP, they have been kicked from the server because it "timed out". They have also been dying after being kicked from the server randomly. Is there any solution to this problem?

    Timing out is unable to be fixed as it is often a connection situation, though it should only happen rarely.

    If players die when being kicked from the server randomly then your server must have a settings, skript, or configuration that makes players die for some reason, this reason must be getting triggered by being disconnected. If you do not have any settings, skript, or configuration that is causing it, then the players must be in a position where they would die even without being disconnected... for example they might be in lava.

  3. 10 hours ago, Toasty_327 said:

    I keep trying to click the button but it wont work. I even tried another account but its still wont.

    I'm guessing you are trying to make your server 'Not Visible', simply click the circle beside 'Not Visible' then click 'Update' which is just below the server visibility options.

     

    Otherwise you can simply turn on a server whitelist (Only allows whitelisted players to join) by doing the command '/whitelist on'

     

    More information on whitelisting can be found here: 

     

  4. 5 minutes ago, TheSiker said:

    My Minehut server kicks me out for no reason after I used WorldEdit. Is Minehut's anti cheat buggy?

    You're probably using it to do an excessive amount of blocks/changes therefore your server or device can't process or handle it, resulting in you getting kicked or the server closing.

    I suggest you do worldedit in sustainable amounts to make sure your device and server can process it without issues.

     

    Though, if this is not the case, please provide me with more information such as an error message or logs.

     

  5. 3 minutes ago, Lapzzo said:

    Thanks, I didnt realise that disabled all /plugins commands

    No problem, I would also suggest disabling /version command as that can show plugins aswell, the permission node for that is bukkit.command.version 

    Simply do the same as you did for the /plugins command

    If you really want to protect your plugins also disable /help which will show all plugins aswell. Then simply make a custom /help command. The permission node for /help is bukkit.command.help

    - Expanding on /help, if you use essentials you can easily configure the /help command I'm pretty sure🙂 

     

  6. On 8/15/2021 at 10:43 AM, GoBeyondInfinity said:

    what do you mean by download the plugin file?

     

    Google the plugin you are looking for, then download the plugin (Should often be a .jar file) then follow the steps in the link below shared by Lapzzo.

     

    1 minute ago, Lapzzo said:

    Get the plugin file from spigot and do the steps I said. Follow this tutorial for more info.

     

     

     

  7. 4 minutes ago, Lapzzo said:

    command /plugins:
        trigger:
            send "&cMind your own business" to player
    command /pl:
        trigger:
            send "&cMind your own business" to player
    command /bukkit:plugins:
        trigger:
            send "&cMind your own business" to player

    Great option if you want to use skript!

    You can also disable the permission, if you are using any permission plugin simply make bukkit.command.plugins disabled (not allowed to be used). This way is very affective if you are using any permission plugin and/or don't want to use skript 🙂 

     

    • Thanks 1
  8. 7 hours ago, Nhypin_ said:

    It went to 'Starting' for like 5 seconds then went back to downloading.

    I would suggest repeat the step I gave before, then go to the 'DANGER ZONE' and click 'REPAIR FILES' (Note: I am not responsible for any data lost by doing this) this will attempt to fix any files that are causing issues, then start your server.

     

  9. 7 minutes ago, Nhypin_ said:

    Whenever I start my server it goes into this and wont come out of it.

    It's been like this for around a month as long as I can remember.

    Untitled.png

    Try going to the 'DANGER ZONE' section on your server panel, then force hibernate the server.

    Let me know if 'Downloading' goes away 🙂

    Hope this helps

  10. 34 minutes ago, PhoenixO8 said:

    I'm getting a little peeved that everyone links this article which itself is outdated and doesn't work!

     

    Did you attempt to do my first step? The most likely error is the world file is corrupted or contains an error. Also, method two is not outdated. 

     

  11. 1 hour ago, Alcap said:

    I can't add plugins to my server. I can remove plugins fine and I can add as many plugins as I want as there is no limit. All plugins I add don't show in game anyway. I have restarted my server many times (It didn't work). I believe this has something to do with the new file manager or something. Is anyone else having this issue?

    Hey! When uploading a plugin follow this tutorial: 

     

    Some plugins contain errors that may affect their functioning on Minehut, or make them unable to be uploaded to your server. Though plugins containing errors is rare, it does happen.

     

    Hope this helped 🙂 

     

  12. 5 hours ago, FlapKakker said:

    Be careful when using skripts like this that use no regions. Don't get me wrong, this is a decent skript (however, using functions for custom enchants is a little more efficient if you have many) but this can mess up a lot on your server since the enchant can procc everywhere. You should add statements that check if the player or the event block is inside a specific region (such as mine-A or something) and maybe even check if the exploded blocks are within the specific reason since you don't want players to break/explode blocks outside of the specified region (I assumed you would need this for a prison server). 

    Yeah this is a simple skript with no boundaries. I would suggest just using the other options I suggested.

    • Like 1
  13. Just now, Lapzzo said:

    Alot of the times I make custom skripts, but yesterday I posted like crazy and was tired, so copied it from online

    I found this skript while not at home, so same we are in the same boat. Was out at a friends so couldn't test or anything

  14. On 8/14/2021 at 1:26 AM, Lapzzo said:

    I remade abusingnubs one to make it work:

    on join:
        if {verify::%player%} is false:
        	set {_location} to location of player
        	every second:
            	teleport player to {_location}
            	send "&7Please verify by executing /verify to play!" to player
        else:
            if {verify::%player%} is true:
                send "&aWelcome back %player%!" to player
    
    command /verify:
        trigger:
            if {verify::%player%} is false:
                send "&aYou have &lverified &asuccessfully!" to player
            else:
                if {verify::%player%} is true:
                    send "&cYou have already &lverified" to player
    on first join:
        set {verify::%player%} to false

    Thanks! Didn't have any time to test, so purely was going off the top of my head haha

    • Like 1
  15. On 8/14/2021 at 10:12 PM, Lapzzo said:

    Oh wait lol! We have the same skript, I was lazy so I got it online

    Same, does the job. I don't see any point in making a custom one for requests like these as they are specific to the user, nor server specific. 

     

     

  16. 3 hours ago, KitKatGoSnap said:

    Still not working doesnt even show as a command in essentials help, any other tips?

    Could you please send me a screenshot of all plugins on your server ( Just do this command in-game: /pl )

  17. 11 hours ago, ninjea said:

    how could i go upon making a prison pickaxe with abelites such as explosion

    A quick google can find something along these lines

    command explosivepickaxe:
    	aliases: epickaxe, ep, epick
    	permission: epickaxe.use
    	permission message: &7&l<< &4&lError&7&l >> &r&cYou do not have the required permission to perform this command
    	trigger:
    		give a diamond pickaxe with lore "&5Explosive" to the player
    
    on block break:
    	if player have permission "epickaxe.use":
    		if player is holding a diamond pickaxe with lore "&5Explosive":
    			loop blocks in radius 2 of event-block:
    				if loop-block is stone or cobblestone or obsidian or any ore:
    					add loop-block to {_explosive.%player%::*}
    					loop {_explosive.%player%::*}:
    						drop loop-value
    						set loop-block to air

    There is also a custom enchant plugin on Minehut or a well known custom enchant skript online that both offer a range of different enchants with custom abilities.

  18. 4 minutes ago, ES63 said:

    HELP!!! My kit always says its improperly defined whenever i try to get it.

    I create mine in game.

    kits.yml:

    kits:
      starter:
        delay: 1
        items:
        - stick 1 damage_all:3

     

    kits:
      Starter:
        delay: 10
        items:
        - stick 1 damage_all:3

    Made a rough copy and it worked, mind sharing a screenshot of the error with me?

    Also try coping my kit in and replacing yours, test if it works.

×
×
  • Create New...