[ALL]Comando Pvp
5 participantes
MMORPG Brasil :: OPEN SOURCE ENGINES :: Outras Engines :: Elysium :: Tutoriais
Página 1 de 1
[ALL]Comando Pvp
Bom, faz algum tempo que eu fiz isso, mas não sabia que existia ainda
Fuçando no meu antigo PC, achei ele em um projeto do DBB e como achei simples, vou disponibilizar...
Client~Side
Crie uma picture assim:
Renomeie a picture para "picPVPRequest" e a label que está escrito jogador para "lblPVPplayer". Agora dê duplo clique na label 'Aceitar', logo, estaremos no evento Click dela, aí coloque:
E a mesma coisa, mas na label 'Rejeitar':
Procure por:
Abaixo adicione:
Procure por:
Abaixo adicione:
Procure por:
Abaixo adicione:
Procure por:
Abaixo adicione:
Server~Side
Procure por:
Abaixo adicione:
Procure por:
Abaixo adicione:
E para finalizar, procure por:
Abaixo adicione:
É isso, nada de mais. Bom, quando alguém digitar:
Aí ambos os jogadores irão para um mapa determinado. Qualquer erro, basta avisar.
Até a próxima
Escrito por Lenon
Fuçando no meu antigo PC, achei ele em um projeto do DBB e como achei simples, vou disponibilizar...
Client~Side
Crie uma picture assim:
Renomeie a picture para "picPVPRequest" e a label que está escrito jogador para "lblPVPplayer". Agora dê duplo clique na label 'Aceitar', logo, estaremos no evento Click dela, aí coloque:
- Código:
picPVPRequest.Visible = False
Call SendAcceptPVP
E a mesma coisa, mas na label 'Rejeitar':
- Código:
picPVPRequest.Visible = False
Call SendDeclinePVP
Procure por:
- Código:
Private Sub picPlayerSpells_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Call MovePicture(frmMirage.picPlayerSpells, Button, Shift, x, y)
End Sub
Abaixo adicione:
- Código:
Private Sub picPVPRequest_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
SOffsetX = x
SOffsetY = y
Call picPVPRequest.ZOrder(O)
End Sub
Private Sub picPVPRequest_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Call MovePicture(frmMirage.picPVPRequest, Button, Shift, x, y)
End Sub
Procure por:
- Código:
' Leave party
If LCase$(Mid(MyText, 1, 6)) = "/sair" Then
Call SendLeaveParty
MyText = vbNullString
Exit Sub
End If
Abaixo adicione:
- Código:
' PVP request
If LCase(Mid(MyText, 1, 6)) = "/lutar" Then
If Len(MyText) > 7 Then
ChatText = Mid(MyText, 8, Len(MyText) - 7)
Call SendPVPRequest(ChatText)
Else
Call AddText("Use: /lutar <nome do jogador>", AlertColor)
End If
MyText = vbNullString
Exit Sub
End If
Procure por:
- Código:
Sub SendLeaveParty()
Dim Packet As String
Packet = "LEAVEPARTY" & END_CHAR
Call SendData(Packet)
End Sub
Abaixo adicione:
- Código:
Sub SendPVPRequest(ByVal Name As String)
Dim Packet As String
Packet = "PVP" & SEP_CHAR & Name & END_CHAR
Call SendData(Packet)
End Sub
Sub SendDeclinePVP()
Dim Packet As String
Packet = "DPVP" & END_CHAR
Call SendData(Packet)
End Sub
Sub SendAcceptPVP()
Dim Packet As String
Packet = "APVP" & END_CHAR
Call SendData(Packet)
End Sub
Procure por:
- Código:
' ::::::::::::::::::::::::::
' :: Trade request window ::
' ::::::::::::::::::::::::::
If Parse(0) = "tradewindow" Then
frmMirage.lblTradePlayer.Caption = GetPlayerName(Val(Parse(1)))
frmMirage.picTradeRequest.Visible = True
Exit Sub
End If
Abaixo adicione:
- Código:
' ::::::::::::::::::::::::
' :: PVP request window ::
' ::::::::::::::::::::::::
If Parse(0) = "pvpwindow" Then
frmMirage.lblPVPplayer.Caption = GetPlayerName(Val(Parse(1)))
frmMirage.picPVPRequest.Visible = True
Exit Sub
End If
Server~Side
Procure por:
- Código:
ChatPlayer As Long
Abaixo adicione:
- Código:
PVPPlayer As Long
Procure por:
- Código:
Case "dtrade"
N = Player(Index).TradePlayer
' Check if anyone trade with player
If N < 1 Then
Call PlayerMsg(Index, "Ninguém pediu para negociar com você.", Pink)
Exit Sub
End If
Call PlayerMsg(Index, "O pedido de negociação foi rejeitado.", Pink)
Call PlayerMsg(N, GetPlayerName(Index) & " rejeitou seu pedido de negociação.", Pink)
Player(Index).TradePlayer = 0
Player(Index).InTrade = 0
Player(N).TradePlayer = 0
Player(N).InTrade = 0
Exit Sub
Abaixo adicione:
- Código:
Case "pvp"
N = FindPlayer(Parse(1))
If N < 1 Then
Call PlayerMsg(Index, Parse(1) & " não está online.", White)
Exit Sub
End If
If N = Index Then
Exit Sub
End If
Call PlayerMsg(Index, "O pedido de luta foi enviado para " & GetPlayerName(N) & ".", Pink)
Call PlayerMsg(N, GetPlayerName(Index) & " quer lutar com você.", Pink)
Player(N).PVPPlayer = Index
Player(Index).PVPPlayer = N
Call PVPRequestWindow(N, Index)
Exit Sub
Case "apvp"
N = Player(Index).PVPPlayer
If N > 0 Then
Call PlayerWarp(N, 1, 10, 10) ' Mapa da "arena"
Call PlayerWarp(Index, 1, 11, 10) ' Mapa da "arena"
Call SendDataTo(N, "sound" & SEP_CHAR & "Teleporte" & END_CHAR)
Call SendDataTo(Index, "sound" & SEP_CHAR & "Teleporte" & END_CHAR)
Call GlobalMsg(GetPlayerName(Index) & " e " & GetPlayerName(N) & " irão lutar, na arena. Boa sorte!", Pink)
Else
Call PlayerMsg(Index, "Jogador não está mais online.", White)
Exit Sub
End If
Exit Sub
Case "dpvp"
N = Player(Index).PVPPlayer
If N > 0 Then
Call PlayerMsg(Index, "O pedido de luta foi rejeitado.", Pink)
Call PlayerMsg(N, GetPlayerName(Index) & " rejeitou seu pedido de luta.", Pink)
End If
Exit Sub
E para finalizar, procure por:
- Código:
Sub ChatRequestWindow(ByVal Index As Long, ByVal Inviter As Long)
Dim Packet As String
Packet = "CHATWINDOW" & SEP_CHAR & Inviter & END_CHAR
Call SendDataTo(Index, Packet)
End Sub
Abaixo adicione:
- Código:
Sub PVPRequestWindow(ByVal Index As Long, ByVal Inviter As Long)
Dim Packet As String
Packet = "PVPWINDOW" & SEP_CHAR & Inviter & END_CHAR
Call SendDataTo(Index, Packet)
End Sub
É isso, nada de mais. Bom, quando alguém digitar:
Aí ambos os jogadores irão para um mapa determinado. Qualquer erro, basta avisar.
Até a próxima
Escrito por Lenon
Lendário- Administrador Lendário
- Mensagens : 1958
Re: [ALL]Comando Pvp
eu tava querendo + ainda te devo 1/300 da minha vida
é pq eu to devendo muito a minha vida ppor isso eu to te devendo só isso
é pq eu to devendo muito a minha vida ppor isso eu to te devendo só isso
Re: [ALL]Comando Pvp
lol eu procurei esse tão de ' Leave party
mais não achei e no meu vb não tem esse ' Leave party
If LCase$(Mid(MyText, 1, 6)) = "/sair" Then
Call SendLeaveParty
MyText = vbNullString
Exit Sub
End If
alguem me ajuda ai ??? preciso desse tuto
mais não achei e no meu vb não tem esse ' Leave party
If LCase$(Mid(MyText, 1, 6)) = "/sair" Then
Call SendLeaveParty
MyText = vbNullString
Exit Sub
End If
alguem me ajuda ai ??? preciso desse tuto
Pablo- Moderador Global
- Mensagens : 1371
Re: [ALL]Comando Pvp
Se você não achou por:
tente procurar por:
Se você não achar, estranho ;o
-
Fui fazer denovo deu erro nessa linha aqui:
- Código:
' Leave party
tente procurar por:
- Código:
If LCase$(Mid(MyText, 1, 6)) = "/sair" Then
Se você não achar, estranho ;o
-
ERRO!
Fui fazer denovo deu erro nessa linha aqui:
- Código:
frmMirage.lblPVPplayer.Caption = GetPlayerName(Val(Parse(1)))
Compile error: Method or data member not found.
Alguma Luz ?
Yoshiiro- Novato
- Mensagens : 35
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