13-04-2009, 01:59 PM
= is shown in your message when you send admin messages. Easy fix.
Replace:
Replace:
Code:
' Admin Message
If Left$(ChatText, 1) = "=" Then
If GetPlayerAccess(MyIndex) >= ADMIN_MAPPER Then
ChatText = Mid$(ChatText, 2, Len(ChatText) - 1)
If Len(ChatText) > 0 Then
Call AdminMsg(MyText)
End If
MyText = vbNullString
frmMirage.txtMyChat.Text = vbNullString
Exit Sub
End If
End If
Code:
' Admin Message
If Left$(ChatText, 1) = "=" Then
If GetPlayerAccess(MyIndex) >= ADMIN_MAPPER Then
ChatText = Mid$(ChatText, 2, Len(ChatText) - 1)
If Len(ChatText) > 0 Then
Call AdminMsg(ChatText)
End If
MyText = vbNullString
frmMirage.txtMyChat.Text = vbNullString
Exit Sub
End If
End If