Search results

  • 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. SWOEN

    How to fire a BlockBreakEvent with skript?

    That is not really what I meant, I could try to reset the mine myself with skript tho. What I mean is this: Code for pickaxe: on mine: name of player's tool contains "3x3": loop blocks in radius 1 of event-block break loop-block naturally using player's tool The plugin doesn't...
  2. SWOEN

    How to fire a BlockBreakEvent with skript?

    I have a mines plugin (CataMines) and I want a pickaxe that mines a 3x3 area, but the plugin only resets mines when the blocks are broken by players, for example, if i set it to air with worldedit it takes about 3 minutes to reset, while it should reset instantly. I contacted plugin maker and...
  3. SWOEN

    I am having a issue with the skript plugin

    what skript version do you currently have installed? (Do /skript info) and what version is your server running on?
  4. SWOEN

    I am having a issue with the skript plugin

    Do you have the right version of skript installed? (For paper, and for your version; 1.8, 1.12, 1.16-1.18) If yes, try to reinstall the same version.
  5. SWOEN

    How to check if a door is open

    Do you have SkQuery installed? With the right version? (Matching your Skript version)
  6. SWOEN

    How to replace any character after a certain character

    It's probably going to be a bit vague, but ill try my best. So I want to replace a "string" of 6 characters behind a different one. Example: you have "example#1ouby3test" I want to replace the # with the following 6 characters, no matter what they are? Does anyone know how?
  7. SWOEN

    How to check if a door is open

    I just found this on the forums: if target block of player is door: set {_block} to "%target block of player%" if {_block} contains "open": send "[Debug] The door you're looking at is open." to player else: send "[Debug] The door you're looking at...
  8. SWOEN

    Solved Console is not executing command

    okay. Thanks for helping! I'll look at some tutorials and change the version. EDIT: I tested it but it didn't, work, I just reinstalled the same version of Skript (2.6.2) and now it does seem to all be working. Thanks!
  9. SWOEN

    Solved Console is not executing command

    Seems to be none, on /sk reload test.sk and when the server starts Yes, my skript version is 2.6.2. I don't think any addons affect this, but I have these installed: Skellet, DiSky, skRayFall, skQuery, Erzats and WolfSK.
  10. SWOEN

    Solved Console is not executing command

    Hello! I was making some skript's when I saw no "execute console command "/example"" was working. I have tried doing this: command /executeconsolecommandtest: trigger: console command "say hello" and command /executeconsolecommandtest2: trigger: make console execute...
  11. SWOEN

    Solved Message contains "@%player%":

    So I have to do like: on chat: loop all players: if message contains "@%loop-player%": replace "@%loop-player%" with "&e@%loop-player%&r" in the message execute console command "/playsound minecraft:entity.player.levelup player %loop-player% 100 49 0 500 1" I used the sound...
  12. SWOEN

    Solved Message contains "@%player%":

    Hello there! I have a problem with my skript that mentions player's when they use @ before a player name. This is my code: on chat: if message contains "@%player%": replace "@%player%" with "&e@%player%&r" in the message execute console command "/playsound...