[ALL]Poder De Luta(Quer Adicionar Outro Status)
+18
felipewyd
Master-Man
Coyotte
fernandobr
Ks_dark
cuccate
guuh
Lucas Roberto
Vponce_Vinipfg
victorlarios
Luiz
youh
DrayonDuarte
Lendário
snool
Flips03
Gu1lh3rm3
Cris~
22 participantes
MMORPG Brasil :: OPEN SOURCE ENGINES :: Outras Engines :: Elysium :: Tutoriais
Página 1 de 2
Página 1 de 2 • 1, 2
[ALL]Poder De Luta(Quer Adicionar Outro Status)
Client Side
Agora vá no modClientTCP e procure por essa linha:
Ainda no modClientTCP, procure por essa linha:
Substitua isso tudo por:
Server Side
Vamos para o modServerTcp
Procure por:
La Procure Por:
Creditos:
°Fryeja- Fez o Tutorial
°MMORPGBR-Onde Eu Postei
Agora vá no modClientTCP e procure por essa linha:
- Código:
frmMirage.lblLevel.Caption = "Level " & Val(Parse(7))
- Código:
frmMirage.lblPDL.Caption = "Poder de Luta: " & Val(Parse(8))
Ainda no modClientTCP, procure por essa linha:
- Código:
frmMirage.lblPoints.Caption = Val(Parse(1)) & " pontos"
- Código:
frmMirage.lblPoints.Caption = Int(Val(Parse(1)) / 4) & " pontos de poder de luta"
- Código:
If GetPlayerPOINTS(MyIndex) > 0 Then
frmMirage.AddStr.Visible = True
frmMirage.AddDef.Visible = True
frmMirage.AddSpeed.Visible = True
frmMirage.AddMagi.Visible = True
Else
frmMirage.AddStr.Visible = False
frmMirage.AddDef.Visible = False
frmMirage.AddSpeed.Visible = False
frmMirage.AddMagi.Visible = False
End If
- Código:
If GetPlayerPOINTS(MyIndex) > 0 Then
frmMirage.AddStr.Visible = False
frmMirage.AddDef.Visible = False
frmMirage.AddSpeed.Visible = False
frmMirage.AddMagi.Visible = False
frmMirage.AddPdl.visible = true
Else
frmMirage.AddStr.Visible = False
frmMirage.AddDef.Visible = False
frmMirage.AddSpeed.Visible = False
frmMirage.AddMagi.Visible = False
frmMirage.AddMagi.Visible = False
frmMirage.AddPdl.visible = False
End If
- Código:
Private Sub AddDef_Click()
Call SendData("usestatpoint" & SEP_CHAR & 1 & SEP_CHAR & 1 & END_CHAR)
End Sub
Private Sub AddMagi_Click()
Call SendData("usestatpoint" & SEP_CHAR & 2 & SEP_CHAR & 1 & END_CHAR)
End Sub
Private Sub AddSpeed_Click()
Call SendData("usestatpoint" & SEP_CHAR & 3 & SEP_CHAR & 1 & END_CHAR)
End Sub
Private Sub AddStr_Click()
Call SendData("usestatpoint" & SEP_CHAR & 0 & SEP_CHAR & 1 & END_CHAR)
End Sub
Substitua isso tudo por:
- Código:
Private Sub AddPDL_Click()
dim i as byte
For I = 0 To 3
Call SendData("usestatpoint" & SEP_CHAR & I & SEP_CHAR & 1 & END_CHAR)
Next
End Sub
Server Side
Vamos para o modServerTcp
Procure por:
- Código:
Sub SendStats(ByVal Index As Long)
Dim Packet As String
Packet = "PLAYERSTATSPACKET" & SEP_CHAR & GetPlayerstr(Index) & SEP_CHAR & GetPlayerDEF(Index) & SEP_CHAR & GetPlayerSPEED(Index) & SEP_CHAR & GetPlayerMAGI(Index) & SEP_CHAR & GetPlayerNextLevel(Index) & SEP_CHAR & GetPlayerExp(Index) & SEP_CHAR & GetPlayerLevel(Index) & END_CHAR
Call SendDataTo(Index, Packet)
End Sub
- Código:
Sub SendStats(ByVal Index As Long)
Dim Packet As String
Packet = "PLAYERSTATSPACKET" & SEP_CHAR & GetPlayerstr(Index) & SEP_CHAR & GetPlayerDEF(Index) & SEP_CHAR & GetPlayerSPEED(Index) & SEP_CHAR & GetPlayerMAGI(Index) & SEP_CHAR & GetPlayerNextLevel(Index) & SEP_CHAR & GetPlayerExp(Index) & SEP_CHAR & GetPlayerLevel(Index) & SEP_CHAR & Int((GetPlayerstr(Index) + GetPlayerDEF(Index) + GetPlayerSPEED(Index) + GetPlayerMAGI(Index)) / 4) & END_CHAR
Call SendDataTo(Index, Packet)
End Sub
La Procure Por:
- Código:
Sub PlayerLevelUp(index)
Dim I
Dim D
Dim C
C = 0
Do While GetPlayerExp(index) => GetPlayerNextLevel(index)
D = GetPlayerExp(index) - GetPlayerNextLevel(index)
Call SetPlayerLevel(index, GetPlayerLevel(index) + 1)
I = Int(GetPlayerSPEED(index) / 10)
If I < 1 Then I = 1
If I > 3 Then I = 3
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) + I)
Call SetPlayerExp(index, D)
C = C + 1
Loop
If C > 1 Then
'Call GlobalMsg(GetPlayerName(index) & " ganhou " & C & " níveis!", 6)
Else
'Call GlobalMsg(GetPlayerName(index) & " ganhou um nível!", 6)
End If
Call BattleMsg(index, "Você tem " & GetPlayerPOINTS(index) & " pontos para gastar.", 9, 0)
End Sub
Sub UsingStatPoints(index, PointType, PointQuant)
Select Case PointType
Case 0
'Gives you a set max
If GetPlayerSTR(index) + PointQuant > 1000 Then
Call BattleMsg(index, "Você chegou ao máximo de Força!", 12, 0)
Exit Sub
End If
Call SetPlayerSTR(index, GetPlayerSTR(index) + PointQuant)
Call BattleMsg(index, "Você adicionou " & PointQuant & " ponto(s) em Força!", 15, 0)
Call BattleMsg(Index, "Você ainda possui " & GetPlayerPOINTS(Index) - PointQuant & " pontos para serem gastos.", 15, 0)
Call SendDataTo(Index, "sound" & SEP_CHAR & "ForSubiu" & END_CHAR)
Case 1
'Gives you a set max
If GetPlayerDEF(index) + PointQuant > 1000 Then
Call BattleMsg(index, "Você chegou ao máximo de Defesa!", 12, 0)
Exit Sub
End If
Call SetPlayerDEF(index, GetPlayerDEF(index) + PointQuant)
Call BattleMsg(index, "Você adicionou " & PointQuant & " ponto(s) em Defesa!", 15, 0)
Call BattleMsg(Index, "Você ainda possui " & GetPlayerPOINTS(Index) - PointQuant & " pontos para serem gastos.", 15, 0)
Call SendDataTo(Index, "sound" & SEP_CHAR & "DefSubiu" & END_CHAR)
Case 2
'Gives you a set max
If GetPlayerMAGI(index) + PointQuant > 1000 Then
Call BattleMsg(index, "Você chegou ao máximo de Inteligência!", 12, 0)
Exit Sub
End If
Call SetPlayerMAGI(index, GetPlayerMAGI(index) + PointQuant)
Call BattleMsg(index, "Você adicionou " & PointQuant & " ponto(s) em Inteligência!", 15, 0)
Call BattleMsg(Index, "Você ainda possui " & GetPlayerPOINTS(Index) - PointQuant & " pontos para serem gastos.", 15, 0)
Call SendDataTo(Index, "sound" & SEP_CHAR & "IntSubiu" & END_CHAR)
Case 3
'Gives you a set max
If GetPlayerSPEED(index) + PointQuant > 1000 Then
Call BattleMsg(index, "Você chegou ao máximo de sua Agilidade!", 12, 0)
Exit Sub
End If
Call SetPlayerSPEED(index, GetPlayerSPEED(index) + PointQuant)
Call BattleMsg(index, "Você adicionou " & PointQuant & " ponto(s) em Agilidade!", 15, 0)
Call BattleMsg(Index, "Você ainda possui " & GetPlayerPOINTS(Index) - PointQuant & " pontos para serem gastos.", 15, 0)
Call SendDataTo(Index, "sound" & SEP_CHAR & "AgiSubiu" & END_CHAR)
End Select
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - PointQuant)
End Sub
- Código:
Sub PlayerLevelUp(index)
Dim D
Dim C
C = 0
Do While GetPlayerExp(index) => GetPlayerNextLevel(index)
D = GetPlayerExp(index) - GetPlayerNextLevel(index)
Call SetPlayerLevel(index, GetPlayerLevel(index) + 1)
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) + 4)
Call SetPlayerExp(index, D)
C = C + 1
Loop
If C > 1 Then
'Call GlobalMsg(GetPlayerName(index) & " ganhou " & C & " níveis!", 6)
Else
'Call GlobalMsg(GetPlayerName(index) & " ganhou um nível!", 6)
End If
Call BattleMsg(index, "Você tem " & GetPlayerPOINTS(index) & " pontos para gastar.", 9, 0)
End Sub
Sub UsingStatPoints(index, PointType, PointQuant)
Select Case PointType
Case 0
'Gives you a set max
If GetPlayerSTR(index) + PointQuant > 1000 Then
Call BattleMsg(index, "Você chegou ao máximo de Força!", 12, 0)
Exit Sub
End If
Call SetPlayerSTR(index, GetPlayerSTR(index) + PointQuant)
Case 1
'Gives you a set max
If GetPlayerDEF(index) + PointQuant > 1000 Then
Call BattleMsg(index, "Você chegou ao máximo de Defesa!", 12, 0)
Exit Sub
End If
Call SetPlayerDEF(index, GetPlayerDEF(index) + PointQuant)
Case 2
'Gives you a set max
If GetPlayerMAGI(index) + PointQuant > 1000 Then
Call BattleMsg(index, "Você chegou ao máximo de Inteligência!", 12, 0)
Exit Sub
End If
Call SetPlayerMAGI(index, GetPlayerMAGI(index) + PointQuant)
Case 3
'Gives you a set max
If GetPlayerSPEED(index) + PointQuant > 1000 Then
Call BattleMsg(index, "Você chegou ao máximo de sua Agilidade!", 12, 0)
Exit Sub
End If
Call SetPlayerSPEED(index, GetPlayerSPEED(index) + PointQuant)
End Select
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - PointQuant)
End Sub
Creditos:
°Fryeja- Fez o Tutorial
°MMORPGBR-Onde Eu Postei
Última edição por Supremo~ em Sáb 11 Set 2010, 15:58, editado 2 vez(es)
Cris~- Membro Veterano
- Mensagens : 1574
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
hum, vlw pelo tuto , o que eu fiz aquie eh totalmente diferente...
mesmo assim vlw pela contribuição!
+1 (quando eu descobri onde da +1 eu te dou... to perdido aqui...)
mesmo assim vlw pela contribuição!
+1 (quando eu descobri onde da +1 eu te dou... to perdido aqui...)
Cris~- Membro Veterano
- Mensagens : 1574
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Bom tuto!!
Queria saber uma coisa: Tem como aumantar um tipo de iten ao invés de aumentar mais um status?? (Se tiver como eu faço?)
- Ex: Quando vou criar um iten novo, as opções que aparecem sao de Arma, Armadura, Escudo, Elmo, (Os potions que eu esqueci), Magia e Pet. Eu queria adicionar Pants (Calça) nas opções.
E também quero saber uma coisa (É coisa simples): Para que serve o quadrado que fica debaixo da armadura nos equips?
Queria saber uma coisa: Tem como aumantar um tipo de iten ao invés de aumentar mais um status?? (Se tiver como eu faço?)
- Ex: Quando vou criar um iten novo, as opções que aparecem sao de Arma, Armadura, Escudo, Elmo, (Os potions que eu esqueci), Magia e Pet. Eu queria adicionar Pants (Calça) nas opções.
E também quero saber uma coisa (É coisa simples): Para que serve o quadrado que fica debaixo da armadura nos equips?
Flips03- Membro
- Mensagens : 150
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Bom tuto!!
Queria saber uma coisa: Tem como aumantar um tipo de iten ao invés de aumentar mais um status?? (Se tiver como eu faço?)
- Ex: Quando vou criar um iten novo, as opções que aparecem sao de Arma, Armadura, Escudo, Elmo, (Os potions que eu esqueci), Magia e Pet. Eu queria adicionar Pants (Calça) nas opções.
E também quero saber uma coisa (É coisa simples): Para que serve o quadrado que fica debaixo da armadura nos equips?
Cara Eu Naum Entendi Bufunfa De Nada Doque Vc Falo "tem certesa que posto no lugar certo?"
Cris~- Membro Veterano
- Mensagens : 1574
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
isso esta sendo topc off ... crie essa pergunta em pedidos ^^, quando alguem ler ajudara vc e tente falar mais corretamente para todos intender...
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Ok!
Ja vou criar o tópico...
Ja vou criar o tópico...
Flips03- Membro
- Mensagens : 150
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Bom amigos aqui não apareceu nada de ADDPL em lugar algum , continua igual,e eu fiz tudo certinho ! o.o
Obrigado!
Obrigado!
Última edição por snool em Qua 07 Jul 2010, 14:25, editado 2 vez(es)
snool- Membro Sênior
- Mensagens : 351
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
clica com o botao direito do mouse em cima da frmMirage e clica View Code...
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Olha não tem nada:https://2img.net/r/ihimizer/i/akir.jpg/
snool- Membro Sênior
- Mensagens : 351
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Você tem que abrir a frmMirage pelo visual basic 6
Lendário- Administrador Lendário
- Mensagens : 1958
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Sim,eu fiz tudo certo,coloquei todos codigos falados nos lugares certos mais não modificou coisa alguma.
snool- Membro Sênior
- Mensagens : 351
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
adiciono os codigos Tudo,As Label Na PicStat,e Compilo ? Pq Isso Funciono Aki Certo '-'
Cris~- Membro Veterano
- Mensagens : 1574
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
MANO EU QUERIA PARA FICAR SO PODER DE LUTAR E QUANDO ADC PODER DE LUTAR ADC EM TUDO FORÇA DEFESA AGILIDADE E ETC
DrayonDuarte- Membro
- Mensagens : 243
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
boa
eles arrumam de tudo pra ter crédito...
youh- Membro
- Mensagens : 148
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Minha pasta client nao tem frm '-'
Luiz- Membro
- Mensagens : 207
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
cara eu fiz certo e deu certo mas...quando o player sobe de nivel,o poder d eluta dele não sobe,fica 'poder de luta:12' igual tava antes...
e o STR dele DEF etc nao sobe também...help ?
e o STR dele DEF etc nao sobe também...help ?
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
vc tenque adicionar no + ^^
Cris~- Membro Veterano
- Mensagens : 1574
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Acontece o seguinte, quando eu aperto rapido no (+) para add os pontos no pdl ele da o erros subscript of range axo q eh assim q se escreve, e gostaria de saber se tem como arrumar please!!!
Vponce_Vinipfg- Novato
- Mensagens : 13
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Quando eu vou copilar o Client Side , ele da Copile Erro na ModGameLogin e seleciona um codigo
!
Oque eu faço ?
Tbm Na ModClientTcp
Com outros codigos .
Enfim em todos codigos que possuem Pdl
- Código:
.AddPdl
!
Oque eu faço ?
Tbm Na ModClientTcp
Com outros codigos .
Enfim em todos codigos que possuem Pdl
Última edição por snool em Sáb 11 Set 2010, 15:52, editado 1 vez(es)
snool- Membro Sênior
- Mensagens : 351
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
lol man vc ta fazendo errado ¬¬'... esse sistema de pdl eu uso no meu jogo '-'
Cris~- Membro Veterano
- Mensagens : 1574
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
Ué ?
Por mim eu fiz como vc ensinou .-.
Depois que eu fiz o tuto e apaguei umas partes que estavam atrapalhando a copilação de outras coisas ta dando :
Por mim eu fiz como vc ensinou .-.
Depois que eu fiz o tuto e apaguei umas partes que estavam atrapalhando a copilação de outras coisas ta dando :
- Código:
Subscript Error 9 .
Última edição por snool em Sáb 11 Set 2010, 16:35, editado 2 vez(es)
snool- Membro Sênior
- Mensagens : 351
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
AAAAA me ajuda agora meu jogo não funciona mais !!
Última edição por snool em Sáb 11 Set 2010, 16:57, editado 1 vez(es)
snool- Membro Sênior
- Mensagens : 351
Re: [ALL]Poder De Luta(Quer Adicionar Outro Status)
snool punido por doble post
Lendário- Administrador Lendário
- Mensagens : 1958
Página 1 de 2 • 1, 2
Tópicos semelhantes
» erro ao adicionar poder de luta
» [ALL]Comando para adicionar poder de luta
» Tem como fazer um status de Poder de Luta?
» Poder De Luta
» Poder de luta
» [ALL]Comando para adicionar poder de luta
» Tem como fazer um status de Poder de Luta?
» Poder De Luta
» Poder de luta
MMORPG Brasil :: OPEN SOURCE ENGINES :: Outras Engines :: Elysium :: Tutoriais
Página 1 de 2
Permissões neste sub-fórum
Não podes responder a tópicos
Dom 08 Abr 2018, 18:40 por JorgeZinhoo002
» Ojkjeeeee
Seg 10 Out 2016, 23:19 por Frozen
» Naruto Great Ninja Batle
Dom 09 Out 2016, 14:29 por GuiinhoLP
» Recrutamento de um Designer para jogo de CDZ.
Sex 23 Set 2016, 18:37 por newbie123
» Serviços de suporte maker( Programação , Design , PixelArt ) E Vendas de Jogos
Qui 22 Set 2016, 20:11 por Eduardo
» Serviços de suporte maker( Programação , Design , PixelArt ) E Vendas de Jogos
Qui 22 Set 2016, 20:11 por Eduardo
» Serviços de suporte maker( Programação , Design , PixelArt ) E Vendas de Jogos
Qui 22 Set 2016, 20:09 por Eduardo
» Projeto Dbz
Qua 31 Ago 2016, 23:46 por 157
» Avaliação - Sprites Naruto
Qua 31 Ago 2016, 17:09 por 157
» [Sprites] DBZ (Plix)
Qua 31 Ago 2016, 14:13 por 157
» Super Pack - Bleach V.2
Qua 31 Ago 2016, 13:02 por 157
» [PEDIDO][PROJETO][RECRUTAMENTO] DYNISTYGAMES
Ter 30 Ago 2016, 10:04 por 157
» [PEDIDO][PROJETO][RECRUTAMENTO] DYNISTYGAMES
Ter 30 Ago 2016, 10:03 por 157
» [PEDIDO][PROJETO][RECRUTAMENTO] DYNISTYGAMES
Ter 30 Ago 2016, 10:02 por 157
» [Pedido] Contador de resets na FrmMain
Sáb 13 Ago 2016, 17:45 por killers97
» [Recrutamento]
Qua 10 Ago 2016, 23:09 por Monsters
» Ajuda erro no Cliente e Servidor do EEB 2.6!
Qua 20 Jul 2016, 19:53 por Binholx
» Como criar tilesets para Eclipse Origins 3.0 (POKÉMON)
Qua 29 Jun 2016, 19:46 por Sir Aaron
» Recursos Pokemons
Qua 29 Jun 2016, 19:34 por Sir Aaron
» erro frm flash
Qua 25 maio 2016, 13:51 por vava123
» Pedido - Pack de star wars
Qui 19 maio 2016, 05:06 por edsonpet
» [Ajuda] Sobre como por o servidor on por ip fixo
Ter 17 maio 2016, 16:14 por vava123
» Illusion Dimension - O Misterio do ID: BETA TESTE ONLINE
Sex 06 maio 2016, 20:02 por LksFlorencio
» [NSME] Naruto Shinobi Maker Engine
Qua 23 Mar 2016, 15:11 por luana1457
» Script /base,/casa Igual DBZ Forces
Dom 21 Fev 2016, 07:34 por JorgeZinhoo002
» [Pedido]Colar Tsunade item sprite eclipse origin
Qui 21 Jan 2016, 07:38 por lawllietbr
» [Pedido] Elysium
Sáb 19 Dez 2015, 11:31 por luana1457
» Naruto - Recruta
Ter 15 Dez 2015, 18:40 por Uchiha ~
» [Avaliação] - Kirito from Sword Art Online; Red and Pikachu from Pokemon.
Qua 25 Nov 2015, 13:43 por Thanakii
» [Avaliação] - Kenpachi Zaraki from Bleach; Libra Shiryu From Saint Seiya.
Qua 25 Nov 2015, 12:55 por Thanakii
» Demonstração de Sprites (Á VENDA!)
Qua 25 Nov 2015, 12:40 por Thanakii
» [Sistema de Reset]Para Eclipse .
Ter 24 Nov 2015, 16:51 por VithorUchi
» Cada Guild Nascer em Certo Mapa
Qui 12 Nov 2015, 06:13 por fabiofeijó_HIT
» Dragon Ball z Fusion A Grande Volta
Qui 29 Out 2015, 15:17 por fabiofeijó_HIT
» Ajuda com Ip fixo
Seg 26 Out 2015, 16:07 por GalaxyHells15
» Como Fazer um GUI no Eclipse Origins
Dom 18 Out 2015, 22:10 por Jeanleee
» Shisui Susanoo
Dom 18 Out 2015, 20:23 por Jeanleee
» Fantasy Art Online
Dom 18 Out 2015, 16:41 por daviih123
» Ajuda !!
Seg 05 Out 2015, 12:13 por andersonzika
» como passar o usuário e senha para o MainMenu?
Seg 28 Set 2015, 22:03 por Bëzerk
» Ru time ero 13 Type mismatch
Seg 28 Set 2015, 09:08 por andredarle
» Jarvis 1.3 Download
Qua 23 Set 2015, 18:42 por soares125
» [Avaliação/Disponibilização]Árvore 64x64
Qua 23 Set 2015, 15:15 por Over~
» Mlk's Zikas Signatures
Ter 22 Set 2015, 21:15 por Aikawa Reborn'
» Pedido de Sistemas
Dom 20 Set 2015, 18:05 por cleyton_05
» [AjudaEEB]Gerador de EXP
Qua 16 Set 2015, 14:04 por Over~
» [Avaliar] Base, Humano e Goblin.
Seg 14 Set 2015, 22:51 por .iBlaz3.
» Fabrica do Tio Cronos!
Dom 13 Set 2015, 21:31 por [ADM]Cronos
» [PixelArt] Minion - Meu malvado favorito
Dom 13 Set 2015, 12:51 por [ADM]Cronos
» [Avaliar] Goku Dragon Ball Z
Qua 05 Ago 2015, 21:36 por Setrux