Get player number in room with ViewID

Options
I have this code...
other.gameObject.GetComponent<PhotonView>().ViewID

Assuming PUN has a reliable list of players that does not change and can be traversed I want to find out what number in that list they are, if that makes sense.

So I have
Player1 VIEWID: 1001
Player2 VIEWID: 2001
Player3 VIEWID: 4001
Player4 VIEWID: 5001

I want to use the ViewID to find out that ViewID 4001 is 3rd in that list. I hope that all makes sense and is easily possible.

Thanks

Comments