Permission "c.warp" 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.

MrBlack

New Member
Jan 2, 2019
5
0
1
23
every 1 ticks:
if player has permission "a.Good":
set {aGood.%uuid of player%} to &aGood
else:
set {aGood.%uuid of player%} to &cNot Good
if player has permission "j.Good":
set {jGood.%uuid of player%} to &aGood
else:
set {jGood.%uuid of player%} to &cNot Good
if player has permission "s.Good":
set {sGood.%uuid of player%} to &aGood
else:
set {sGood.%uuid of player%} to &cNot Good
 
code_language.skript:
every 1 ticks:
    loop all players:
        set {aGood.%uuid of loop-player%} to "&aGood"
 
I am not sure for what that piece of code is but there are some things I'll point out:
  • It looks like you can use the player join and leave events, why are you using the periodical event?
  • There is no player in a periodical event.
  • Do not use a dot as variable separator, use list variables instead (separate them by two colons (::)).
 
Last edited:
Status
Not open for further replies.