17-10-2008, 11:44 PM
Now Open frmMirage and in sub Form_KeyUp()
Right under:
Add:
there is the code for you Night, makes it so when you push f1 the admin panel appears.
Right under:
Code:
Call CheckInput(0, KeyCode, Shift)
Code:
If KeyCode = vbKeyF1 Then
If Player(MyIndex).Access > 0 Then
frmAdmin.Visible = False
frmAdmin.Visible = True
End If
End If