The Server.Players is a Dictionary<ulong, Player>, which means the key is the player's id, the value is the player object. If you have a baseplayer or an ulong steamid, you don't need to find the player, just :
player = Server.Players[userID]
Also, you should look in utilizing the...