Isto é uma pré-visualização de um tema em Hitskin.com
Instalar o tema • Voltar para a ficha do tema
Aumentando Level Máximo
+5
Skull Death
BrunoFox
JuanCollin
Jonny
Valentine
9 participantes
Página 1 de 3
Página 1 de 3 • 1, 2, 3
Aumentando Level Máximo
Client
1 - No modConstants, procure por:
3 - No modTypes, procure por:
4 - No lugar de:
5 - Substitua por:
Servidor:
6 - Repita o mesmo procedimento no Servidor.
Obs.: Caso você queira alterar o level acima de 500, além de seguir as instruções acima você deve fazer o seguinte:
7 - No modPlayer do Servidor, procure por:
8 - Substitua por:
9 - No modDatabase do Client, procure por:
10 - Substitua por:
Créditos
Valentine (Por criar e disponibilizar o tutorial)
Dragonick (Refez a formula do GetplayerNextLevel)
1 - No modConstants, procure por:
- Código:
Public Const MAX_LEVELS As Byte = 100
- Código:
Public Const MAX_LEVELS As Long = 500
3 - No modTypes, procure por:
- Código:
Private Type PlayerRec
4 - No lugar de:
- Código:
Level As Byte
5 - Substitua por:
- Código:
Level As Long
Servidor:
6 - Repita o mesmo procedimento no Servidor.
Obs.: Caso você queira alterar o level acima de 500, além de seguir as instruções acima você deve fazer o seguinte:
7 - No modPlayer do Servidor, procure por:
- Código:
Function GetPlayerNextLevel(ByVal Index As Long) As Long
GetPlayerNextLevel = (50 / 3) * ((GetPlayerLevel(index) + 1) ^ 3 - (6 * (GetPlayerLevel(index) + 1) ^ 2) + 17 * (GetPlayerLevel(index) + 1) - 12)
End Function
8 - Substitua por:
- Código:
Function GetPlayerNextLevel(ByVal Index As Long) As Long
GetPlayerNextLevel = (25 / 15) * ((GetPlayerLevel(Index) + 1) ^ 3 - (2 * (GetPlayerLevel(Index) + 1) ^ 2) + 17 * (GetPlayerLevel(Index) + 1) - 12)
End Function
9 - No modDatabase do Client, procure por:
- 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
10 - Substitua por:
- 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 = (25 / 15) * ((GetPlayerLevel(Index) + 1) ^ 3 - (2 * (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
Créditos
Valentine (Por criar e disponibilizar o tutorial)
Dragonick (Refez a formula do GetplayerNextLevel)
Última edição por Valentine em Sex Jun 08, 2012 10:23 am, editado 10 vez(es)
carlosarruda gosta desta mensagem
Re: Aumentando Level Máximo
Nuss nao to conseguindo
Nao achei só achei o as long é em qual EO esse tuto?Public Const MAX_LEVELS As Byte = 100
Cocao- Banido
- Mensagens : 58
Créditos : 4
Re: Aumentando Level Máximo
Olá marlos, eu uso o E.O 2.0, e quero alterar para 150.
A alteração, creio eu que será assim.
de:
ou só mudar isso e o resto do tutorial do jeito que está?
A alteração, creio eu que será assim.
de:
para:Public Const MAX_LEVELS As Byte = 100
mas no resto do tutorial, precisa alterar mais alguma coisa para 150?Public Const MAX_LEVELS As Long = 150
ou só mudar isso e o resto do tutorial do jeito que está?
_________________
mãe, tô no youtube
Re: Aumentando Level Máximo
Eu refiz o tutorial, da uma olhada.Lucky escreveu:Olá marlos, eu uso o E.O 2.0, e quero alterar para 150.
A alteração, creio eu que será assim.
de:para:Public Const MAX_LEVELS As Byte = 100mas no resto do tutorial, precisa alterar mais alguma coisa para 150?Public Const MAX_LEVELS As Long = 150
ou só mudar isso e o resto do tutorial do jeito que está?
Re: Aumentando Level Máximo
O meu está
EDIT
aff agora nem abre mais o E.O
Eu ligo o server ok, ai vou no eclipse ai na hora do login da erro no server, e ele nao entra...
sei la oq "Run-Time error 9
Subscript out of range"
EDIT2:
Fiz denovo e consegui, mas ele não passa de 100 oO
vou modificar pra 150, qualquer coisa eu editoPublic Const MAX_LEVELS As Long = 100
EDIT
aff agora nem abre mais o E.O
Eu ligo o server ok, ai vou no eclipse ai na hora do login da erro no server, e ele nao entra...
sei la oq "Run-Time error 9
Subscript out of range"
EDIT2:
Fiz denovo e consegui, mas ele não passa de 100 oO
_________________
mãe, tô no youtube
Re: Aumentando Level Máximo
affs aqui vc nao explica onde procurar(em que arquivo que estou falando)Obs.: Caso você queira alterar o level acima de 500, além de seguir as instruções acima você deve fazer o seguinte:
7 - Procure por:
Código:Function GetPlayerNextLevel(ByVal index As Long) As Long
GetPlayerNextLevel = (50 / 3) * ((GetPlayerLevel(index) + 1) ^ 3 - (6 *
(GetPlayerLevel(index) + 1) ^ 2) + 17 * (GetPlayerLevel(index) + 1) -
12)
End Function
8 - Substitua por:
Código:Function GetPlayerNextLevel(ByVal index As Long) As Long
GetPlayerNextLevel = (25 / 15) * ((GetPlayerLevel(index) + 1) ^ 3 - (2 *
(GetPlayerLevel(index) + 1) ^ 2) + 17 * (GetPlayerLevel(index) + 1) -
12)
End Function
@Edit:Fui testar com meus 500 de nivel maximo msm e oque aconteceu???
não sai do lvl 100 só vai até o 100
Última edição por Cocao em Qui Dez 29, 2011 7:38 pm, editado 1 vez(es)
Cocao- Banido
- Mensagens : 58
Créditos : 4
Página 1 de 3 • 1, 2, 3
Tópicos semelhantes
» Como Aumentando Level Máximo ? netplay v3
» Aumentando Maximo de Itens
» Aumentando a Tela do Jogo
» Aumentando a Quantidade de Mapas
» Aumentando a tela da Crystalshire
» Aumentando Maximo de Itens
» Aumentando a Tela do Jogo
» Aumentando a Quantidade de Mapas
» Aumentando a tela da Crystalshire
Página 1 de 3
Permissões neste sub-fórum
Não podes responder a tópicos
|
|