Jump to content

CoolProgrammer

Member
  • Posts

    1,077
  • Joined

  • Last visited

  • Days Won

    13

Everything posted by CoolProgrammer

  1. Should hopefully be fine on 1GB of ram.
  2. You can first check the target entity, and then find out the distance between this targeted entity and player.
  3. The expression is %timespan% ago. Meaning, if your variable {slowness} is of the type timespan, then you can directly use set {chatslow::%player’s uuid%} to {slowness} ago.
  4. You might have accidentally changed the level name. Go to Settings tab of your server and change the level name back to "world".
  5. You will have to make a ticket to request your account to be deleted. Head over to https://minehut.com/support/ and then click on the Blue button to make a new ticket.
  6. Hey, can you type in /whitelist remove and check the list of tab completions you get? Try to remove and add your friend to the whitelist. If that still doesn't work, turn off the whitelist for your friend to join, and whitelist the server again. Then use /whitelist add (friends-name) to whitelist them. By any chance, are you using Vault without a permissions plugin installed?
  7. CoolProgrammer

    help

    If you don't want random people to join your server, you can execute /whitelist on to disallow anyone else to join. Make sure you are opped first to do that.
  8. CoolProgrammer

    Plugin Ideas

    Hey! Essentials and Skript; great choice of first plugins already! NoCheatPlus -> I'd replace ABC Anti-Cheat with NoCheatPlus, since NoCheatPlus plugin will basically block cheats such as Flight, NoFall, etc. and so you do not have to worry about being online to check if anyone is trying to cheat in such a way. WorldEdit -> A plugin which allows you to perform block actions (fill, move, etc.), copy paste stuff, save schematics, etc. WorldGuard -> This is a great plugin if you want to protect regions, set custom flags for them (disable PvP, hunger, etc.) and so on. Note that this plugin does require WorldEdit installed as a dependency. Vault -> This is required if you are planning on using LuckPerms (read more below). LuckPerms -> If you want to allow players to have custom permissions, or features from the plugin Essentials (such as /tpa, /tpahere, /hat, etc.), then this plugin will allow you to do so! It's not just limited to Essentials, but also works for a lot of other plugins available on Minehut. If you do plan on using this plugin, then check this video, it's very helpful: Multiverse -> This plugin will help you a tonne to manage your worlds! This will also help you to fix the common difficulty bug in Minecraft (/mvm set difficulty <difficulty> <world>). Check this if you want to know more about this plugin: https://github.com/Multiverse/Multiverse-Core/wiki And... you already have papa Skript with you, what do you have to worry about? The possibilities with this plugin are endless. You can straight away start with stuff like greeting players with a title whenever they join, set a custom join and leave message, make custom commands, etc. Another point I'd like to mention; You said that you are running an SMP. This means, players can x-ray. Take a look at this guide: https://gist.github.com/stonar96/ba18568bd91e5afd590e8038d14e245e. This will allow you to prevent players from X-Raying on your server. That's it for now, but I'll let you know if I recall any more interesting plugins available. I wish you all the best on your SMP server, and hope it goes very well! Good luck!
  9. Hey, it's a compress log file, and can only be uncompressed using a software such as WinRAR. Due to Minehut's File Manager restrictions, it's currently not possible to download and uncompress this file in any way. The only log file that you can read is latest.log.
  10. You have to install the Essentials PlaceholderAPI expansion for it to work. Do the following commands: -> /papi ecloud download Essentials -> /papi reload That should work. You can also use Vault instead of Essentials. -> /papi ecloud download Vault -> /papi reload And then use %vault_eco_balance%.
  11. I think that's normal, let wait and see what others have to say though.
  12. No problem, enjoy. Here is how you do a 2 seconds cooldown: right click: # to check if it's the right tool stop if tool != nether star named "&f&lPower Of The &4&LNether" # calculate the difference between when the player last shooted a fireball, and now. set {_c} to difference between {cd::%player's uuid%} and now # checking if the difference is less than 2 seconds {_c} < 2 seconds: # if it is, then show them a cooldown message, and cancel the event, and prevent it from advancing (stop) send "You are on cooldown" cancel event stop # shoot the fireball shoot a Fireball from player at speed 1 # set the cooldown to now set {cd::%player's uuid%} to now Read the comments if you do not understand how it works.
  13. Hey, you can use EssentialsX to enchant an item with any level. Do the following: -> Go to Plugins tab of your server, and look for a plugin called EssentialsX. -> Install this plugin. -> Stop your server and Start it back up. -> Now go to File Manager tab of your server and open the file located at /plugins/Essentials/config.yml. -> Look for the following option: -> Change the false to true. -> Save your file and go back in-game. -> Now execute /ess reload in-game. -> You should now be able to enchant your hand-held items using /enchant, with any desired level.
  14. Hello. It is because of the plugin PlayerServer in /plugins. PlayerServer is a plugin used by Minehut to communicate with the proxy and provide features such as /dl, /ul, /world, etc., and isn't counted in the plugin limit. You should still be able to install one more plugin, and your server showing 13 plugins in /plugins.
  15. Oh, in that case you can use the stop keyword. right click: chance of 50%: give player 64 stone stop chance of 50%: give player 16 beef stop chance of 50%: give player 5 diamond stop This prevents the code moving further. Also note that your code would probably not work as per your expectations. You will only have a 50% chance of getting 16 beef if you didn't get 64 stone. And you will only get 5 diamonds if you didn't get 64 stone and 16 beef. Sorry if you didn't understand what I said, especially with by crap English, but here is a better way of doing this: right click: give player 64 stone, 16 beef or 4 diamond This will give the player, random item from the ones listed. Notice the "or".
  16. You can easily color and format texts on signs using a plugin called EssentialsX. Install this plugin, Stop your server and then Start it back up. Once you have EssentialsX installed, you can go to File Manager tab of your server and then open the file located at /plugins/Essentials/config.yml. Once you have this file open, navigate to this section of the file: Take a look at the #- color option. It's disabled (commented). Remove the # exactly before - color. This is how it should look: Once that's done, Save your file and head back in-game. Type in /ess reload. Now you should be able use to color text on signs. Use & instead of § since it's easier to type and easier to understand/read. Here is an example: &c&lHello. Hope that helps, let me know if you have any other problems
  17. You have to indent it like this: on right click: if player's held item is nether star named "&f&lPower Of The &4&LNether": shoot a Fireball from player at speed 1 Always keep in mind: event: if something: #do something else: #do something Make sure all the indentations are equal.
  18. Here is an alternative way, just in-case needed: Multiverse is a plugin which has a feature to force set the difficult of your world. In-case you do not know how to install this plugin, go to your server Dashboard -> Edit Server -> Plugins and then type in "Multiverse" in the search bar. Install the plugin and Restart your server. After that's done, this command will allow you to change the difficulty of your world: /mvm set difficulty (difficulty-level) (world-name). In-case you do not know names of worlds on your server, use /worlds to find out the list of worlds that are loaded on your server. Here are a few examples for using this command: -> /mvm set difficulty easy world_nether. -> /mvm set difficulty hard world. That's not it, Multiverse has tonnes of other essential features. If you wish to see them, check this official wiki: https://github.com/Multiverse/Multiverse-Core/wiki/Command-Reference
  19. Can you show the full stack? This will help us find out what is causing the plugin to prevent from loading up. Most likely is because of wrongly configured files.
  20. Make sure that you are using the redstone particle. Can you show your code?
  21. Example: on block break: chance of 10%: # do stuff
  22. No problem. It might be because you haven't installed the GemsEconomy PlaceholderAPI expansion. Or even if you have, it might have got reset after your server was hibernated. This is a known bug on Minehut, and is being worked on. This is how I fix it using Skript: enable: console command "papi ecloud download GemsEconomy" wait 2 seconds console command "papi ecloud download Vault" wait 2 seconds console command "papi reload" In-case you are talking about the scoreboard not working: If by any chance, you have skRayFall installed, go to /plugins/skRayFall/config.yml and change the enableFastScoreBoards option to false. Once that's done, restart your server and the scoreboard should work. P.S. I'm still not sure what the problem is, can you tell me what's wrong and what doesn't work?
  23. I think this might not be possible, but you can try contacting support by making a ticket. https://minehut.com/support. Once you are there, click on Create Ticket button.
  24. Unbind any other commands from the tool, and only use the one with /fireballshooter since it might be conflicting with EssentialsX's power tool feature.
×
×
  • Create New...