16-09-2008, 01:12 AM
I didn't get a chance to work on MS4 much because my baby has been sick.
I saw one tiny thing in modGameLogic. When you hit enter it checks every command even if you don't have the "/", so why not check for that first?
Sub HandleKeyPresses
Add:
Right before:
Add:
Right After
I saw one tiny thing in modGameLogic. When you hit enter it checks every command even if you don't have the "/", so why not check for that first?
Sub HandleKeyPresses
Add:
Code:
If Left$(MyText, 1) = "/" Then
Code:
' // Commands //
Add:
Code:
End If
Code:
' Ban destroy
If Mid$(MyText, 1, 15) = "/destroybanlist" Then
Call SendBanDestroy
MyText = vbNullString
frmMirage.txtMyChat.Text = vbNullString
Exit Sub
End If
End If