19-01-2007, 01:02 AM
The code i use for mine is
The way it lists the player is diffrent but it does the same thing. Just it gets the player on a certain map as so i can see who i am chatting with.
Code:
Private Sub Form_Load()
frmMapChat.txtMap.Text = 1
frmMapChat.lblPlayers.Caption = GetTotalMapPlayers(1)
frmMapChat.lstPlayers.Clear
For i = 1 To GetTotalMapPlayers(txtMap.Text)
frmMapChat.lstPlayers.AddItem i & ": " & GetPlayerName(i)
Next i
End Sub
The way it lists the player is diffrent but it does the same thing. Just it gets the player on a certain map as so i can see who i am chatting with.