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

    Script [Deleted] Missiles

    Donut submitted a new resource: Missiles - Modernize minecraft warfare with a variety of missiles! Read more about this resource...
  2. Donut

    Addon [Deleted] SkVault (Skript Economy Registerer)

    Donut submitted a new resource: SkVault (Custom Economy Support) - Make your custom Skript economy Vault compatible! Read more about this resource...
  3. Donut

    Other Skript Obfuscation & Jar Encapsulation

    Preface This tutorial will walk you though obfuscating your skripts as well as encapsulating them in a jar with Obfuskator. Obfuskator is not a plugin! Obfuscated skripts do not require any additional plugins besides skript to run. The obfuscation is not irreversible of course and is solely...
  4. Donut

    Script Tools [Deleted] Obfuskator (+Jar Encapsulation)

    Donut submitted a new resource: Obfuskator - Make your skripts unreadable by humans! Read more about this resource...
  5. Donut

    Shop Function Error

    I have this function for a shop but its always saying the player doesnt have the items needed even when they do function test(p: player, item: item, cost: item): if {_p}'s inventory contains {_cost}: remove {_cost} from {_p}'s inventory give {_p} {_item} else...
  6. Donut

    Addon [Deleted] SkUniversal

    Donut submitted a new resource: SkUniversal - Skript addon that provides support for a variety of plugins. Read more about this resource...
  7. Donut

    Solved Skript API

    Does anyone know where to find the skript api? I couldnt find it on bensku's github https://github.com/bensku/Skript and also http://en.njol.ch/projects/skript/API is just a blank page. Sorry if im missing something obvious :emoji_sweat_smile:
  8. Donut

    Solved Push Minecart

    im trying to push a minecart but it goes really slow no matter what speed i push it at. anyone know how to make it go faster? on rightclick: if player is riding a minecart: if player's tool is a stick: loop entities in radius 1 of player: if loop-value is...
  9. Donut

    Solved Loop entities between 2 locations

    I'm trying to loop entities between 2 points but I can't get it to work. My code: loop entities between {loc1} and {loc2}: The error on reload: 'entities between <...>' can only accept a single world, not more. This same code works if I replace 'entities' with 'blocks' so am I missing something...
  10. Donut

    Solved Tabs/spaces

    Sometimes when I reload a script ill get an error saying "expected 4 spaces, but found 1 tab", so i make notepad++ replace tabs with spaces, then re-indent and everything works... However, later on it will randomly say the opposite, "expected 1 tab but found 4 spaces", so I make notepad++ not...
  11. Donut

    Set tool of vex to air

    By default, a vex spawns with a sword and I'm trying to set its tool to air but the tool remains a sword. However, if I set the tool to a different item, cobblestone for example, it works. Code: command /test: trigger: spawn a vex at player's location set last spawned vex's...
  12. Donut

    Solved Inventory name of chest

    I'm trying to set the inventory name of a chest but can't figure it out. Here's the code: on place of a chest: set inventory name of event-block's inventory to "hi" broadcast "%inventory name of event-block's inventory%" No errors but the chest's inventory name isn't changed, and when I...
  13. Donut

    Solved Ignite a block

    I know you can ignite entities but is there a way to ignite blocks?
  14. Donut

    Solved Vectors

    So I created a vector using the built in function - vector(num, num, num) but how do I push a player or shoot a projectile along the vector?
  15. Donut

    Invisible Projectile

    Is it possible to make a projectile invisible? I can't find an addon that can do it.
  16. Donut

    Solved Quotations

    Is there a way to send quotations within a message because when I try to insert them it gives an error saying that it doesn't understand the effect. command /test: trigger: send " "hi" " to player
  17. Donut

    Pathfinding - Target nearest mob

    I'm using the latest skstuff for mob pathfinding. I know how to make a mob target the nearest mob, but only of a certain type, e.g. on rightclick: spawn a zombie at the target block's location add pathfinder goal target nearest sheep to last spawned entity But is there a way to make the...
  18. Donut

    Solved Looping Blocks in a Region

    I'm trying to loop through the blocks in a region but for some reason the it's not working. No errors, the loop just doesn't send any message as if there's no blocks to loop. I am using skript dev25 and the latest worldguard. command /test: trigger: set {region} to "%region at...
  19. Donut

    Map image

    Skript: dev25 Skellet: 1.9.0e I'm trying to display a image on a map with skellet but it's not recognizing any of the effects/conditions. My code is just the test example he gives: on map: set {_map} to event-map set scale of map {_map} to FARTHEST broadcast "%scale of map {_map}%"...
  20. Donut

    Solved List contains a value

    I'm trying to check if a list variable contains a certain value, but it's not working and I'm getting no errors. #add a value to the list command /add <text>: trigger: add arg text to {list::*} #check if a value is in the list command /check <text>: trigger: if...