13-09-2008, 11:48 PM
Anthony Wrote:Did you add a new variable to the player UDT? Or what are you checking to see if the player has access?
UDT? I'm sorry, I'm very much n00bish. Anyways, heres what I have:
Code:
' VIP Message
If Mid$(ChatText, 1, 1) = "#" Then
ChatText = Mid$(ChatText, 2, Len(ChatText) - 1)
If Len(ChatText) > 0 Then
If GetPlayerAccess(MyIndex) >= 0 Then
Call VIPMsg(MyText)
End If
MyText = vbNullString
frmMirage.txtMyChat.Text = vbNullString
Exit Sub
End If
End If