Solved Drop Item At 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!

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

SmallDev

Member
Apr 6, 2020
39
0
6
I'm making a gen skript, and am using
Code:
every 5 seconds:
    loop {DirtLo::*}:
        drop 10 dirt at loop-value
But this is not working. I get no errors.
 
I'm making a gen skript, and am using
Code:
every 5 seconds:
    loop {DirtLo::*}:
        drop 10 dirt at loop-value
But this is not working. I get no errors.

I never tried dropping items at coords but i can try helping you. Instead of
Code:
drop 10 dirt at loop value
try:
Code:
drop 10 dirt at {DirtLo::*}
[doublepost=1596321273,1596321097][/doublepost]and if it doesnt work make sure {DirtLo::*} is set.
Sometimes it resets variables for me when i restart the server.
Also try using {DirtLo} instead of {DirtLo::*}
 
I used this code to test it and it worked
Code:
command /g:
  trigger:
    set {DirtLo} to location of player
 
command /t:
  trigger:
    drop 10 dirt at {DirtLo}
I think you didnt set {DIrtLo}
 
Status
Not open for further replies.