15-10-2008, 05:34 AM
Didn't work. I slowly unnulled stuff out, until I isolated it to this:
I tried placing the level check everywhere above , but it doesn't seem to work.
EDIT: Nevermind, I took out the level check from there, and it works fine. I tried sending it w/ my level 100, and my level 1 didn't pick it up. I set my level one to, level one-hundred, and I could send messages back and forth to my peeps. This is safe, right?
Code:
If Left$(ChatText, 1) = "*" Then
If GetPlayerLevel(MyIndex) > 99 Then
ChatText = Mid$(ChatText, 2, Len(ChatText) - 1)
If Len(ChatText) > 0 Then
Call EliteMsg(ChatText)
End If
MyText = vbNullString
frmMirage.txtMyChat.Text = vbNullString
Exit Sub
End If
End If
Code:
Call EliteMsg(ChatText)
EDIT: Nevermind, I took out the level check from there, and it works fine. I tried sending it w/ my level 100, and my level 1 didn't pick it up. I set my level one to, level one-hundred, and I could send messages back and forth to my peeps. This is safe, right?