Jump to content

Stuff455

Member
  • Posts

    5
  • Joined

  • Last visited

Stuff455's Achievements

Lurker

Lurker (1/6)

1

Reputation

  1. try this! on right click: name of player's tool is "Scuba Tanks": make console execute command "/minecraft:effect give %player% minecraft:water_breathing 30 1 true" remove 1 of player's held item from player's inventory
  2. on break of iron block: give player 9 iron ingots if event-block is iron block: clear drops Try this
  3. Hi there, I'm having an issue with this script. Whenever I try to reload it, it doesn't seem to work. the script is: command /setCompressed <item>: permission: server.admin trigger: if player's held item is air: message "&cEH can't set an compressed item to air" to player stop set {compressedInfo::%arg 1%} to player's tool message "&7Compressed item for &c%arg 1% &7set" to player command /createACompressor [<text>]: permission: server.admin trigger: if arg 1 is not set: send "&6Creation of a auto compressor" send "&6Hold an item and choose item to compress" send "&eex: &7/createACompressor raw iron" send "&eex: &7/createACompressor diamond" else if player's tool is air: send "&cHold an item please" else: set {_i} to player's tool set player's tool to {_i} with nbt (nbt compound from "{compType:""%arg 1%""}") function AutoCompress(p: player, it: item): if item amount of {_it} > 1: set {_it} to 1 of {_it} {compressedInfo::%{_it}%} is set set {_pHas} to rounded down (amount of {_it} in {_p}'s inventory / 64) ? 0 {_pHas} > 0 remove {_pHas}*64 of {_it} from {_p}'s inventory give {_p} {_pHas} of {compressedInfo::%{_it}%} if {_it} is plain gold nugget: if {_p}'s inventory contains 64 of plain raw gold: AutoCompress({_p}, plain raw gold) else if {_it} is plain ancient debris: if {_p}'s inventory contains 64 of plain netherite ingot: AutoCompress({_p}, netherite ingot) on mine: set {_drop} to first element out of drops of event-block using player's tool if "%type of {_drop}%" contains tag "tag;compType" of nbt compound of player's offhand tool: AutoCompress(player, type of {_drop})
  4. Stuff455

    Skript Shulker box

    Every time my players try to place a shulker box it doesn't work can you make a shulker script so that when they place a shulker it opens a GUI.
  5. Stuff455

    Fortune Skript

    There is this script file I downloaded it is good except, I want it to give the item not drop the item The script is: on mine: if player's gamemode is survival: cancel the drops set {_f} to level of fortune of player's tool set {_l} to {_f} + 1 set {_drops} to random integer between 1 and {_l} loop {_drops} times: drop drops of event-block using player's tool
×
×
  • Create New...