Solved Doing an action on each player in a list

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

HalfFocused

Member
Mar 2, 2020
1
0
0
19
I have my skript setup do add all players who do a certain action onto a list. How would I execute commands on all these players? I can parse a list but I'm not sure how to target the players. Thank you in advance!
 
Assuming you want to do the same stuff for every player in a list:
Code:
loop all players in {list::*}:
    # do stuff with loop-player
 
Status
Not open for further replies.