Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
+2
montevechi
Kakarotto 1
6 participantes
Página 1 de 1
Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
Eu Quero Um Pedido Queria Saber Como ADD pontos depois de full exemplo:
eu adiciono 1 e gasto 1000 pontos
eu adiciono 1000 e gasto 10000 pontos assim vai como fasso iso
SOMENTE FORÇA E DEFESA^^
eu adiciono 1 e gasto 1000 pontos
eu adiciono 1000 e gasto 10000 pontos assim vai como fasso iso
SOMENTE FORÇA E DEFESA^^
Kakarotto 1Banido- Mensagens : 139
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
bom tambem quero isso so que com forca def int e agi vlw !
--------edit-------
Pensei q era pra eeb , mas ai não é ?
--------edit-------
Pensei q era pra eeb , mas ai não é ?
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
e sim pocha ninguem ai pra ajudar ;'(
Kakarotto 1Banido- Mensagens : 139
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
então ta na rea errada ta na de e.o !
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
sim e que eu nao vi na hora XD
Kakarotto 1Banido- Mensagens : 139
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
Área errada meu amigo, cuidado onde posta as coisas, amanhã quando eu tiver tempo faço um tuto bem legal para você.
Tópico Enviado para área Suporte e Ajuda / Elysium Engine
Atenciosamente,
Pablo
Tópico Enviado para área Suporte e Ajuda / Elysium Engine
Atenciosamente,
Pablo
Pablo- Moderador Global
- Mensagens : 1371
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
- Código:
'COMANDOS DO STATUS "FORÇA"
If LCase(Trim(TextSay)) = "/addfor" Then ' Texto que utilizara para o comando
If GetPlayerstr(index) < 1000000 Then ' Aqui é assim , se o player tiver menos que esse numero de força aew , aparecera a mensagem abaixo
Call BattleMsg(index, "Você Precisa Ser [b]Full[/b] Em STR! para usar Esse comando!", 12, 0) ' Mensagem caso o Player nao tenha a força necessaria
Else
If GetPlayerPOINTS(index) > 150 Then ' Pontos Necessarios
Call SetPlayerPOINTS(index, GetPlayerPOINTS(index) - 150) ' coloque em "150" os pontos necessarios tamben
Call SetPlayerstr(index, GetPlayerstr(index) + 1) ' Quanto o Player ganha em for
Call SendStats(Index)
Call BattleMsg(index, "Você adicionou 1 ponto em STR!", 15, 0) ' Mensagem ao adicionar
Exit Sub
End If
End If
End if
' O Resto é a mesma coisa , só que para mais pontos
If LCase(Trim(TextSay)) = "/addpdl1" Then
If GetPlayerstr(index) < 1000000 Then
Call BattleMsg(index, "Você Precisa Ser [b]Full[/b] 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 [b]pontos[/b] 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 [b]Full[/b] 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 [b]pontos[/b] em PDL!", 15, 0)
else
Call BattleMsg(index, "Você Precisa [b]de[/b] 15.000 [b]de[/b] [b]pontos[/b] 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 [b]Full[/b] 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 [b]pontos[/b] em PDL!", 15, 0)
else
Call BattleMsg(index, "Você Precisa [b]de[/b] 150.000 [b]de[/b] [b]pontos[/b] 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 [b]Full[/b] 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 [b]pontos[/b] em PDL!", 15, 0)
else
Call BattleMsg(index, "Você Precisa [b]de[/b] 1000000 [b]de[/b] [b]pontos[/b] 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 [b]Full[/b] 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 [b]Full[/b] 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 [b]pontos[/b] 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 [b]Full[/b] 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 [b]pontos[/b] 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 [b]Full[/b] 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 [b]Full[/b] 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 [b]pontos[/b] 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 [b]Full[/b] 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 [b]pontos[/b] 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 [b]Full[/b] 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 [b]pontos[/b] 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 [b]Full[/b] 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 [b]pontos[/b] 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 [b]Full[/b] 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 [b]pontos[/b] em Magia!", 15, 0)
Exit Sub
End If
End If
End if
Obs²: Caso queira somente For e Def , use somente For e Def
Obs³: Coloque abaixo do code:
- Código:
Sub Commands(index)
On Error Resume Next
Dim Portal
Dim mapnum
Dim x
Dim y
Dim i
Dim TextSay
Dim n
Dim m
Dim C
m = GetVar("Dados.ini", "MAX", "MAX_MAPS")
TextSay = GetVar("Scripts\Comandos.ini", "TEMP", "Text" & index)
Acho que vai ser mais ou menos isso '
Se estiver errado pesso desculpas e que alguém me corrija por favor ;D
Ajudei ? Deu Certo ? Dê um +CreD não cai a mão ;D
Gяiммjσw'- Membro Junior
- Mensagens : 70
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
TiPo isso ai eu add em scripts Ou no VB ????
thiagobranco- Novato
- Mensagens : 16
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
Script ¬¬' ninguem ajuda a gente
Kakarotto 1Banido- Mensagens : 139
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
kakarotto 1 passa o link do tutorial que vc seguiu pra gente ver oque podemos fazer
OIOI- Membro
- Mensagens : 100
Re: Ajuda ADD Pontos Depois de Fuul Tabela eu segui o tutorial [ALL]Tabela de Acc Pontos
http://www.mmorpgbr.com/t3378-alltabela-de-acc-pontos
olha como eu queria
https://2img.net/r/ihimizer/img849/9959/xfd.jpg
olha como eu queria
https://2img.net/r/ihimizer/img849/9959/xfd.jpg
Kakarotto 1Banido- Mensagens : 139
Tópicos semelhantes
» [Help]Alguem Mim Ajuda Na Tabela de Adc Pontos
» Adicionar pontos depois de Full, por CommandButton
» [ALL]Tabela De Acc Pontos
» [Dúvida] Tabela de Pontos
» [ALL]Tabela De Pontos , Pela Tecla Esc
» Adicionar pontos depois de Full, por CommandButton
» [ALL]Tabela De Acc Pontos
» [Dúvida] Tabela de Pontos
» [ALL]Tabela De Pontos , Pela Tecla Esc
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