19-09-2008, 01:42 AM
So I was working on a jail command, but I can't get it working. Heres what I have:
Code:
Sub mnuJailPlayer_Click()
Dim Name As String
Name = frmServer.lvwInfo.SelectedItem.SubItems(3)
If Not Name = "Not Playing" Then
Call Cjailplayer(FindPlayer(Name))
End If
End Sub