please tell me how to drop items to specific coordinates to get new items

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

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.
code_language.skript:
set {_item} to diamond sword named "cool"
drop 1 of {_item} at player's location
 
If you are wanting to drop an item at the player, use what jaylawl sent.
If you are wanting to drop an item at a specific coordinate, skript has a build in function for location, use like this:
code_language.skript:
drop 1 stone at location(283,65,201, world "world") without velocity
Obviously change the coords and world to suit your needs. You can leave world out if you so choose, it will default to the world of the player. Also you dont need the "without velocity" part... i just put that in there so the item doesn't try fly away to somewhere else
 
Status
Not open for further replies.