Add pdl Depois de full ajuda aki fast
+3
60
BabyFusion
zedendagua
7 participantes
MMORPG Brasil :: OPEN SOURCE ENGINES :: Outras Engines :: Elysium :: Suporte e Pedidos :: Assuntos resolvidos
Página 1 de 1
Add pdl Depois de full ajuda aki fast
olha eu editei o comando de add força depois de full pra add pdl depois de full compativel com o tutorial do Cris alguem poderia falar oq tem de errado nece comando q eu fiz? vlw e q n ta dando pra add
- Spoiler:
- 'ADD PONTOS DEPOIS DE FULL!
'COMANDO DE ADICIONAR EM PDL!
If LCase(Trim(TextSay)) = "/addpdl" Then 'coloque o comando q vc quer...
If GetPlayerpdl(index) < 1000 Then 'aqui coloque o maximo de PDL do seu jogo...
Call BattleMsg(index, "Você Precisa Ser Full em Poder De Luta para usar Esse comando!", 12, 0) 'mensagen q fala se ele n ter os pontos full...
Else
If GetPlayerPOINTS(index) > 500000 Then 'pontos q vai usar ...
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 500000) 'pega os 50 e taka em pdl = 1...
Call SetPlayerstr(index, GetPlayerstr(index) + 500000)
Call SetPlayerdef(index, GetPlayerdef(index) + 500000)
Call SetPlayerspeed(index, GetPlayerspeed(index) + 500000)
Call SetPlayermagi(index, GetPlayermagi(index) + 500000)
Call SendStats(Index)
Call MsgBox(index, "Você adicionou 500000 ponto em pdl!", 15, 0) 'mensagen de quando add...
Exit Sub
End If
End If
End if
zedendagua- Membro Junior
- Mensagens : 52
Re: Add pdl Depois de full ajuda aki fast
Voce tem certeza que mudou apenas o comando?
Me manda o tuto que você seguiu?
Você colocou no lugar certo?
Eu não intendi muito bem sua dúvida
Me manda o tuto que você seguiu?
Você colocou no lugar certo?
Eu não intendi muito bem sua dúvida
BabyFusion- Membro Sênior
- Mensagens : 339
Re: Add pdl Depois de full ajuda aki fast
e q eu quero um comando pra add poder de luta compativel com o sistema de pdl do Cris~
http://www.mmorpgbr.com/t1778-allpoder-de-lutaquer-adicionar-outro-status
http://www.mmorpgbr.com/t1778-allpoder-de-lutaquer-adicionar-outro-status
zedendagua- Membro Junior
- Mensagens : 52
Re: Add pdl Depois de full ajuda aki fast
use
- Código:
':Distribuição de pontos depois de FULL!
'COMANDOS DO STATUS "FORÇA"
If LCase(Trim(TextSay)) = "/addpdl" Then
If GetPlayerstr(index) < 1000000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em PDL! para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 150 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 150)
Call SetPlayerstr(index, GetPlayerstr(index) + 1)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 1 ponto em PDL!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/addpdl1" Then
If GetPlayerstr(index) < 1000000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em PDL! para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 1500 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 1500)
Call SetPlayerstr(index, GetPlayerstr(index) + 10)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 10 pontos em PDL!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/addpdl2" Then
If GetPlayerstr(index) < 1000000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em PDL! para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 15000 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 15000)
Call SetPlayerstr(index, GetPlayerstr(index) + 100)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 100 pontos em PDL!", 15, 0)
else
Call BattleMsg(index, "Você Precisa de 15.000 de pontos para usar esse Comando!!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/addpdl3" Then
If GetPlayerstr(index) < 1000000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em PDL para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 150000 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 150000)
Call SetPlayerstr(index, GetPlayerstr(index) + 1000)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 1000 pontos em PDL!", 15, 0)
else
Call BattleMsg(index, "Você Precisa de 150.000 de pontos para usar esse Comando!!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/addpdl4" Then
If GetPlayerstr(index) < 1000000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em PDL! para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 1000000 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 1000000)
Call SetPlayerstr(index, GetPlayerstr(index) + 10000)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 10000 pontos em PDL!", 15, 0)
else
Call BattleMsg(index, "Você Precisa de 1000000 de pontos para usar esse Comando!!", 15, 0)
Exit Sub
End If
End If
End if
'COMANDOS DO STATUS "DEFESA"
If LCase(Trim(TextSay)) = "/adddef1" Then
If GetPlayerDEF(index) < 100000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em Defesa para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 150 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 150)
Call SetPlayerDEF(index, GetPlayerDEF(index) + 1)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 1 ponto em Defesa!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/adddef10" Then
If GetPlayerDEF(index) < 100000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em Defesa para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 1500 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 1500)
Call SetPlayerDEF(index, GetPlayerDEF(index) + 10)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 10 pontos em Defesa!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/adddef100" Then
If GetPlayerDEF(index) < 100000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em Defesa para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 15000 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 15000)
Call SetPlayerDEF(index, GetPlayerDEF(index) + 100)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 100 pontos em Defesa!", 15, 0)
Exit Sub
End If
End If
End if
'COMANDOS DO STATUS "VELOCIDADE"
If LCase(Trim(TextSay)) = "/addvel1" Then
If GetPlayerSPEED(index) < 100000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em Velocidade para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 150 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 150)
Call SetPlayerSPEED(index, GetPlayerSPEED(index) + 1)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 1 ponto em Velocidade!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/addvel10" Then
If GetPlayerSPEED(index) < 100000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em Velocidade para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 1500 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 1500)
Call SetPlayerSPEED(index, GetPlayerSPEED(index) + 10)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 10 pontos em Velocidade!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/addvel100" Then
If GetPlayerSPEED(index) < 100000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em Velocidade para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 15000 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 15000)
Call SetPlayerSPEED(index, GetPlayerSPEED(index) + 100)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 100 pontos em Velocidade!", 15, 0)
Exit Sub
End If
End If
End if
'COMANDOS DO STATUS "Magia"
If LCase(Trim(TextSay)) = "/addmag1" Then
If GetPlayerMAGI(index) < 100000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em Magia para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 1500 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 150)
Call SetPlayerMAGI(index, GetPlayerMAGI(index) + 1)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 10 pontos em Magia!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/addmag10" Then
If GetPlayerMAGI(index) < 100000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em Magia para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 1500 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 1500)
Call SetPlayerMAGI(index, GetPlayerMAGI(index) + 10)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 10 pontos em Magia!", 15, 0)
Exit Sub
End If
End If
End if
If LCase(Trim(TextSay)) = "/addmag100" Then
If GetPlayerMAGI(index) < 100000 Then
Call BattleMsg(index, "Você Precisa Ser Full Em Magia para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 15000 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 15000)
Call SetPlayerMAGI(index, GetPlayerMAGI(index) + 100)
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 100 pontos em Magia!", 15, 0)
Exit Sub
End If
End If
End if
60- Membro
- Mensagens : 102
Re: Add pdl Depois de full ajuda aki fast
Em casa eu testo, mas parece que é isso msm, +1 de cred man o/
RichieSambora- Membro
- Mensagens : 141
Re: Add pdl Depois de full ajuda aki fast
tipo eu qro um comando q add os pontos de atk e defesa em 1 so comando tipo /addpl ai add em atk e em defesa
zedendagua- Membro Junior
- Mensagens : 52
Re: Add pdl Depois de full ajuda aki fast
Utilize o código:
Atenciosamente,
Pablo
- Código:
'COMANDO DE ADICIONAR EM PDL!
If LCase(Trim(TextSay)) = "/addpdl" Then
Call BattleMsg(index, "Você Precisa Ser Full em Poder De Luta para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 500000 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 500000)
Call SetPlayerstr(index, GetPlayerstr(index) + 500000)
Call SetPlayerdef(index, GetPlayerdef(index) + 500000)
Call SendStats(Index)
Call MsgBox(index, "Você adicionou 500000 ponto em pdl!", 15, 0)
Exit Sub
End If
End if
Atenciosamente,
Pablo
Pablo- Moderador Global
- Mensagens : 1371
Re: Add pdl Depois de full ajuda aki fast
acho que nao vai da nao Pablo porque tipo, o servidor vai lêr até ums 1000 pontos adicionados, quebrano ums 30.000 se ele arrumo do geitinho saushaus, mais é por script o-ó, intão seila kkk' --', só que do geito do Pablo ta certinho!, só não tenho certesa se vai funfar por causa dos 500000 adicionando
Re: Add pdl Depois de full ajuda aki fast
Bom vai funcionar sim só que ira ter que haver grande numero de ponto que no caso poderá haver bug serio se não arrumar algumas coisas.
Atenciosamente,
Pablo
Atenciosamente,
Pablo
Pablo- Moderador Global
- Mensagens : 1371
Re: Add pdl Depois de full ajuda aki fast
ae aki n deu quando eu digito /addpl da esse erro ai eu dei uma edita no comando... os pontos add mais da esse erro ai quando eu entro denovo os pontos tao add sabe informar pq? da o erro
- Spoiler:
- 'COMANDO DE ADICIONAR EM PDL!
If LCase(Trim(TextSay)) = "/addpdl" Then
Call BattleMsg(index, "Você Precisa Ser Full em Poder De Luta para usar Esse comando!", 12, 0)
Else
If GetPlayerPOINTS(index) > 500000 Then
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 500000)
Call SetPlayerstr(index, GetPlayerstr(index) + 500000)
Call SetPlayerdef(index, GetPlayerdef(index) + 500000)
Call SetPlayerSPEED(index, GetPlayerSPEED(index) + 500000)
Call SetPlayerMAGI(index, GetPlayerMAGI(index) + 500000)
Call SendStats(Index)
Call MsgBox(index, "Você adicionou 500000 ponto em pdl!", 15, 0)
Exit Sub
End If
End if
zedendagua- Membro Junior
- Mensagens : 52
Re: Add pdl Depois de full ajuda aki fast
Amigo zedendagua tenta faser com menos ponto para ver se funciona perfeitamente '-', coloca para adicionar 1000 pontos, e retirar 10000 pontos ;D
Re: Add pdl Depois de full ajuda aki fast
fiz como vc falou guilherme o erro continuo '-'
zedendagua- Membro Junior
- Mensagens : 52
Re: Add pdl Depois de full ajuda aki fast
você tem Visual Basic aii???, se tiver, execute o game por ele, ai vai cair na linha do erro
Re: Add pdl Depois de full ajuda aki fast
nao ja tem o sistema de pdl do Cris~
zedendagua- Membro Junior
- Mensagens : 52
Re: Add pdl Depois de full ajuda aki fast
mais foi você que implantou ele na engine certo?
e o sistema de poder de luta que você quer é estilo do forces certo?
e o sistema de poder de luta que você quer é estilo do forces certo?
Re: Add pdl Depois de full ajuda aki fast
sim e do estilo do forces '-'
zedendagua- Membro Junior
- Mensagens : 52
Re: Add pdl Depois de full ajuda aki fast
fica esperto no MP '-', vou te manda um sistema melhorado '-'
Re: Add pdl Depois de full ajuda aki fast
consegui vlw ai pode fexar '-'
zedendagua- Membro Junior
- Mensagens : 52
Re: Add pdl Depois de full ajuda aki fast
zedendagua escreveu:consegui vlw ai pode fexar '-'
Tópico Fechado e movido para 'Assuntos resolvidos'.
RenanR- Membro Veterano
- Mensagens : 1048
Tópicos semelhantes
» [ADD]Pontos depois de full
» Adicionar pontos depois de Full, por CommandButton
» [ALL]Adicionar pontos depois que tiver full (main.txt)
» COMO ADICIONAR DEPOIS DE FULL( TIPO VICIADOS) POR COMANDO BUTTON
» Ajuda fast ?
» Adicionar pontos depois de Full, por CommandButton
» [ALL]Adicionar pontos depois que tiver full (main.txt)
» COMO ADICIONAR DEPOIS DE FULL( TIPO VICIADOS) POR COMANDO BUTTON
» Ajuda fast ?
MMORPG Brasil :: OPEN SOURCE ENGINES :: Outras Engines :: Elysium :: Suporte e Pedidos :: Assuntos resolvidos
Página 1 de 1
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