Jump to content

LunarBurn1

Member
  • Posts

    52
  • Joined

  • Last visited

  • Days Won

    2

LunarBurn1 last won the day on November 6 2023

LunarBurn1 had the most liked content!

Recent Profile Visitors

568 profile views

LunarBurn1's Achievements

Rookie

Rookie (3/6)

3

Reputation

  1. command /clearchat: permission: staff.clear permission message: &cYou may not execute this command! trigger: loop 500 times: broadcast " " That should work
  2. As far as I'm aware, there really isn't an effective way of removing blocks when players come in contact with them from the side... You could try something like: loop blocks in raidus 1 around player: if loop-block is snow block: set loop-block to air (Did not test, but should work)
  3. As the skript is 'on walking ON snow block', it will not delete the snow block when you touch it from any other direction/position.
  4. You would need to loop a couple hundred times, and broadcast a space each time. it should look something like this: loop 500 times: broadcast " "
  5. As the person before me said, you need to use 'loop-player' instead of 'player', because there is no player in a periodical, or timed, event. Your fixed section of code should look like this: every 5 minutes: loop all players: if "%region at loop-player%" contains "afk": give green candle of unbreaking named "&a&lᴀꜰᴋ ᴛᴏᴋᴇɴ" to loop-player send "&dYou got a &b AFK TOKEN &dfor being AFK!" to loop-player broadcast "" broadcast "&5All players in the AFK pit just got &5a&b AFK TOKEN!" broadcast ""
  6. Move line 5 to the bottom of the first section, so as to apply the conditions to it. Your code looks like this right now: command /dupe: cooldown: 2 minutes cooldown message: &7You last duplicated an item &2%elapsed time% &7ago, you may dupe again in &2%remaining time% trigger: give player player's held item if player's held item is not air: if player's held item is not nether star: if player's held item is not a shulker box: play sound "ENTITY_PLAYER_LEVELUP" or "BLOCK_RESPAWN_ANCHOR_CHARGE" to player It should look like this: command /dupe: cooldown: 2 minutes cooldown message: &7You last duplicated an item &2%elapsed time% &7ago, you may dupe again in &2%remaining time% trigger: if player's held item is not air: if player's held item is not nether star: if player's held item is not a shulker box: play sound "ENTITY_PLAYER_LEVELUP" or "BLOCK_RESPAWN_ANCHOR_CHARGE" to player give player player's held item
  7. Instead of dropping a number of items, add the items to the player's inventory add (number or number variable) of (item to add to the player's iventory) to player's inventory
  8. For the inventory, you could do something like this (untested, but should work in theory) if victim's inventory contains armor: As for the Enderchest/PVs, I'm not quite sure, since Skript does not have integration into the plugin Personal Vaults (as far as I'm aware). For Enderchest, you are using a Custom Enderchest plugin, which likely creates a Custom GUI and completely replaces the default Enderchest, so Skript's Enderchest support would not function for it. I do not know quite what to do for the PVs and EnderChests, but hopefully the inventory bit helps!
  9. That should already be a thing. In this case, the skript only allows pvp if both players are wearing armor. Having armor in a PV, Enderchest, or simply in their inventory does not count as wearing it, so they should be protected regardless. If I got your post request wrong, let me know lol
  10. I would just like to point out that, without further context, there's not much anyone can do to really help you. We would have to know what the boosts will affect, for one thing. For example, if this is to increase drop rates on a gens server, you would have to give us more information about what you are using for gens, and so on.
  11. Do you have a Discord Server we could join to go through everything? Or should we simply post our interest here? (If the former is the case, then I'd be willing to help you)
  12. @paryx, in response to your previous question: If you are using something along the lines of if executor is console: You could make it send a message if the executor is not console, like this if executor is console: #rest of your skript if it IS console else: send "&cHey! You aren't console!" #change the text to whatever message you want Untested, but should work! Let me know if you need anything else!
  13. Hey paryx! Using executable by: console Should work, but you could also add something along the lines of if executor is console: (Last one is untested, but should work) Let me know if they don't work!
  14. I may be wrong, but I'm pretty sure this is a RAM issue- The solution, if it IS a RAM issue, would be to buy more RAM.
  15. Could you send your current Skript? It would really speed up the process of getting you helped.
×
×
  • Create New...