[ALL]Sistema de vip por data
+27
devanir
gokured
pknaozao
Lucas Roberto
SkyZero
MrMota
willa
primelove
gabriiell mooreiiraa
augusto95
Freitas
MarcosVinicius158
Thales12
ADMramon
Gu1lh3rm3
DrayonDuarte
Cris~
Ramonxxd
Gustavo santos Diniz
putolinoxd
cristian113
kakaroto
→ João™
Lucas Lôpo
Karlos
Pablo
Lendário
31 participantes
MMORPG Brasil :: OPEN SOURCE ENGINES :: Outras Engines :: Elysium :: Tutoriais
Página 1 de 2
Página 1 de 2 • 1, 2
[ALL]Sistema de vip por data
Bom, com este tutorial o "sistema de VIP" passa a ser retirado automaticamente. Todo o sistema funciona por datas.
Lembre de ter o sistema de VIP primeiro para fazer esse tutorial
http://www.mmorpgbr.com/tutoriais-f14/sistema-de-vip-fucionando-t164.htm
Cliente~Side
Primeiramente, baixe a form anexada no final do post e adicione no seu projeto.
Vá na frmAdmin e adicione um CommandButton e dê duplo clique nele. Adicione:
Procure por:
Server~Side
Baixe a form anexa no final do post e adicione no seu projeto.
Agora vá na frmServer e em qualquer lugar adicione um CommandButton, dê duplo clique e adicione:
Agora, procure por:
Lembrando que você precisa ter em seu jogo o sistema VIP
Se funcionar direito, avisem-me, para podermos aprova-lo
Créditos: Lenon e prodev
Lembre de ter o sistema de VIP primeiro para fazer esse tutorial
http://www.mmorpgbr.com/tutoriais-f14/sistema-de-vip-fucionando-t164.htm
Cliente~Side
Primeiramente, baixe a form anexada no final do post e adicione no seu projeto.
Vá na frmAdmin e adicione um CommandButton e dê duplo clique nele. Adicione:
- Código:
Call SendRequestEditVIP
Procure por:
- Código:
' :::::::::::::::::::::::::::
' :: All characters packet ::
' :::::::::::::::::::::::::::
If Parse(0) = "allchars" Then
n = 1
frmSendGetData.Hide
frmChars.Show , frmMainMenu
frmChars.lstChars.Clear
For I = 1 To MAX_CHARS
Name = Parse(n)
Msg = Parse(n + 1)
Level = Val(Parse(n + 2))
charselsprite(I) = Val(Parse(n + 3))
If Trim(Name) = vbNullString Then
frmChars.lstChars.AddItem "Lugar Livre"
Else
frmChars.lstChars.AddItem Name & ", level " & Level & " " & Msg
End If
n = n + 4
Next I
frmChars.lstChars.ListIndex = 0
Exit Sub
End If
- Código:
' :::::::::::::::::
' :: Data do VIP ::
' :::::::::::::::::
If Parse(0) = "playerdvip" Then
If Parse(1) = "Sim" Then
If Parse(3) - Val(Parse(2)) <= 0 Then
frmChars.lblVIP.Visible = False
frmChars.lblDVIP.Visible = False
Exit Sub
End If
frmChars.lblVIP.Caption = "Plano VIP: " & Parse(1)
frmChars.lblDVIP.Caption = "Você ainda têm " & Parse(3) - Val(Parse(2)) & " dia(s) de VIP."
End If
End If
- Código:
Sub SendSaveArrow(ByVal ArrowNum As Long)
Dim Packet As String
Packet = "SAVEARROW" & SEP_CHAR & ArrowNum & SEP_CHAR & Trim(Arrows(ArrowNum).Name) & SEP_CHAR & Arrows(ArrowNum).Pic & SEP_CHAR & Arrows(ArrowNum).Range & END_CHAR
Call SendData(Packet)
End Sub
- Código:
Sub SendRequestEditVIP()
Dim Packet As String
Packet = "REQUESTEDITVIP" & END_CHAR
Call SendData(Packet)
End Sub
Sub SendChangeVIP(ByVal Name As String, ByVal Data As String, ByVal Dias As Long)
Dim Packet As String
Packet = "CVIP" & SEP_CHAR & Name & SEP_CHAR & Data & SEP_CHAR & Dias & END_CHAR
Call SendData(Packet)
End Sub
Sub SendRemoveVIP(ByVal Name As String)
Dim Packet As String
Packet = "RVIP" & SEP_CHAR & Name & END_CHAR
Call SendData(Packet)
End Sub
- Código:
' :::::::::::::::::::::::::::
' :: Arrow editor packet ::
' :::::::::::::::::::::::::::
- Código:
' :::::::::::::::::::::::::::
' :: VIP editor packet ::
' :::::::::::::::::::::::::::
If (Parse(0) = "vipeditor") Then
If GetPlayerAccess(MyIndex) >= 5 Then
frmEditVIP.Visible = True
End If
End If
Server~Side
Baixe a form anexa no final do post e adicione no seu projeto.
Agora vá na frmServer e em qualquer lugar adicione um CommandButton, dê duplo clique e adicione:
- Código:
frmVIP.Visible = True
Agora, procure por:
- Código:
Private Sub Command19_Click()
Dim Index As Long
If lvUsers.ListItems.Count = 0 Then Exit Sub
Index = lvUsers.ListItems(lvUsers.SelectedItem.Index).text
If IsPlaying(Index) = False Then Exit Sub
CharInfo(0).Caption = "Conta: " & GetPlayerLogin(Index)
CharInfo(1).Caption = "Personagem: " & GetPlayerName(Index)
CharInfo(2).Caption = "Level: " & GetPlayerLevel(Index)
CharInfo(3).Caption = "Hp: " & GetPlayerHP(Index) & "/" & GetPlayerMaxHP(Index)
CharInfo(4).Caption = "Mp: " & GetPlayerMP(Index) & "/" & GetPlayerMaxMP(Index)
CharInfo(5).Caption = "Sp: " & GetPlayerSP(Index) & "/" & GetPlayerMaxSP(Index)
CharInfo(6).Caption = "Exp: " & GetPlayerExp(Index) & "/" & GetPlayerNextLevel(Index)
CharInfo(7).Caption = "Acesso: " & GetPlayerAccess(Index)
CharInfo(8).Caption = "PK: " & GetPlayerPK(Index)
CharInfo(9).Caption = "Classe: " & Class(GetPlayerClass(Index)).Name
CharInfo(10).Caption = "Sprite: " & GetPlayerSprite(Index)
CharInfo(11).Caption = "Sexo: " & STR(Player(Index).Char(Player(Index).CharNum).Sex)
CharInfo(12).Caption = "Mapa: " & GetPlayerMap(Index)
CharInfo(13).Caption = "Guild: " & GetPlayerGuild(Index)
CharInfo(14).Caption = "Guild Access: " & GetPlayerGuildAccess(Index)
CharInfo(15).Caption = "For: " & GetPlayerstr(Index)
CharInfo(16).Caption = "Def: " & GetPlayerDEF(Index)
CharInfo(17).Caption = "Agi: " & GetPlayerSPEED(Index)
CharInfo(18).Caption = "Int: " & GetPlayerMAGI(Index)
CharInfo(19).Caption = "Pontos: " & GetPlayerPOINTS(Index)
CharInfo(20).Caption = "Index: " & Index
picStats.Visible = True
End Sub
- Código:
Private Sub Command19_Click()
Dim Index As Long
If lvUsers.ListItems.Count = 0 Then Exit Sub
Index = lvUsers.ListItems(lvUsers.SelectedItem.Index).text
If IsPlaying(Index) = False Then Exit Sub
CharInfo(0).Caption = "Conta: " & GetPlayerLogin(Index)
CharInfo(1).Caption = "Personagem: " & GetPlayerName(Index)
CharInfo(2).Caption = "Level: " & GetPlayerLevel(Index)
CharInfo(3).Caption = "Hp: " & GetPlayerHP(Index) & "/" & GetPlayerMaxHP(Index)
CharInfo(4).Caption = "Mp: " & GetPlayerMP(Index) & "/" & GetPlayerMaxMP(Index)
CharInfo(5).Caption = "Sp: " & GetPlayerSP(Index) & "/" & GetPlayerMaxSP(Index)
CharInfo(6).Caption = "Exp: " & GetPlayerExp(Index) & "/" & GetPlayerNextLevel(Index)
CharInfo(7).Caption = "Acesso: " & GetPlayerAccess(Index)
CharInfo(8).Caption = "PK: " & GetPlayerPK(Index)
CharInfo(9).Caption = "Classe: " & Class(GetPlayerClass(Index)).Name
CharInfo(10).Caption = "Sprite: " & GetPlayerSprite(Index)
CharInfo(11).Caption = "Sexo: " & STR(Player(Index).Char(Player(Index).CharNum).Sex)
CharInfo(12).Caption = "Mapa: " & GetPlayerMap(Index)
CharInfo(13).Caption = "Guild: " & GetPlayerGuild(Index)
CharInfo(14).Caption = "Guild Access: " & GetPlayerGuildAccess(Index)
CharInfo(15).Caption = "For: " & GetPlayerstr(Index)
CharInfo(16).Caption = "Def: " & GetPlayerDEF(Index)
CharInfo(17).Caption = "Agi: " & GetPlayerSPEED(Index)
CharInfo(18).Caption = "Int: " & GetPlayerMAGI(Index)
CharInfo(19).Caption = "Pontos: " & GetPlayerPOINTS(Index)
CharInfo(20).Caption = "Index: " & Index
CharInfo(23).Caption = "VIP: " & GetPlayerVIP(Index)
CharInfo(24).Caption = "Início do VIP: " & GetPlayerInícioVIP(Index)
CharInfo(25).Caption = "Restando: " & GetPlayerDiasVIP(Index)
picStats.Visible = True
End Sub
- Código:
Sub JoinGame(ByVal Index As Long)
- Código:
' Mandar a flag, assim vão poder fazer algo
Call SendDataTo(Index, "INGAME" & END_CHAR)
- Código:
Call UsersVIP(Index)
- Código:
'Verificar VIP
If GetPlayerVIP(Index) = "Sim" Then
If DateDiff("d", GetPlayerInícioVIP(Index), Date) < GetPlayerDiasVIP(Index) Then
If GetPlayerVIP(Index) = "Sim" Then
If GetPlayerAccess(Index) = 0 Then
Call SetPlayerAccess(Index, 1)
Call PlayerMsg(Index, "Obrigado por adiquirir o plano VIP, agora basta usufruir das vantagens!", 15)
End If
End If
ElseIf DateDiff("d", GetPlayerInícioVIP(Index), Date) >= GetPlayerDiasVIP(Index) Then
If GetPlayerVIP(Index) = "Sim" Then
If GetPlayerAccess(Index) = 1 Then
Call SetPlayerVIP(Index, "Não")
Call SetPlayerAccess(Index, 0)
Call PlayerMsg(Index, "Seus dias de plano VIP terminaram, regarregue!", 15)
End If
End If
End If
End If
- Código:
Public Sub ShowPLR(ByVal Index As Long)
Dim ls As ListItem
On Error Resume Next
If frmServer.lvUsers.ListItems.Count > 0 And IsPlaying(Index) = True Then
frmServer.lvUsers.ListItems.Remove Index
End If
Set ls = frmServer.lvUsers.ListItems.add(Index, , Index)
If IsPlaying(Index) = False Then
ls.SubItems(1) = vbNullString
ls.SubItems(2) = vbNullString
ls.SubItems(3) = vbNullString
ls.SubItems(4) = vbNullString
ls.SubItems(5) = vbNullString
Else
ls.SubItems(1) = GetPlayerLogin(Index)
ls.SubItems(2) = GetPlayerName(Index)
ls.SubItems(3) = GetPlayerLevel(Index)
ls.SubItems(4) = GetPlayerSprite(Index)
ls.SubItems(5) = GetPlayerAccess(Index)
End If
End Sub
- Código:
Public Sub UsersVIP(ByVal Index As Long)
Dim ls As ListItem
On Error Resume Next
If frmVIP.lvUsersVIP.ListItems.Count > 0 And IsPlaying(Index) = True Then
frmVIP.lvUsersVIP.ListItems.Remove Index
End If
Set ls = frmVIP.lvUsersVIP.ListItems.add(Index, , Index)
If IsPlaying(Index) = False Then
ls.SubItems(1) = vbNullString
ls.SubItems(2) = vbNullString
ls.SubItems(3) = vbNullString
ls.SubItems(4) = vbNullString
Else
ls.SubItems(1) = GetPlayerLogin(Index)
ls.SubItems(2) = GetPlayerVIP(Index)
ls.SubItems(3) = GetPlayerInícioVIP(Index)
ls.SubItems(4) = GetPlayerDiasVIP(Index) & " dias"
End If
End Sub
- Código:
For i = 1 To MAX_PLAYERS
Call ShowPLR(i)
Next
- Código:
For i = 1 To MAX_PLAYERS
Call ShowPLR(i)
Call UsersVIP(i)
Next
- Código:
Public Sub RemovePLR()
frmServer.lvUsers.ListItems.Clear
End Sub
- Código:
Public Sub RemoveUsersVIP()
frmVIP.lvUsersVIP.ListItems.Clear
End Sub
- Código:
Call SavePlayer(Index)
Call TextAdd(frmServer.txtText(0), GetPlayerName(Index) & " saiu do " & GAME_NAME & ".", True)
Call SendLeftGame(Index)
Call RemovePLR
- Código:
Call RemoveUsersVIP
- Código:
Sub HandleData(ByVal Index As Long, ByVal Data As String)
Dim Parse() As String ' MODO DE SEGURANÇA -- "Descomente" para DESLIGÁ-LO, comente para LIGÁ-LO
Dim Name As String
Dim Password As String
Dim Sex As Long
Dim Class As Long
Dim CharNum As Long
Dim Msg As String
Dim MsgTo As Long
Dim Dir As Long
Dim InvNum As Long
Dim Amount As Long
Dim Damage As Long
Dim PointType As Byte
Dim PointQuant As Integer
Dim Movement As Long
Dim i As Long, N As Long, x As Long, y As Long, f As Long
Dim MapNum As Long
Dim s As String
Dim ShopNum As Long, ItemNum As Long
Dim DurNeeded As Long, GoldNeeded As Long
Dim z As Long
Dim Packet As String
Dim o As Long
- Código:
Sub HandleData(ByVal Index As Long, ByVal Data As String)
Dim Parse() As String ' MODO DE SEGURANÇA -- "Descomente" para DESLIGÁ-LO, comente para LIGÁ-LO
Dim Name As String
Dim Password As String
Dim VIP As String
Dim InícioVIP As String
Dim DiasVIP As Long
Dim Sex As Long
Dim Class As Long
Dim CharNum As Long
Dim Msg As String
Dim MsgTo As Long
Dim Dir As Long
Dim InvNum As Long
Dim Amount As Long
Dim Damage As Long
Dim PointType As Byte
Dim PointQuant As Integer
Dim Movement As Long
Dim i As Long, N As Long, x As Long, y As Long, f As Long
Dim MapNum As Long
Dim s As String
Dim ShopNum As Long, ItemNum As Long
Dim DurNeeded As Long, GoldNeeded As Long
Dim z As Long
Dim Packet As String
Dim o As Long
- Código:
Call AddAccount(Index, Name, Password)
- Código:
Call AddAccount(Index, Name, Password, VIP, InícioVIP, DiasVIP)
- Código:
Packs = "MAXINFO" & SEP_CHAR
Packs = Packs & GAME_NAME & SEP_CHAR
Packs = Packs & MAX_PLAYERS & SEP_CHAR
Packs = Packs & MAX_ITEMS & SEP_CHAR
Packs = Packs & MAX_NPCS & SEP_CHAR
Packs = Packs & MAX_SHOPS & SEP_CHAR
Packs = Packs & MAX_SPELLS & SEP_CHAR
Packs = Packs & MAX_MAPS & SEP_CHAR
Packs = Packs & MAX_MAP_ITEMS & SEP_CHAR
Packs = Packs & MAX_MAPX & SEP_CHAR
Packs = Packs & MAX_MAPY & SEP_CHAR
Packs = Packs & MAX_EMOTICONS & SEP_CHAR
Packs = Packs & MAX_SPEECH & SEP_CHAR
Packs = Packs & END_CHAR
Call SendDataTo(Index, Packs)
Call LoadPlayer(Index, Name)
Call SendChars(Index)
- Código:
Call SendDataVIP(Index)
- Código:
Call AddChar(Index, Name, Sex, Class, CharNum)
Call SavePlayer(Index)
Call AddLog("O personagem " & Name & " foi adicionado na conta de " & GetPlayerLogin(Index) & ".", PLAYER_LOG)
Call SendChars(Index)
- Código:
Call SendDataVIP(Index)
- Código:
Call DelChar(Index, CharNum)
Call AddLog("Personagem deletado na conta de " & GetPlayerLogin(Index) & ".", PLAYER_LOG)
Call SendChars(Index)
- Código:
Call SendDataVIP(Index)
- Código:
Sub SendChars(ByVal Index As Long)
Dim Packet As String
Dim i As Long
Packet = "ALLCHARS" & SEP_CHAR
For i = 1 To MAX_CHARS
Packet = Packet & Trim$(Player(Index).Char(i).Name) & SEP_CHAR & Trim$(Class(Player(Index).Char(i).Class).Name) & SEP_CHAR & Player(Index).Char(i).Level & SEP_CHAR & Player(Index).Char(i).Sprite & SEP_CHAR
Next
Packet = Packet & END_CHAR
Call SendDataTo(Index, Packet)
End Sub
- Código:
Sub SendDataVIP(ByVal Index As Long)
Dim Packet As String
Dim d As Long
If GetPlayerVIP(Index) = "Sim" Then
d = DateDiff("d", GetPlayerInícioVIP(Index), Now)
Else
Exit Sub
End If
Packet = "PLAYERDVIP" & SEP_CHAR & GetPlayerVIP(Index) & SEP_CHAR & d & SEP_CHAR & GetPlayerDiasVIP(Index) & END_CHAR
Call SendDataTo(Index, Packet)
End Sub
- Código:
Sub AddAccount(ByVal Index As Long, _
ByVal Name As String, _
ByVal Password As String)
Dim i As Long
Player(Index).Login = Name
Player(Index).Password = Password
For i = 1 To MAX_CHARS
Call ClearChar(Index, i)
Next
Call SavePlayer(Index)
End Sub
- Código:
Sub AddAccount(ByVal Index As Long, _
ByVal Name As String, _
ByVal Password As String, _
ByVal VIP As String, _
ByVal InícioVIP As String, _
ByVal DiasVIP As Long)
Dim i As Long
Player(Index).Login = Name
Player(Index).Password = Password
Player(Index).VIP = VIP
Player(Index).InícioVIP = InícioVIP
Player(Index).DiasVIP = DiasVIP
For i = 1 To MAX_CHARS
Call ClearChar(Index, i)
Next
Call SavePlayer(Index)
End Sub
- Código:
Sub LoadPlayer(ByVal Index As Long, _
ByVal Name As String)
Dim FileName As String
Dim i As Long
Dim N As Long
Call ClearPlayer(Index)
FileName = App.Path & "\Contas" & Trim$(Name) & ".ini"
Player(Index).Login = GetVar(FileName, "GENERAL", "Login")
Player(Index).Password = GetVar(FileName, "GENERAL", "Password")
Player(Index).Pet.Alive = NO
- Código:
Sub LoadPlayer(ByVal Index As Long, _
ByVal Name As String)
Dim FileName As String
Dim i As Long
Dim N As Long
Call ClearPlayer(Index)
FileName = App.Path & "\Contas" & Trim$(Name) & ".ini"
Player(Index).Login = GetVar(FileName, "GENERAL", "Login")
Player(Index).Password = GetVar(FileName, "GENERAL", "Password")
Player(Index).VIP = GetVar(FileName, "GENERAL", "VIP")
Player(Index).InícioVIP = GetVar(FileName, "GENERAL", "InícioVIP")
Player(Index).DiasVIP = Val(GetVar(FileName, "GENERAL", "DiasVIP"))
Player(Index).Pet.Alive = NO
- Código:
Sub SavePlayer(ByVal Index As Long)
Dim FileName As String
Dim i As Long
Dim N As Long
FileName = App.Path & "\Contas" & Trim$(Player(Index).Login) & ".ini"
Call PutVar(FileName, "GENERAL", "Login", Trim$(Player(Index).Login))
Call PutVar(FileName, "GENERAL", "Password", Trim$(Player(Index).Password
- Código:
Sub SavePlayer(ByVal Index As Long)
Dim FileName As String
Dim i As Long
Dim N As Long
FileName = App.Path & "\Contas" & Trim$(Player(Index).Login) & ".ini"
Call PutVar(FileName, "GENERAL", "Login", Trim$(Player(Index).Login))
Call PutVar(FileName, "GENERAL", "Password", Trim$(Player(Index).Password))
Call PutVar(FileName, "GENERAL", "VIP", Trim$(Player(Index).VIP))
Call PutVar(FileName, "GENERAL", "InícioVIP", Trim$(Player(Index).InícioVIP))
Call PutVar(FileName, "GENERAL", "DiasVIP", STR(Player(Index).DiasVIP))
- Código:
Type AccountRec
' Conta
Login As String * NAME_LENGTH
Password As String * NAME_LENGTH
- Código:
Type AccountRec
' Conta
Login As String * NAME_LENGTH
Password As String * NAME_LENGTH
VIP As String
InícioVIP As String
DiasVIP As Long
- Código:
Sub ClearPlayer(ByVal Index As Long)
Dim i As Long
Dim N As Long
Player(Index).Login = vbNullString
Player(Index).Password = vbNullString
- Código:
Sub ClearPlayer(ByVal Index As Long)
Dim i As Long
Dim N As Long
Player(Index).Login = vbNullString
Player(Index).Password = vbNullString
Player(Index).VIP = "Não"
Player(Index).InícioVIP = "00/00/0000"
Player(Index).DiasVIP = 0
- Código:
' //////////////////////
' // PLAYER FUNCTIONS //
' //////////////////////
Function GetPlayerLogin(ByVal Index As Long) As String
GetPlayerLogin = Trim$(Player(Index).Login)
End Function
- Código:
'VIP
Function GetPlayerVIP(ByVal Index As Long) As String
GetPlayerVIP = Trim$(Player(Index).VIP)
End Function
Sub SetPlayerVIP(ByVal Index As Long, _
ByVal VIP As String)
Player(Index).VIP = VIP
End Sub
'Início VIP
Function GetPlayerInícioVIP(ByVal Index As Long) As String
GetPlayerInícioVIP = Trim$(Player(Index).InícioVIP)
End Function
Sub SetPlayerInícioVIP(ByVal Index As Long, _
ByVal InícioVIP As String)
Player(Index).InícioVIP = InícioVIP
End Sub
'Dias VIP
Function GetPlayerDiasVIP(ByVal Index As Long) As Long
GetPlayerDiasVIP = Player(Index).DiasVIP
End Function
Sub SetPlayerDiasVIP(ByVal Index As Long, _
ByVal DiasVIP As Long)
Player(Index).DiasVIP = DiasVIP
End Sub
- Código:
Case "prompt"
If scriptING = 1 Then
Myscript.ExecuteStatement "scripts\Principal.txt", "PlayerPrompt " & Index & "," & Val(Parse(1)) & "," & Val(Parse(2))
End If
Exit Sub
- Código:
Case "requesteditvip"
If GetPlayerAccess(Index) < ADMIN_DEVELOPER Then
Call HackingAttempt(Index, "Admin Cloning")
Exit Sub
End If
Call SendDataTo(Index, "VIPEDITOR" & END_CHAR)
Exit Sub
Case "cvip"
N = FindPlayer(Parse(1))
InícioVIP = Parse(2)
DiasVIP = Val(Parse(3))
If UBound(Parse) < 3 Then Exit Sub
If GetPlayerAccess(Index) < ADMIN_DEVELOPER Then
Call HackingAttempt(Index, "Admin Cloning")
Exit Sub
Else
Call SetPlayerVIP(N, "Sim")
Call SetPlayerAccess(N, 1)
Call SetPlayerInícioVIP(N, InícioVIP)
Call SetPlayerDiasVIP(N, DiasVIP)
Call SavePlayer(N)
End If
Exit Sub
Case "rvip"
N = FindPlayer(Parse(1))
If UBound(Parse) < 1 Then Exit Sub
If GetPlayerAccess(Index) < ADMIN_DEVELOPER Then
Call HackingAttempt(Index, "Admin Cloning")
Exit Sub
Else
Call SetPlayerVIP(N, "Não")
Call SetPlayerAccess(N, 0)
Call SetPlayerInícioVIP(N, vbNullString)
Call SetPlayerDiasVIP(N, 0)
Call SavePlayer(N)
End If
Exit Sub
Lembrando que você precisa ter em seu jogo o sistema VIP
Se funcionar direito, avisem-me, para podermos aprova-lo
Créditos: Lenon e prodev
Lendário- Administrador Lendário
- Mensagens : 1958
Re: [ALL]Sistema de vip por data
esses form q vc postou sao do vip ou do VIP + o sistema de data?
cristian113- Membro
- Mensagens : 141
Re: [ALL]Sistema de vip por data
AaaaaH..!!!
Depois de 3 tentativas eu consegui
Depois de 3 tentativas eu consegui
putolinoxd- Novato
- Mensagens : 42
Re: [ALL]Sistema de vip por data
Fiz de primiera e deu certim!
Gustavo santos Diniz- Membro
- Mensagens : 145
Re: [ALL]Sistema de vip por data
Erro Na Hora De Compila
https://2img.net/r/ihimizer/i/errocompile.png/
https://2img.net/r/ihimizer/i/errocompile.png/
Re: [ALL]Sistema de vip por data
No botão download no final do post.
Lendário- Administrador Lendário
- Mensagens : 1958
Re: [ALL]Sistema de vip por data
ACHEI VLW LEK ^^ malz nao tinha visto
Última edição por drayon em Qui 08 Jul 2010, 17:39, editado 1 vez(es)
DrayonDuarte- Membro
- Mensagens : 243
Re: [ALL]Sistema de vip por data
- Código:
http://www.4shared.com/file/209933318/8174e99/formsVIP.html
Re: [ALL]Sistema de vip por data
Sistema impecavél parabéns +1 Cred pra você :S
ADMramon- Novato
- Mensagens : 41
Re: [ALL]Sistema de vip por data
quando vou compilar da erro
no
Visible
frmChars.lblVIP.Visible = False
frmChars.lblDVIP.Visible = False
alguem ajuda ??
no
Visible
frmChars.lblVIP.Visible = False
frmChars.lblDVIP.Visible = False
alguem ajuda ??
Re: [ALL]Sistema de vip por data
meu sempre qndo eu compilo da um erro!
tipo da erro no PK do server source dai nao sei tira.
tipo da erro no PK do server source dai nao sei tira.
Re: [ALL]Sistema de vip por data
Ta dando esse erro comigo no servidor quando clico para jogar pelo VB...
https://2img.net/r/ihimizer/img709/887/erroq.png
O client ta abrindo sem erro... ajudem! xD
@Edit:
Ja concertei!! Obrigado ai pelo tutorial!
https://2img.net/r/ihimizer/img709/887/erroq.png
O client ta abrindo sem erro... ajudem! xD
@Edit:
Ja concertei!! Obrigado ai pelo tutorial!
augusto95- Membro
- Mensagens : 105
Re: [ALL]Sistema de vip por data
será que funfa com doiis VIP??
gabriiell mooreiiraa- Novato
- Mensagens : 23
Re: [ALL]Sistema de vip por data
Poxa, posta uma imagem assim eu lhe darei 1 credito
primelove- Novato
- Mensagens : 23
Re: [ALL]Sistema de vip por data
gabriiell mooreiiraa Diz:
será que funfa com doiis VIP??
- Sim Funciona, eu uso.
- Fiz Meu Sistemas Traves Desse Tuto.
Agora Sobre o Tuto:
- Parabeens Lendário 100% Aprovado.
willa- Membro Junior
- Mensagens : 80
Página 1 de 2 • 1, 2
Tópicos semelhantes
» [Dúvida] Vip por data com bug
» Sistema de VIP por data
» Sub Handle data CHEIA !
» Sistema de Premium por Data
» [Pedido]Sistema de Vip(Premiun) Por Data
» Sistema de VIP por data
» Sub Handle data CHEIA !
» Sistema de Premium por Data
» [Pedido]Sistema de Vip(Premiun) Por Data
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