View Single Post
  #13  
Old 07-21-2002, 01:22 AM
Python523 Python523 is offline
Banned
Join Date: Aug 2001
Location: Illinois
Posts: 3,498
Python523 is on a distinguished road
if you want to go through the players in a level, run a for loop
for(i=0;i<playerscount;i++){
with(players[i]){
//stuff
}
}
Reply With Quote