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

    Supply drop help

    Check your server log, maybe skript-mirror gives you an error on loading and you don't see it EDIT: I found an error on my previous code and I edited it. But that error isn't related with your ones
  2. E

    Check if file exists

    You already gave the solution: if "plugins/iEssentials/config.yml" doesn't exist:
  3. E

    Check if file exists

    So, basically what's the problem?
  4. E

    Supply drop help

    You can do: function fallingChest(location: location, items: items, falltype: itemtype = beacon): spawn "falling %{_falltype}%" parsed as an entity type at {_location} set {_block} to last spawned entity {_block}.setDropItem(false); while {_block}.isOnGround() is false: wait 1 tick...
  5. E

    Increase mobs follow range

    Hey, I'm looking for a way to spawn mobs, most likely zombies. Now, the problem is that if I spawn them more than 30 blocks away from a target they don't see him. How can I improve this range in Skript? In vanilla I found "{Attributes:[{Name:generic.followRange,Base:<RANGE>}]}" but, I really...