ShaW Principiante
Mensajes : 11
Fecha de inscripción : 15/07/2011
| Tema: Comando /Ulla para ir a Ullathorpe! Vie Jul 15, 2011 3:36 pm | |
| CLIENTE: Buscamos - Código:
-
Ping '/PING Abajo de eso ponemos: - Código:
-
Ulla '/Ulla by shak Buscamos - Código:
-
Public Sub WritePing() If pingTime <> 0 Then Exit Sub Call outgoingData.WriteByte(ClientPacketID.Ping) ' Avoid computing errors due to frame rate Call FlushBuffer DoEvents pingTime = GetTickCount End Sub
abajo: - Código:
-
Public Sub WriteUlla() Call outgoingData.WriteByte(ClientPacketID.Ulla) End Sub
Buscar: - Código:
-
Case "/PING" Call WritePing
Abajo - Código:
-
Case "/ULLA" Call WriteUlla SERVER: Buscar: - Código:
-
Ping '/PING ABAJO - Código:
-
Ulla '/Ulla BUSCAR - Código:
-
Case ClientPacketID.Ping '/PING Call HandlePing(UserIndex)
ABAJO - Código:
-
Case ClientPacketID.Ulla '/ULLA Call HanDleUlla(UserIndex) BUSCAR - Código:
-
Public Sub HandlePing(ByVal UserIndex As Integer) '*************************************************** 'Author: Lucas Tavolaro Ortiz (Tavo) 'Last Modification: 12/24/06 'Show guilds messages '*************************************************** With UserList(UserIndex) 'Remove Packet ID Call .incomingData.ReadByte Call WritePong(UserIndex) End With End Sub
ABAJO - Código:
-
Private Sub HanDleULLA(ByVal UserIndex As Integer) With UserList(UserIndex) Call .incomingData.ReadByte Call WriteConsoleMsg(UserIndex, "Haz viajado a ullathorpe", FontTypeNames.FONTTYPE_CONSEJO) Call WarpUserChar(UserIndex, 1, 45, 45, True) Exit Sub End With End Sub Private Sub HanDleBANDERBILL(ByVal UserIndex As Integer) With UserList(UserIndex) Call .incomingData.ReadByte Call WriteConsoleMsg(UserIndex, "Haz viajado a Banderbill", FontTypeNames.FONTTYPE_CONSEJO) Call WarpUserChar(UserIndex, 59, 42, 88, True) Exit Sub End With End Sub Private Sub HanDleARGHAL(ByVal UserIndex As Integer) With UserList(UserIndex) Call .incomingData.ReadByte Call WriteConsoleMsg(UserIndex, "Haz viajado a Arghal", FontTypeNames.FONTTYPE_CONSEJO) Call WarpUserChar(UserIndex, 196, 52, 75, True) 'Centro arghal Exit Sub End With End Sub Private Sub HanDleLINDOS(ByVal UserIndex As Integer) With UserList(UserIndex) Call .incomingData.ReadByte Call WriteConsoleMsg(UserIndex, "Haz viajado a Lindos", FontTypeNames.FONTTYPE_CONSEJO) Call WarpUserChar(UserIndex, 64, 27, 80, True) 'Lindos cerca boveda Exit Sub End With End Sub
|
|
NazduM Administrador
Mensajes : 239
Fecha de inscripción : 04/05/2011
Edad : 27
Localización : COMPU:)
Sexo :
| Tema: Re: Comando /Ulla para ir a Ullathorpe! Vie Jul 15, 2011 3:38 pm | |
| Tu segundo aporte espectacular seguí asi |
|