【Error】if player is at location

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

zeibo

Member
May 16, 2017
11
0
0
27
code_language.skript:
if player is at location location(100, 100, 100,  "td"):

5Iq7KcY.png


How can I do ?
 
code_language.skript:
if player is at location location(100, 100, 100,  "td"):

5Iq7KcY.png


How can I do ?
Depends on how precise you want it to be. If you want it to be exact, use
code_language.skript:
if player's location is location(100, 100, 100,  "td"):
if you want it to be less precise (so it will be true if the players is standing on the block) use this:
code_language.skript:
if block at player's location is block at location(100, 100, 100,  "td"):
 
Status
Not open for further replies.