CÓDIGO:
Não achei o Function GetPlayerNextLevel(ByVal Index As Long) As Long .
em lugar algum, se puder me ajudar agradeceria muito ...
- Código:
Function GetPlayerNextLevel(ByVal Index As Long) As Long
' If debug mode, handle error then exit out
If Options.Debug = 1 Then On Error GoTo errorhandler
If Index > MAX_PLAYERS Then Exit Function
GetPlayerNextLevel = (50 / 3) * ((GetPlayerLevel(Index) + 1) ^ 3 - (6 * (GetPlayerLevel(Index) + 1) ^ 2) + 17 * (GetPlayerLevel(Index) + 1) - 12)
' Error handler
Exit Function
errorhandler:
HandleError "GetPlayerNextLevel", "modDatabase", Err.Number, Err.Description, Err.Source, Err.HelpContext
Err.Clear
Exit Function
End Function
Não achei o Function GetPlayerNextLevel(ByVal Index As Long) As Long .
em lugar algum, se puder me ajudar agradeceria muito ...