Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
Winsock1.PeekData strData
'Text1.Text = strData & vbCrLf
End Sub
If now it only adds those who are online and doesn't check offline status. If you want to see for yourself I've added the exe file, to test write in the world 'Eternia'.
The website only tells you about the ones that are online currently. They don't tell you all of the players. You could keep a list of certain players, and then check to see if THEY are online.
Well, I searched the string if that player was online then it would give me a value over 0, so if there was a value over 0 then I would add it to the online list on my program. I've made it easier and seperated Offline and Onlines right now.
Why it didn't check all players were due to my fatal misstake I = I + 1 as I forgot it added automatically.