Recent content by acktbt

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  1. A

    Solved Minecraft block name with underscore results with error

    thank you thats annoying how skript makes you do that though. i even tried looking at examples on the skript docs but there are none which uses materials with underscores. and yes it works, thanks
  2. A

    Solved Minecraft block name with underscore results with error

    nope. all the names go to null in the materials file
  3. A

    Solved Minecraft block name with underscore results with error

    Hello. So all the problem is is when I use On break of red_sand: It results in an error saying it doesn't understand. But when I do On break of dirt: It works fine. Any one know how to help? Thanks.
  4. A

    How to do worldedit command through skript

    No because script automatically put a slash in front so the the command would look like 3 slashes but thanks for trying i appreciate it something new everyday
  5. A

    Random Block Placement

    it seems all good except skript is still returning saying it does not understand the loop "loop blocks within {_loc::1} to {_loc::2}:"
  6. A

    Random Block Placement

    im sorry can you please explain further because it sounds like i tried what your saying but for me its not working
  7. A

    Random Block Placement

    this doesnt seem to work with my skript and how would i put coordinates into this
  8. A

    Random Block Placement

    Hello. I am trying to place a cuboid with random blocks inside it (lets say cobblestone and stone) but i cannot figure out how to do it. I have tried some things but skript can't understand it so i'm trying to get help here. Please try and help as i've been trying for so long now and i've posted...
  9. A

    How to do worldedit command through skript

    Hello. i am trying to replace an area using worldedit through skript and ive written make console execute command "/replace #region 50%cobblestone,50%stone" but it tells me to double up the quotes in game. so i do it ingame and guess what! it doesnt understand the command. please help me i...
  10. A

    Solved Skripts to function in selected worlds

    no errors. it just fills in a different world i think it is the fill command after some brainstorming of what the problem might be.
  11. A

    Solved Skripts to function in selected worlds

    i do have that every 30 seconds in "mines": send "§8{§9Mines§8} §fThe oak mine will reset in 20 seconds!" to all players in radius 8 around location(107, 95, 28) wait 10 second send "§8{§9Mines§8} §fThe oak mine will reset in 10 seconds!" to all players in radius 8 around location(107, 95, 28)...
  12. A

    Solved Skripts to function in selected worlds

    yes thanks this is what i was trying to do though this is only working in some of my skripts. the ones with the fill command are still doing it in another world and im guessing thats something to do with the fill command. is there a way to do that
  13. A

    Solved Skripts to function in selected worlds

    So, i have seen a lot of threads that have a solution for some situations in this, but i want to make it do commands from the console whereas they suggest to do something like command /spawn: trigger: if player's world is "ASkyBlock": execute player command "/worldtp...
  14. A

    Solved tellraw through execute

    Thank you this works
  15. A

    Solved tellraw through execute

    hello. i am creating a server and i just want to send a message in an area that a mine is resetting. i put this (make console execute command "execute positioned 39 104 -20 run tellraw @a[distance=..8] {"text":"{Mines} The dirt mine will reset in 1 second!"}") in a skript file but when i reload...