Jump to content

xlr100

Member
  • Posts

    76
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by xlr100

  1. When you read the change log just for skript addons
  2. Some stuff to note: 1. You didnt remove money from the victim or even send him a message 2. In my opinion a player should lose a percentage of his total amount of money instead of a fixed amount 3. You didn't check if the attacker and victim are players
  3. You used arg-1 but there isn't any argument in the command
  4. There is no argument in the command. Also please send the errors next time
  5. Although some improvements can be made, nice script and it can be helpful to people that are new to skript. The biggest suggestion for improvement i can give is using lists: Make a list for the ranks and a separated list for the rank prefixes. Doing so would save a lot of lines and also add the possibility of the players adding ranks and prefixes themselves to those lists with a command like /rank create (name) (prefix)
  6. xlr100

    At tick

    Please read the skript documents before asking such questions. Regarding your question, you can use https://skripthub.net/docs/?id=2050 to do this. Example: every 1000 ticks: broadcast "example" Although i advise you to use seconds and minutes 1 second = 20 ticks
  7. So I got the idea from a YouTube video about Minecraft in a chest using command blocks. I though that it could be done better with Skript. I managed to do it, and added some stuff, keep in mind that its still in beta and a lot of features are missing. Please replay with your feedback and ideas on how to improve
  8. xlr100

    I want a refund now.

    The 20 slots were free for a limited amount of time, they aren't anymore. To get mode than 10 slots and 1 gb of RAM you need to pay with credits
  9. The nether is considered a different world, so when downloading your world using the /dl command it only downloads the world you specified and not the connected worlds. To see all the available worlds use /worlds
  10. A couple of things to fix: 1. No need for "stop" 2. You wrote in the usage that the command is /clear chat but the command would only work if the player types /clear clear 3. After you finished looping there is no need for 4 more broadcasts, use one 4. You should just use if arg-1 is "chat": and else:
  11. Its a nice idea, but you need to improve a couple of things: 1. There is no need for "stop" 2. You should use a list like {reports::%uuid of player%::*} so you can actually save the report reason 3. When storing player related long lasting data you should use "uuid of player" in the variable {reports::%uuid of arg-1%::*} so the data won't be lost if the player changes his name
  12. I chose to use plots this season because there was no other option because the claiming plugins weren't updated. Seeing how bad the plots plugin is and the amount of lag it generates, next season will probably use a skyblock plugin with a custom made farming island
  13. If you really want auto farming you could try to code it with skript or ask for someone to code it for you, i don't see any good auto farming plugins.
  14. It depends on the quality of the server, its a lot easier to make an op prison enjoyable, but hard core one has a lot more customization potential
  15. Creating structures with spawn eggs is usually something you do with command blocks (to mark a location) so its not necessary, but nice idea
  16. Nice idea for shortening a few lines but like i said, i coded it in a few minutes in order to solve a specific type of bot attack my server suffered from, it's not guaranteed to work against any other kind of bot attack
  17. on command "/plot auto": if player isn't in world "farmplots": teleport player to world "farmplots" this worked for me. You are probably missing an addon
  18. Keep in mind that if you already have a chat script you may need to place the chat part in it
  19. My server was bot attacked several times in a span of a few hours (because it was the top server), and Minehut's antibot plugins did nothing to prevent the bots from crashing the server. With that said, i decided to create an antibot that will prevent such cases from repeating. Keep in mind that this script was created in a few minutes, and wasn't strictly tested so i can't grantee this will work against all kinds of bot attacks. Features: - Create a random Captcha per player, once he solved it he doesn't have to solve it again. - Auto Kick after a minute if the Captcha isn't solved - Creates another Captcha if the player joins again and he didn't complete the previous one - The player cant move or chat or type any command that doesn't contain "hub" or "server" Note - This script doesn't offer any customization because it wasn't originally created for others, i will add customization if requested enough Code: https://pastebin.com/CSc4ZsRD
  20. on join: if player isn't in world "world": teleport player to world "world"
  21. It doesn't seem useful to me, but others may think otherwise. Anyway you didn't add any code the forces the player to put the arguments or checks if he did, this can cause many bugs and misunderstandings
  22. Nah there is no need for functions, its a pretty small script. There is no reason to create a function for one use
×
×
  • Create New...