12-09-2008, 10:39 PM
So I made this system, so that when people log in, not only does it display who's online, but it displays who's online that has a PK. However, I want people to be able to check whenever they damned well please, so I made a command However, when I type that in game, it just says "No ones online" which isn't whats set for the whohasPk packet, but it is for the whos online packet. So how do I fix this? Also when I was trying to make a member of the month (MOTM), an exact rip off of MOTD, If I change one, the other changes. How do I fix this? Sorry for the absolutely stupid questions, I'm horrible with VB6 at the moment. Also I'm using MS4.
Code:
' Whos online has a PK
If Mid$(MyText, 1, 9) = "/whohaspk" Then
Call SendWhoHasPK
MyText = vbNullString
frmMirage.txtMyChat.Text = vbNullString
Exit Sub
End If