Summon exp bottles from sky on specified Coords

  • 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!

Saikyouu

Member
Jan 6, 2024
1
0
1
20
Hello there!

I tried to create a Skript where Thrown Experience Bottles would summon out of nowhere and drop on certain coordinates.
Also if possible to make them drop if a player is in radius of 50 blocks.
I need this for my SkyPvP gamemode and i wanted to place this thing on 3 islands on the map.
Idk if you guys need the version of the server, but it's on 1.8.8.

Thanks for the help!
 
Ok I think this is what you wanted. It should even work with skript 2.0.

Here is the code
Code:
command /spawnxp:
    permission: op
    trigger:
        set {_loc} to location at 199, 101, 259 of world of player
        loop all players:
            if the distance between the loop-player and {_loc} is smaller than 51:
                set {_spawn} to true
        if {_spawn} is true:
            drop experience at {_loc} without velocity

It spawns a experiance orb at the {_loc} location that you can just set in line 4
Just copy the stuff out of a command and into your skript