i see other threads but none are specific to this problem. How can I add Players to an array P $team1= []; onJoin(){ $player->addtoarray } Also how can I make sure there isnt more than 2 people in an array
Adding an element to an array: PHP: $team1[] = $player PHP: if(count($team1) > 2){ // There's more than two people in there} Both questions could've been solved within 5 minutes of research