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. MrDarkLord37991

    Solved Change Y-coordinate in variable

    could be set {_loc} to 2 blocks behind the player set {_loc} to 1.5 blocks above player
  2. MrDarkLord37991

    Grenade Launcher not working

    What plugins are you using because this doesnt work for me also loop all entites around the projectile in radius 5: comes up with the error Cant understand this loop
  3. MrDarkLord37991

    Grenade Launcher not working

    I'm working on a zombie apocalypse and I'm making guns right now I'm trying to make a grenade launcher and it is not working (There is no errors from Skript) Here is the code: on right click holding a gold ingot: if the name of event-item is "Milkor MGL": if {delay.Milkor.%player%}...
  4. MrDarkLord37991

    Solved Problem with Gun Skript

    Thank you so much. This works very well thank you
  5. MrDarkLord37991

    Solved Problem with Gun Skript

    So I'm trying to make a gun skript but all the guns have the same fire rate and I want the gun to shoot slower Here is my code: # Sniper Rifle on right click holding a blaze rod: if the name of event-item is "Remington 700": player has a iron nugget remove iron nugget from...
  6. MrDarkLord37991

    how to change the player's name when pressing tab in chat

    set tablist name of player to "NameHere"
  7. MrDarkLord37991

    Multiple Shot Bow

    I tested it, and i see the problem because it is shooting an arrow which causes the skript to replay causing it to shoot forever You could make it so it is on a right click? on right click: tool of player is bow if the name of the player's tool is "Artemis's Bow": shooter has an...
  8. MrDarkLord37991

    what addons are required for open chest with 6 rows to palyer

    You could do this to open a chest on right click holding a nether star: open chest with 6 rows named "ChestNameHere" to event-player format slot <number> of player with <item> named "<name>" to be unstealable Please tell me if there is any errors
  9. MrDarkLord37991

    Multiple Shot Bow

    You could do that but put in a line to detect for a name so only a bow with a certain name can do that. Example: if the name of event-item is "Artemis's Bow": So if combined with @KingAdmin_YT 's code it should look like this on shoot: tool of shooter is bow if the name of the shooter's...
  10. MrDarkLord37991

    Solved Indentation Error with command

    Thank you all so much it works
  11. MrDarkLord37991

    Solved Indentation Error with command

    Just tried that but has the same error
  12. MrDarkLord37991

    Solved Indentation Error with command

    I have tried this but Skript just says that it doesnt understand the effect
  13. MrDarkLord37991

    Solved Indentation Error with command

    What? Addons for Skript? If so I have Skript and Skquery and the shoot zombie thing make the player shoot a zombie like a player would shoot a arrow from a bow its quite a fun effect
  14. MrDarkLord37991

    Solved Indentation Error with command

    I have just tried this and it has come up with the same error I was testing this to see if it worked and the error was for the line with %arg 1% command /zombie [<number>]: trigger: loop %arg 1% times: make the player shoot a zombie at speed 0
  15. MrDarkLord37991

    Solved Indentation Error with command

    I just tried this at skript complains that it does not understand what the spawn %arg-1% zombies at {_loc}
  16. MrDarkLord37991

    Solved Indentation Error with command

    I have now done this as i have been doing my own research for this but this doesn't help as there is still an error where skript says it doesnt understand spawn %arg 1% zombies 3 blocks above the player
  17. MrDarkLord37991

    Solved Indentation Error with command

    I'm trying to make a command that summons an amount of zombies(that you choose) and skript comes up with the error: Cant understand effect on line 3 Here is my code: command /zombie <amount> trigger: spawn %arg 1% zombies 3 blocks above the player
  18. MrDarkLord37991

    Trying To make a pickaxe with a certain name drop more cobblestone when mining stone

    Thank you so much i have been having so much of a problem with this and now it works
  19. MrDarkLord37991

    Trying To make a pickaxe with a certain name drop more cobblestone when mining stone

    I have tried this but it does not work as well but thank you for replying
  20. MrDarkLord37991

    Trying To make a pickaxe with a certain name drop more cobblestone when mining stone

    So I'm trying to make a pickaxe (with the name Miner's Dream) drop more cobblestone when mining stone and the code I've made has no errors but it is not working in game. on break of Stone: if event-player is holding a diamond pickaxe: if the name of the event-item is "Miner's...