VB/VB.Net Problème d0fusStream

A

Anonymous

Invité
#1
Bonsoir cadernis,

j'ai rencontré un petit problème lors de la ma connexion en bidouillant mes delegates et invokes:
Return BitConverter.ToDouble(Bytes, 0)

L'index était hors limites. Il ne doit pas être négatif et doit être inférieur à la taille de la collection.
Nom du paramètre : startIndex

Voilà ma classe:
Imports System.Net.Sockets


Namespace Dofus
Public Class DofusReader
Inherits IO.BinaryReader

Sub New(ByVal input As IO.Stream)
MyBase.New(input)
End Sub

Sub New(ByVal input As IO.Stream, ByVal encoding As System.Text.Encoding)
MyBase.New(input, encoding)
End Sub
Public Function readUnsignedByte()
Return ReadByte()
End Function
Public Overrides Function ReadByte() As Byte
Return MyBase.ReadByte()
End Function

Public Function ReadUnSignedshort()
Return ReadUInt16()
End Function

Public Overrides Function ReadUInt16() As UShort
Return (CUShort(ReadByte()) << 8) + ReadByte()
End Function

Public Overrides Function ReadBoolean() As Boolean
Return ReadByte() = 1
End Function

Public Function ReadShort()
Return ReadInt16()
End Function

Public Overrides Function ReadInt16() As Short
Dim Value As UShort = ReadUInt16()
If Value > Short.MaxValue Then
Dim Value2 As Short = -(UShort.MaxValue - Value) - 1
Return Value2
End If
Return Value
End Function

Public Function ReadInt()
Return ReadInt32()
End Function

Public Overrides Function ReadInt32() As Integer
Dim Value As UInteger = ReadUInt32()
If Value > Integer.MaxValue Then
Dim Value2 As Integer = -(UInteger.MaxValue - Value) - 1
Return Value2
End If
Return Value
End Function

Public Overrides Function ReadUInt32() As UInteger
Return (CUInt(ReadByte()) << 24) + (CUInt(ReadByte()) << 16) + (CUInt(ReadByte()) << 8) + ReadByte()
End Function

Public Overrides Function ReadDouble() As Double
Dim Bytes() As Byte = ReadBytes(8)
Array.Reverse(Bytes)
Return BitConverter.ToDouble(Bytes, 0)
End Function

Public Function ReadUTF()
Return ReadString()
End Function

Public Overrides Function ReadString() As String
Dim ByteArray() As Byte = MyBase.ReadBytes(ReadUInt16())
Return System.Text.Encoding.UTF8.GetString(ByteArray)
End Function

End Class
Public Class DofusWriter
Shared m_Bytes As New List(Of Byte)

Private Shared Function ComputeStaticHeader(ByVal PacketId As Integer, ByVal MessageLenghtType As Integer) As Short
Return (PacketId << 2) Or MessageLenghtType
End Function

Private Shared Function ComputeTypeLen(ByVal MessageLenght As Integer) As Short
Select Case MessageLenght
Case Is > UShort.MaxValue
Return 3
Case Is > Byte.MaxValue
Return 2
Case Is > 0
Return 1
Case Else
Return 0
End Select
End Function

Friend Shared Sub Send(ByVal PacketID As Integer, ByVal sock As Socket)
Dim MessageLenghtType As Integer = ComputeTypeLen(m_Bytes.Count)
Dim Header As Short = ComputeStaticHeader(PacketID, MessageLenghtType)

Dim BytesToWrite(2 + MessageLenghtType + m_Bytes.Count - 1) As Byte
BytesToWrite(0) = Header >> 8
BytesToWrite(1) = Header - 256 * BytesToWrite(0)

Dim index As Integer

Select Case MessageLenghtType
Case 1
BytesToWrite(2) = m_Bytes.Count
index = 3
Case 2
BytesToWrite(2) = m_Bytes.Count >> 8
BytesToWrite(3) = m_Bytes.Count - 256 * BytesToWrite(2)
index = 4
Case 3
BytesToWrite(2) = m_Bytes.Count >> 16
BytesToWrite(3) = m_Bytes.Count >> 8
BytesToWrite(4) = m_Bytes.Count - 256 * BytesToWrite(3) - 256 * 256 * BytesToWrite(2)
index = 5
End Select
Console.WriteLine("envoie : id = " & PacketID & ", taille = " & m_Bytes.Count) ' on ecrit l'ID et la taille
Console.Write("0x")
For i As Integer = index To m_Bytes.Count + index - 1
BytesToWrite(i) = m_Bytes(i - index)
Console.Write(BytesToWrite(i).ToString("X2"))
Next
Console.WriteLine()

sock.Send(BytesToWrite)

m_Bytes.Clear()

End Sub

Public Sub WriteByte(ByVal Value As Byte)
m_Bytes.Add(Value)
End Sub


Public Sub WriteBoolean(ByVal Value As Boolean)
If Value Then
WriteByte(1)
Else
WriteByte(0)
End If
End Sub
Public Sub WriteShort(ByVal Value As Short)
WriteByte(CByte(Value >> 8))
WriteByte(CByte(Value))
End Sub
Public Sub WriteUShort(ByVal Value As UShort)
WriteByte(CByte(Value >> 8))
WriteByte(CByte(Value And 255))
End Sub
Public Sub WriteUInt32(ByVal Value As UInteger)
WriteByte(CByte(Value >> 24))
Value -= (Value >> 24) << 24
WriteByte(CByte(Value >> 16))
Value -= (Value >> 16) << 16
WriteByte(CByte(Value >> 8))
Value -= (Value >> 8) << 8
WriteByte(CByte(Value))
End Sub
Public Sub WriteDouble(ByVal Value As UInteger)
WriteByte(CByte(Value >> 56))
Value -= (Value >> 56) << 56
WriteByte(CByte(Value >> 48))
Value -= (Value >> 48) << 48
WriteByte(CByte(Value >> 40))
Value -= (Value >> 40) << 40
WriteByte(CByte(Value >> 32))
Value -= (Value >> 32) << 32
WriteByte(CByte(Value >> 24))
Value -= (Value >> 24) << 24
WriteByte(CByte(Value >> 16))
Value -= (Value >> 16) << 16
WriteByte(CByte(Value >> 8))
Value -= (Value >> 8) << 8
WriteByte(CByte(Value))
End Sub
Public Sub WriteString(ByVal Value As String)
WriteUTF(Value)
End Sub
Public Sub WriteUTF(ByVal Value As String)
Dim BytesToWrite() As Byte = System.Text.Encoding.UTF8.GetBytes(Value)
WriteUShort(BytesToWrite.Length)
For Each Bit As Byte In BytesToWrite
WriteByte(Bit)
Next
End Sub

Sub WriteInt32(ByVal Target As Integer)
Dim arr As Byte()
arr = BitConverter.GetBytes(Target)
WriteByte(arr(3))
WriteByte(arr(2))
WriteByte(arr(1))
WriteByte(arr(0))
End Sub

Sub WriteInt16(ByVal Target As Integer)
Dim arr As Byte()
arr = BitConverter.GetBytes(Target)
WriteByte(arr(1))
WriteByte(arr(0))
End Sub

Sub WriteSingle(ByVal Target As Double)
Dim arr As Byte()
arr = BitConverter.GetBytes(Target)
For Each bytte As Byte In arr
WriteByte(bytte)
Next
End Sub

End Class
End Namespace
 

ToOnS

Membre Actif
Inscrit
8 Avril 2009
Messages
974
Reactions
0
#2
tu as quoi dans bytes quand l'erreur survient ? et dans startIndex ? et dans data ? l'erreure arrive a quel moment ?
 
A

Anonymous

Invité
#3
Excuse moi du peu d'informations que j'ai fourni a propos de mon erreur, alors voilà:
byte = length=0

data = {System.Collections.ListDictionaryInternal}

L'erreur survient lors de la connexion lors du packet 251.

Mes logs:
[19:29:19] --Ouverture de la connexion--
reception id = 1, taille = 8
0x0005080000058500
reception id = 3, taille = 35
0x0005080000058500000585000D23020020677639743835727A4C715C6B76646F484537
[19:29:21] Envoi des identifiants ...
envoie : id = 4, taille = 371
0x020406CAB70200000D616C6C6C6C6973746572303031015869645A38776275382B794A64616647753751712B6473776B393378794862624C7173336558444C7673592B624B49416C5931414F7151464334364A702B54595869347A3872634533636C55376C43634875596F53366359347A61553243784B452B437039372B71315A664B59584E67334E374E38714F44417763504A76615067444E52394D4955416C345A796531733137536E2F77324E496961393575365A3754476E5359732F435254537457596B6F4C5A475542664F4C6D4831636A55696330446C7570615170774A644B5658587277774B596B2F703057645253517A5235636B6D4442617844524E697270614B47504F6C6454524E6743345A7355774C5958366F69546F397473744969346730677530656C53514479595A36525A55395A4D61567942326D486C36552F746A37737951714F70786E4E325556526445364754357050694D317372774F327845334F6759316144513D3D000001
reception id = 22, taille = 27
0x00591B000009666479677968666462030C724C0000000000000000
-------> 22 Non implémenté <-------
reception id = 42, taille = 56
0x00A9380013000F3231332E3234382E3132362E31363315B30100203935633335613436393739316164353262653665626631393666323332
[19:29:22] Votre ticket est le : 95c35a469791ad52be6ebf196f232a8d
envoie : id = 42, taille = 0
0x
parsing() Send -> Une requête d’envoi ou de réception de données n’a pas été autorisée car le socket n’est pas connecté et (lors de l’envoi sur un socket datagramme en utilisant un appel sendto) aucune adresse n’a été fournie
[19:29:22] Connexion au serveur de jeu.
reception id = 1, taille = 8
0x0005080000058500
reception id = 101, taille = 0
0x
envoie : id = 110, taille = 38
0x0002667200203935633335613436393739316164353262653665626631393666323332613864
reception id = 111, taille = 0
0x
envoie : id = 150, taille = 0
0x
reception id = 175, taille = 6
0x01BC02BD064E
-------> 175 Non implémenté <-------
reception id = 6305, taille = 6
0x01BC02BD064E
-------> 6305 Non implémenté <-------
reception id = 6216, taille = 9
0x01BC02BD064ECA9886
-------> 6216 Non implémenté <-------
reception id = 6267, taille = 1
0x01
-------> 6267 Non implémenté <-------
reception id = 176, taille = 0
0x
-------> 176 Non implémenté <-------
reception id = 6100, taille = 4
0x5F510400
-------> 6100 Non implémenté <-------
reception id = 6100, taille = 4
0x5F510400
-------> 6100 Non implémenté <-------
reception id = 176, taille = 0
0x
-------> 176 Non implémenté <-------
reception id = 6100, taille = 4
0x5F510400
-------> 6100 Non implémenté <-------
reception id = 151, taille = 56
0x5F510400000000025D38000001002D004093E405000841772D5A65616F6C00010001005A000505FA950F02E1710E0459331001FFC8670358
[19:29:24] Sélection du personnage: XXXXXXX
envoie : id = 152, taille = 4
0x004093E4
reception id = 176, taille = 0
0x
-------> 176 Non implémenté <-------
reception id = 6100, taille = 4
0x5F510400
-------> 6100 Non implémenté <-------
reception id = 6301, taille = 10
0x5F51040000000062750A
-------> 6301 Non implémenté <-------
reception id = 6087, taille = 6
0x5F5104000000
-------> 6087 Non implémenté <-------
reception id = 153, taille = 51
0x5F51040000000062750A000700070007000000005F1D060001004081FE026533004093E405000841772D5A65616F6C00010001
reception id = 3016, taille = 102
0x5F51040000000062750A000700070007000000005F1D060001004081FE026533004093E405000841772D5A65616F6C00010001005A000505FA950F02E1710E0459331001FFC867035864000001008C000009002F216600063F0374000001000005D940020000
-------> 3016 Non implémenté <-------
reception id = 6231, taille = 3
0x5F5104
-------> 6231 Non implémenté <-------
reception id = 6231, taille = 43
0x5F51040000000062750A000700070007000000005F1D060001004081FE026533004093E405000841772D5A
-------> 6231 Non implémenté <-------
reception id = 5689, taille = 3
0x5F5104
-------> 5689 Non implémenté <-------
reception id = 6058, taille = 2
0x5F51
-------> 6058 Non implémenté <-------
reception id = 6059, taille = 320
0x5F51040000000062750A000700070007000000005F1D060001004081FE026533004093E405000841772D5A65616F6C00010001005A000505FA950F02E1710E0459331001FFC867035864000001008C000009002F216600063F0374000001000005D94002000000013F0375000001000005D94003000000013F0377000001000005D94004000000013F2161000001000005D94005000000013F017B000001000005D94006000000013F0137000001000005D940070000000200000018615D03000000615D2B01000501700000000200A401700000000400A301700000000100A101700000000300A9017000000000000058E5030001015EA90200005EAE01400028005101D402110050007701D00038004C01170037020B0036020900490033020701DE009800320206004601DD003100AB004501DC0030006D0044002F002E00
-------> 6059 Non implémenté <-------
reception id = 892, taille = 13
0x5F51040000000062750A000700
-------> 892 Non implémenté <-------
reception id = 1200, taille = 33
0x5F51040000000062750A000700070007000000005F1D060001004081FE02653300
-------> 1200 Non implémenté <-------
reception id = 6231, taille = 43
0x5F51040000000062750A000700070007000000005F1D060001004081FE026533004093E405000841772D5A
-------> 6231 Non implémenté <-------
reception id = 170, taille = 3
0x5F5104
-------> 170 Non implémenté <-------
reception id = 3009, taille = 8
0x5F51040000000062
reception id = 5630, taille = 1
0x5F
-------> 5630 Non implémenté <-------
reception id = 6160, taille = 1
0x5F
-------> 6160 Non implémenté <-------
reception id = 6078, taille = 1
0x5F
-------> 6078 Non implémenté <-------
reception id = 780, taille = 5
0x5F51040000
[19:29:26] Connecté !
[19:29:26] Bienvenue sur DOFUS, dans le Monde des Douze !
Rappel : prenez garde, il est interdit de transmettre votre identifiant de connexion ainsi que votre mot de passe.
reception id = 780, taille = 27
0x5F51040000000062750A000700070007000000005F1D0600010040
envoie : id = 4001, taille = 0
0x
envoie : id = 5676, taille = 0
0x
envoie : id = 5607, taille = 23
0x001557476456496C535378547450354E65545048623343
envoie : id = 250, taille = 0
0x
envoie : id = 890, taille = 2
0x0070
reception id = 780, taille = 28
0x5F51040000000062750A000700070007000000005F1D060001004081
reception id = 6237, taille = 2
0x5F51
-------> 6237 Non implémenté <-------
reception id = 6265, taille = 1
0x5F
-------> 6265 Non implémenté <-------
reception id = 6301, taille = 10
0x5F51040000000062750A
-------> 6301 Non implémenté <-------
reception id = 6275, taille = 4
0x5F510400
-------> 6275 Non implémenté <-------
reception id = 4002, taille = 2
0x3E89
-------> 4002 Non implémenté <-------
reception id = 176, taille = 0
0x
-------> 176 Non implémenté <-------
reception id = 5674, taille = 2
0x58A9
-------> 5674 Non implémenté <-------
reception id = 176, taille = 0
0x
-------> 176 Non implémenté <-------
reception id = 176, taille = 0
0x
-------> 176 Non implémenté <-------
reception id = 201, taille = 0
0x
-------> 201 Non implémenté <-------
reception id = 200, taille = 1
0x02
-------> 200 Non implémenté <-------
reception id = 500, taille = 528
0x02C002C003240321010107D2021040A8EC000000000040A5E0000000000040B2C000000000000000001800000014000000010000000000004093E90000000001F4000000004B0000004B27102710000600030000000000000000006400000000000000060000000000000003000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000A00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-------> 500 Non implémenté <-------
reception id = 5684, taille = 1
0x02
-------> 5684 Non implémenté <-------
reception id = 220, taille = 4
0x02C002C0
envoie : id = 225, taille = 0
0x
reception id = 175, taille = 6
0x02C002C00324
-------> 175 Non implémenté <-------
reception id = 176, taille = 0
0x
-------> 176 Non implémenté <-------
reception id = 176, taille = 0
0x
-------> 176 Non implémenté <-------
reception id = 881, taille = 290
0x0DC601220000FC73656C6C2026616D703B20627579206B616D61732C636F64652065786368616765206B616D6173206F6E207777772E646F667573626F782E636F6D2F32203130206D696E757465732064656C6976657279207777772E646F667573626F782E636F6D2F32207777772E646F667573626F782E636F6D2F32207777772E646F667573626F782E636F6D2F32207777772E646F667573626F782E636F6D2F32207777772E646F667573626F782E636F6D2F32207777772E646F667573626F782E636F6D2F32207777772E646F667573626F782E636F6D2F32207777772E646F667573626F782E636F6D2F32207777772E646F667573626F782E636F6D2F324ECA988B000861386366667937620042AF26000B4B696E67616E2D54636879
[19:29:29] Kingan-Tchy : sell &amp; buy kamas,code exchage kamas on www.dofusbox.com/2 10 minutes delivery www.dofusbox.com/2 www.dofusbox.com/2 www.dofusbox.com/2 www.dofusbox.com/2 www.dofusbox.com/2 www.dofusbox.com/2 www.dofusbox.com/2 www.dofusbox.com/2 www.dofusbox.com/2
reception id = 226, taille = 2346
0x038A092A005F00000913000001006F00000023E700010006AD8C0012756E656A6F6C696570616E64616C65747465011200150024003F05DD00010006057D057E00EF007701CE034F00050517000002FFFFFF040C000001E19B3903490000000100A00000003C01C702000A426963652D4D6F6E6F6B009D0000000000000000000000000800000000000000000000003F05F8002400388C21027F0000000301FFEBCD0232CD320332CD320001007800010200000200040028047004610379000505000000020000000400000001DFDCDC030000000001008C0000003C018001000944656174682D6579650099000000000000000000000000080000000000000037CB0010556C74696D65207075697373616E6365005A00000000001100ABABAC010000000000388CAD0024004262050001000400780107008F034700050561000002444546044A4A4C01EBDEC0034E4E50000100A000010100010B000000000001005A0000003C018B040008536F2D6472756E6B00990000000000000000000000000800000000000000881A000A4C657320547972616E73000800B90A03000A0000000000000000000042622E00240041AE6B027F000000030132CD3202FF8C0003FF8C00000100780001020000020001059E000505E8E4D302DED42104FFFFFF01FFC36703F23DD4000100910000003C01480100084F7068656C696565009900000000000000000000000008000000000000000538001C4C61206775696C64652064657320646D6F6E7320626F7566746F7573005D00E90D1800030000000001000100000041AECF00240042AE1000010004006E00F2007C01CE000505FFFFFF0200000004FF131301FFFFFF03000000000100910000003C01C302000A536861646F77732D7864009D00000000000000000000000008000000000000000000000042AE1B00240041A2400001000500510483046F01CE027F0005056FFF4602FFFFFF0455FF5801F5B95F03FFFFFF0001008C00010100010B000000000001005A0000003C021D010006536569696E61009D00000000000000000000000008000000000000000000000041A2940024003EA14100010004001E012C00C20525000505FBFBFF02FFFFCE04C2020F01F3BC5E030521CB000100780001010000C5000000000001004B0000003C0126030008426F756C6F6F2D6C009900000000000000000000000008000000000000008358000B466573747927726964657A00330024E51B000F005189440100000000003EA1E50024003E66DD00010001006E0005051D5EE402FFFFFF04147AEB01FCCE5003FFFFFF000100910000003C0135050006426F756C6F6F009900000000000000000000000008000000000000008358000B466573747927726964657A00330024E51B000F005189440100000000003E675E00240033809700010003005100F0009A0005052B0000023A0000042E0000012B0000030C00000001008C00010100010B000000000001005A0000003C0006010008506F692D6E6F69720099000000000000000000000000080000000000000088690006546170696F6E003A00FFFFFF000100E400000000000000003380EC00240039DF5400010005005A00E400770043024E000505E40007020000000400000001FFC867030000000001008C0000003C019A010007506F757269756D009900000000000000000000000008000000000000008178001154686520426C6F6F642057617272696F72006800E20000000B00FFFFFF02000100000039DF81002400417E2F00010003005004E4041A000505FE1A0D02F200010400000001FFD27C030000000001008C0000003C00DE03000756656C76696361009D000000000000000000000000080000000000020000000000417E4400240042AF3E00010001005A000505852A440268120704F38E5601FBD0890331DF790001008C0000003C013900000A41726D65742D50696C6C009D00000000000000000000000008000000000000000000000042AF4300240042AF2A00010001005A00050528E80902CE91730492A7B5010D006F037F40D10001008C0000003C000301000A496E6E612D586F6C6578009D00000000000000000000000008000000000000000000000042AF2F00240042AF2600010001005A0005055CC6D8022267100431438E01F83ABC039A19C70001008C0000003C000801000B4B696E67616E2D54636879009D00000000000000000000000008000000000000000000000042AF2B0024003EBA2C027F0000000301000000020DB4B4031020820001007800010200000200040029011F00AD0381000505102082027252C3040DB4B4019A9A9A030000000001009B0000003C0148010009426C61636B652D787300990000000000000000000000000800000000000000866F000857616C7465726961006400FFFFFF000F001970DC0200010000003EBAC800240042910A000100010051000505DC3A1202EB731304DC3A1201F5B95F03FFFFE10001008C0000003C0148010007506F756C6F7561009D00000000000000000000000008000000000000000000000042910B002400421F2300010001005A000505A838DC028884630494D90A018FA73603C89F660001008C0000003C00070100054F70616C69009D000000000000000000000000080000000000000000000000421F29002400429E3700010004002800EF007704110005057C3F9002773C88048242980100000003793E8D0001008C0000003C000602000450767065009D000000000000000000000000080000000000000000000000429E420024004093E400010001005A000505FA950F02E1710E0459331001FFC867035864000001008C0000003C015201000841772D5A65616F6C009D0000000000000000000000000800000000000000000000004093E900240042AFFB00010001059D00050552EC0C02FFFFFF040C000001FFC3670352EC0C000100960000003C01C201000A4461726B2D6561727468009D00000000000000000000000008000000000000000000000042AFFC009CFFFFFFFF00010005005004E4044104870035000505FFFFFF0200000004FFFFFF01FFD27C030000000001008C0000003C00C601021900000000040006AC6CFFFFFFFF000100DB000000B800007A460000000004A8FFFFFFFF000100DB000000B800007A47000000069F3500000010000200DB000000720000AD5600DB0000002C0000AD5700000006AD8CFFFFFFFF000100DB00000054000112B500000000
-------> 226 Non implémenté <-------
reception id = 5734, taille = 35
0x038A092A005F00000913000001006F00000023E700010006AD8C0012756E656A6F6C69
-------> 5734 Non implémenté <-------
reception id = 176, taille = 0
0x
-------> 176 Non implémenté <-------
reception id = 881, taille = 281
0x0DC601190000F473656C6C2026616D703B20627579206B616D61732C636F64652065786368616765206B616D6173206F6E207777772E68696B616D61732E636F6D2F66203130206D696E757465732067697665206B616D6173207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F664ECA988D0008743079786D3631680042AF2A000A496E6E612D586F6C6578
[19:29:34] Inna-Xolex : sell &amp; buy kamas,code exchage kamas on www.hikamas.com/f 10 minutes give kamas www.hikamas.com/f www.hikamas.com/f www.hikamas.com/f www.hikamas.com/f www.hikamas.com/f www.hikamas.com/f www.hikamas.com/f www.hikamas.com/f www.hikamas.com/f
reception id = 951, taille = 36
0x0DC601190000F473656C6C2026616D703B20627579206B616D61732C636F646520657863
reception id = 881, taille = 199
0x0DC601190000F473656C6C2026616D703B20627579206B616D61732C636F64652065786368616765206B616D6173206F6E207777772E68696B616D61732E636F6D2F66203130206D696E757465732067697665206B616D6173207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F662077
[19:29:35] Armet-Pill : sell &amp; buy kamas ,code exchage kamas on www.dofusunion.com www.dofusunion.com www.dofusunion.com www.dofusunion.com www.dofusunion.com www.dofusunion.com lADN
reception id = 5632, taille = 143
0x0DC601190000F473656C6C2026616D703B20627579206B616D61732C636F64652065786368616765206B616D6173206F6E207777772E68696B616D61732E636F6D2F66203130206D696E757465732067697665206B616D6173207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66207777772E68696B616D61732E636F6D2F66
reception id = 881, taille = 55
0x0DC601190000F473656C6C2026616D703B20627579206B616D61732C636F64652065786368616765206B616D6173206F6E207777772E68
[19:29:35] Pvpe : quelqu un est alchimiste
reception id = 251, taille = 4
0x03ED0400
 
A

Anonymous

Invité
#4
Erreur trouvé, j'ai supprimé un case sans faire exprès^^
Merci résolu
 

ToOnS

Membre Actif
Inscrit
8 Avril 2009
Messages
974
Reactions
0
#5
oh mais tu viens encore de te faire griller :roll: :
envoie : id = 4, taille = 371
0x020406CAB70200000D616C6C6C6C6973746572303031015869645A38776275382B794A64616647753751712B6473776B393378794862624C7173336558444C7673592B624B49416C5931414F7151464334364A702B54595869347A3872634533636C55376C43634875596F53366359347A61553243784B452B437039372B71315A664B59584E67334E374E38714F44417763504A76615067444E52394D4955416C345A796531733137536E2F77324E496961393575365A3754476E5359732F435254537457596B6F4C5A475542664F4C6D4831636A55696330446C7570615170774A644B5658587277774B596B2F703057645253517A5235636B6D4442617844524E697270614B47504F6C6454524E6743345A7355774C5958366F69546F397473744969346730677530656C53514479595A36525A55395A4D61567942326D486C36552F746A37737951714F70786E4E325556526445364754357050694D317372774F327845334F6759316144513D3D000001

viewtopic.php?f=53&t=696
envoie : id = 4, taille = 59
0x020405C6E00100000D616C6C6C6C697374657230303100203638623933303865636266363765656562626336633133643062363930663936000001

tu as le meme identifiant que BlueDream :lol:
 
Dernière édition par un modérateur:
A

Anonymous

Invité
#6
Oh Zut dora !! ... Un nouveau compte bannie ....
 
A

Anonymous

Invité
#9
Bah il lui fallait juste une preuve pour prouver que c'est lui ^^ ! On le savait tousses je pense ;p !
Sinon Alex go => VPN => Créer un autre compte !
 
A

Anonymous

Invité
#12
J'aimerai surtout me faire pardonner...

ToOns tu avais prevu ton coup, c'est pas du jeu :D
 
Inscrit
29 Septembre 2011
Messages
393
Reactions
3
#13
Pardonner sa va être dur même très dur surtout le coup de la candidature.
Ps: même si je te parle sur skype etc pour le coup de la candidature sa va être dur d'être pardonner allez bonne chance.
je revient sur un de tes message avec alexandre****

BlueDream a dit:
Qu'est que tu en sais que je leech un code sans le comprendre. Je suis tres jeune, j'ai du mal a programmer je ne comprend pas tout mais je suis passione et j'essaye.
Ne faisons pas de conflis sur se sujet.
l'âge na rien avoir avec la programmation je penser sa au début puis tous conte fait en réfléchissant et a force d'entendre des gens me dire l'age ne fait pas de différence entre deux programmer mais comment tu comprend et si t'essaye de comprendre .
 
Dernière édition par un modérateur:
Haut Bas