Solved Is not an item type

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

Hryper

Member
Dec 29, 2017
2
0
0
21
every 1 seconds:
loop all players:
if {speed.%loop-player%} is greater than 7:
set {speed.%loop-player%} to 0
loop all players:
loop-player has permission "heltriz.ac": #The problem is here
send "test" to loop-player
 
every 1 seconds:
loop all players:
if {speed.%loop-player%} is greater than 7:
set {speed.%loop-player%} to 0
loop all players:
loop-player has permission "heltriz.ac": #The problem is here
send "test" to loop-player
You used 2 times "loop all players". No utilities.
 
every 1 seconds:
loop all players:
if {speed.%loop-player%} is greater than 7:
set {speed.%loop-player%} to 0
loop all players:
loop-player has permission "heltriz.ac": #The problem is here
send "test" to loop-player


code_language.skript:
every 1 seconds:
  loop all players:
    if {speed.%loop-player%} > 7:
      set {speed.%loop-player%} to 0
      if loop-player has permission "heltriz.ac":
        send "test" to loop-player
        stop
      else if loop-player doesn't have permission "heltriz.ac":
        stop
 
Status
Not open for further replies.