15-01-2008, 10:42 PM
Ok, well I fixed that...But now I'm getting a new error.
The part ".ListIndex" of the ".optBeast" part is the part I'm getting the error of "method or data member not found" on. I've never gotten this error before, so what do it even mean?
Code:
Case MENU_STATE_ADDCHAR
frmNewChar.Visible = False
If ConnectToServer = True Then
Call SetStatus("Connected, sending character addition data...")
If frmNewChar.optMale.Value = True Then
Call SendAddChar(frmNewChar.txtName, 0, frmNewChar.cmbClass.ListIndex, frmChars.lstChars.ListIndex, frmNewChar.optBeast.ListIndex, frm.NewChar.optDark.ListIndex + 1)
Else
Call SendAddChar(frmNewChar.txtName, 1, frmNewChar.cmbClass.ListIndex, frmChars.lstChars.ListIndex + 1)
End If
End If