send to player with permission]

  • 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.
Apr 6, 2019
21
0
0
19
I'm trying to send text to all players with a certain permission. Is this it?
Code:
loop-all players:
    if loop-player has permission "staff.ban"
    send "I'm too lazy to write the whole thing here"
 
You have to add who you are sending the message to, like `to loop-player` otherwise Skript doesn't know whom to send the message to
 
I'm trying to send text to all players with a certain permission. Is this it?
Code:
loop-all players:
    if loop-player has permission "staff.ban"
    send "I'm too lazy to write the whole thing here"
You lacked to place the "to loop-player" after the "send" quotes.

code_language.skript:
loop-all players:
    if loop-player has permission "staff.ban":
        send "I'm too lazy to write the whole thing here" to loop-player
 
Status
Not open for further replies.