[ALL]Trans por comando(Editada)
+2
Ricardo
UroshiSan
6 participantes
MMORPG Brasil :: OPEN SOURCE ENGINES :: Outras Engines :: Elysium :: Tutoriais
Página 1 de 1
[ALL]Trans por comando(Editada)
Ai galera,vim trazer pra vcs,o tutorial de trans por comando,editada.
Explicação do Sistema Editado:Agora você pode por ele pra multiplicar a sua força,def,agi,e etc.
Bom começamos:
Abra a pasta server,abra a pasta scripts,e abra o Main.txt (Principal)
la de um CTRL+F e pesquise por
Embaixo disso copie e cole o texto abaixo
Vamos Aprender a editar esse codigo ??
Caso queira que alente em 2x, e so mudar os mais pra * exemplo,com PDL:
Com,for,def,agi e mag.
[b]Creditos:
Lendario (Pelo Tutorial)
Ricardo XD (Por Adaptar ou Editar)
A mim (Por Postar)
Explicação do Sistema Editado:Agora você pode por ele pra multiplicar a sua força,def,agi,e etc.
Bom começamos:
Abra a pasta server,abra a pasta scripts,e abra o Main.txt (Principal)
la de um CTRL+F e pesquise por
- 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("Data.ini", "MAX", "MAX_MAPS")
TextSay = GetVar("Scripts\Command.ini", "TEMP", "Text" & index)
Embaixo disso copie e cole o texto abaixo
- Código:
If Lcase(Trim(TextSay)) = "/ssj" Then
If GetPlayerClass (index) = 1 Then
If GetPlayerLevel(index) => 50 Then
If GetPlayerAcess(index) => 0 Then
If GetPlayerSprite(index) = 1 Then
Call SetPlayerSprite(index, 2)
Call SetPlayerHP(Index, GetPlayerHP(Index) + 50)
Call SetPlayerMP(Index, GetPlayerMP(Index) + 50)
Call SetPlayerSTR(Index, GetPlayerSTR(Index) + 50)
Call SetPlayerDEF(Index, GetPlayerDEF(Index) + 50)
Call SetPlayerSPEED(Index, GetPlayerSPEED(Index) + 50)
Call SetPlayerMAGI(Index, GetPlayerMAGI(Index) + 50)
Call PlaySound(Index, "ssjtransform.wav")
Call PlayerMsg(index, "Você é um Super Saiyajin!", 4)
Call PlayerWarp (index, GetPlayerMap(index), GetPlayerX(index), GetPlayerY(index),False)
Exit Sub
End If
End If
End If
End If
Vamos Aprender a editar esse codigo ??
- Código:
If Lcase(Trim(TextSay)) = "/ssj" Then - onde tem o /ssj,vc poe o comando que tem que digitar para transformar
If GetPlayerClass (index) = 1 Then - onde tem o "1",ai e o numero da classe que precisa para transformar
If GetPlayerLevel(index) => 50 Then - onde tem "50" e o level que precisa para transformar
If GetPlayerAcess(index) => "0" Then e o numero de acesso que precisa para transformar
If GetPlayerSprite(index) = 1 Then - onde tem "1" e o numero do SPRITE que precisa estar para transformar
Call SetPlayerSprite(index, 2) - onde tem o "2",é para botar o numero do sprite que vai ficar quando transformar
Call SetPlayerHP(Index, GetPlayerHP(Index) + 50) - onde tem +50,é pra por os pontos que vai ganhar no HP quando transformar
Call SetPlayerMP(Index, GetPlayerMP(Index) + 50) - onde tem +50,é pra por os pontos que vai ganhar no MP quando transformar
Call SetPlayerSTR(Index, GetPlayerSTR(Index) + 50) - onde tem +50,é pra por os pontos que vai ganhar na força quando transformar
Call SetPlayerDEF(Index, GetPlayerDEF(Index) + 50) - onde tem +50,é pra por os pontos que vai ganhar na defesa quando transformar
Call SetPlayerSPEED(Index, GetPlayerSPEED(Index) + 50) - onde tem +50,é pra por os pontos que vai ganhar na agilidade quando transformar
Call SetPlayerMAGI(Index, GetPlayerMAGI(Index) + 50) - onde tem +50,é pra por os pontos que vai ganhar na magia quando transformar
Call PlaySound(Index, "ssjtransform.wav") - onde tem"ssjtransform.wav" é o nome do som que vai tocar quando se transformar
Call PlayerMsg(index, "Você é um Super Saiyajin!", 4) - onde tem "Voce é um Super Saiyajin" você digita o texto que vai aparecer quando se transformar
Call PlayerWarp (index, GetPlayerMap(index), GetPlayerX(index), GetPlayerY(index),False)
Exit Sub
End If
End If
End If
End If
Caso queira que alente em 2x, e so mudar os mais pra * exemplo,com PDL:
- Código:
If Lcase(Trim(TextSay)) = "/ssj" Then
If GetPlayerClass (index) = 1 Then
If GetPlayerLevel(index) => 50 Then
If GetPlayerAcess(index) => 0 Then
If GetPlayerSprite(index) = 1 Then
Call SetPlayerSprite(index, 2)
Call SetPlayerHP(Index, GetPlayerHP(Index) * 2)
Call SetPlayerMP(Index, GetPlayerMP(Index) * 2)
Call SetPlayerSTR(Index, GetPlayerSTR(Index) * 2)
Call PlaySound(Index, "ssjtransform.wav")
Call PlayerMsg(index, "Você é um Super Saiyajin!", 4)
Call PlayerWarp (index, GetPlayerMap(index), GetPlayerX(index), GetPlayerY(index),False)
Exit Sub
End If
End If
End If
End If
Com,for,def,agi e mag.
- Código:
If Lcase(Trim(TextSay)) = "/ssj" Then
If GetPlayerClass (index) = 1 Then
If GetPlayerLevel(index) => 50 Then
If GetPlayerAcess(index) => 0 Then
If GetPlayerSprite(index) = 1 Then
Call SetPlayerSprite(index, 2)
Call SetPlayerHP(Index, GetPlayerHP(Index) * 2)
Call SetPlayerMP(Index, GetPlayerMP(Index) * 2)
Call SetPlayerSTR(Index, GetPlayerSTR(Index) * 2)
Call SetPlayerDEF(Index, GetPlayerDEF(Index) * 2)
Call SetPlayerSPEED(Index, GetPlayerSPEED(Index) * 2)
Call SetPlayerMAGI(Index, GetPlayerMAGI(Index) * 2)
Call PlaySound(Index, "ssjtransform.wav")
Call PlayerMsg(index, "Você é um Super Saiyajin!", 4)
Call PlayerWarp (index, GetPlayerMap(index), GetPlayerX(index), GetPlayerY(index),False)
Exit Sub
End If
End If
End If
End If
[b]Creditos:
Lendario (Pelo Tutorial)
Ricardo XD (Por Adaptar ou Editar)
A mim (Por Postar)
Última edição por UroshiSan em Qui 21 Abr 2011, 13:22, editado 1 vez(es)
UroshiSan- Novato
- Mensagens : 27
Re: [ALL]Trans por comando(Editada)
Creditos a vc e pra min devia ser
eu que fiz o tuto do *
eu que fiz o tuto do *
nicholas- Membro Veterano
- Mensagens : 1144
Re: [ALL]Trans por comando(Editada)
ditos nada seu, eu inventei o trans pro foto multiplicandoo status e aquele seu tb fui eu UU
Ricardo- Mensagens : 1044
Re: [ALL]Trans por comando(Editada)
Ricardo XD escreveu:ditos nada seu, eu inventei o trans pro foto multiplicandoo status e aquele seu tb fui eu UU
eu disse de postar eu postei priemrio e te puis credito ele viu meu tuto e pego e nao deu credito
nicholas- Membro Veterano
- Mensagens : 1144
Re: [ALL]Trans por comando(Editada)
Cara ele n fez anda do seu tuto, eu que fiz a ediçao do lendario,
Ricardo- Mensagens : 1044
Re: [ALL]Trans por comando(Editada)
Caso queira que alente em 2x, e so mudar os mais pra * exemplo,com PDL:
CÓDIGO:
If Lcase(Trim(TextSay)) = "/ssj" Then
If GetPlayerClass (index) = 1 Then
If GetPlayerLevel(index) => 50 Then
If GetPlayerAcess(index) => 0 Then
If GetPlayerSprite(index) = 1 Then
Call SetPlayerSprite(index, 2)
Call SetPlayerHP(Index, GetPlayerHP(Index) * 2)
Call SetPlayerMP(Index, GetPlayerMP(Index) * 2)
Call SetPlayerSTR(Index, GetPlayerSTR(Index) * 2)
Call PlaySound(Index, "ssjtransform.wav")
Call PlayerMsg(index, "Você é um Super Saiyajin!", 4)
Call PlayerWarp (index, GetPlayerMap(index), GetPlayerX(index), GetPlayerY(index),False)
Exit Sub
End If
End If
End If
End If
Com,for,def,agi e mag.
CÓDIGO:
If Lcase(Trim(TextSay)) = "/ssj" Then
If GetPlayerClass (index) = 1 Then
If GetPlayerLevel(index) => 50 Then
If GetPlayerAcess(index) => 0 Then
If GetPlayerSprite(index) = 1 Then
Call SetPlayerSprite(index, 2)
Call SetPlayerHP(Index, GetPlayerHP(Index) * 2)
Call SetPlayerMP(Index, GetPlayerMP(Index) * 2)
Call SetPlayerSTR(Index, GetPlayerSTR(Index) * 2)
Call SetPlayerDEF(Index, GetPlayerDEF(Index) * 2)
Call SetPlayerSPEED(Index, GetPlayerSPEED(Index) * 2)
Call SetPlayerMAGI(Index, GetPlayerMAGI(Index) * 2)
Call PlaySound(Index, "ssjtransform.wav")
Call PlayerMsg(index, "Você é um Super Saiyajin!", 4)
Call PlayerWarp (index, GetPlayerMap(index), GetPlayerX(index), GetPlayerY(index),False)
Exit Sub
End If
End If
End If
End If
Ele copio isso ele so edito o hp ...........
Enfin cehga de off topico
nicholas- Membro Veterano
- Mensagens : 1144
Re: [ALL]Trans por comando(Editada)
Cara fica queto que vc nao tem provas, e fui eu que fiz isso entao fica queto
Esqeuci de dar os cred, ai ta
+1 cred
Esqeuci de dar os cred, ai ta
+1 cred
Ricardo- Mensagens : 1044
Re: [ALL]Trans por comando(Editada)
Ricardo XD escreveu:Cara fica queto que vc nao tem provas, e fui eu que fiz isso entao fica queto
Esqeuci de dar os cred, ai ta
+1 cred
cara eu disse que fui eu que fiz? nao né e provras do que?
de vc ser chato?
nicholas- Membro Veterano
- Mensagens : 1144
Re: [ALL]Trans por comando(Editada)
n axei mt intereçante isso eu ja tinha feito no meu sv era só por:
no tutorial normal de trans
e tinha que ensinar destransformar dos 2 tutos tbm n?
vo da mais 1 cred pela colaboração . . .
- Código:
If GetPlayerAcess(index) => 0 Then
- Código:
Call SetPlayerSPEED(Index, GetPlayerSPEED(Index) + 50)
Call SetPlayerMAGI(Index, GetPlayerMAGI(Index) + 50)
no tutorial normal de trans
e tinha que ensinar destransformar dos 2 tutos tbm n?
vo da mais 1 cred pela colaboração . . .
Re: [ALL]Trans por comando(Editada)
não li tudo direito mais to lembrando de uma coisa que ja fiz em um server, se eu equipar um item daqueles que aparece um (+xx) do lado do seu stats, transformar, tirar o item, e destransformar, quando eu voltar a forma normal eu vou tar com mais pontos do que eu tava antes, correto?
isso é um problema grave '-'
isso é um problema grave '-'
Mystic- Membro Sênior
- Mensagens : 367
Re: [ALL]Trans por comando(Editada)
Nao, se vc colocar pra poder transformar normal, nao vai acontecer isso
Ricardo- Mensagens : 1044
Re: [ALL]Trans por comando(Editada)
gentteeeeeee eu coloko td isso mais naum da nada nem COMANDO INVALIDO que antes aparecia quando digitava /sidjfiçf naum aparece pq?
mmorpgelysium- Novato
- Mensagens : 25
Tópicos semelhantes
» [ALL]Comando /trans para ver as trans no jogo
» alguem tem uma engine ja editada
» trans e destrans ...
» [Avaliem]Minha Sign ~SrLoks [Editada]
» Alguem me disponibiliza uma engine editada para One piece?
» alguem tem uma engine ja editada
» trans e destrans ...
» [Avaliem]Minha Sign ~SrLoks [Editada]
» Alguem me disponibiliza uma engine editada para One piece?
MMORPG Brasil :: OPEN SOURCE ENGINES :: Outras Engines :: Elysium :: Tutoriais
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