1. 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!

  2. LOOKING FOR A VERSION OF SKRIPT?

    You can always check out our Wiki for downloads and any other information about Skript!

Dismiss Notice
This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Solved Summon items

Discussion in 'Skript' started by Aztron, Mar 20, 2017.

Thread Status:
Not open for further replies.
  1. Aztron

    Aztron New Member

    Joined:
    Mar 15, 2017
    Messages:
    7
    Likes Received:
    0
    How do I summon items in certain cordinates?
    i want to summon, not drop. It's possible?
     
  2. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    By specifying that you want to summon, I assume you mean using the vanilla command. If so, you can just run the command via console:

    Code (Skript):
    1. execute console command "/summon minecraft:creeper 0 100 0"
    Of course, you can change that to summon an item, change the coordinates, and/or add NBT tags to the end of it to change the summoned item. Note that console commands default to running relative to the main world, the one named just "world". If you want to run it in a different world, you should execute the command relative to a player. So for example, if you want the player to summon a creeper at 0 100 0 in THEIR world whenever they right click, you can do:

    Code (Skript):
    1. on right click:
    2.     execute console command "execute %player% ~ ~ ~ /summon minecraft:creeper 0 100 0"
    And it will summon in their world no matter what world it is.
     
  3. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    I do it in other world lol, now i know, console only in "WORLD".
    Thanks for the help!:emoji_slight_smile:
     
Thread Status:
Not open for further replies.

Share This Page

Loading...