First problem:i try to use this packet(0x3026) to get
Charname&Message in Stall Chat
this is Full Packet:
this C# Corner:
But i faced a problem when i got the Charname/Messsage and try to send any notice or anything related to Agent i Got this error
[Only registered and activated users can see links. Click Here To Register...]
NOTE:this packet works fine i got the charname/Message but behind that i faced (SilkroadSecurityAPI) Packet Problem
Second problem:when i try to use this packet(0x30B8) to get
Charname of the Stall Creator behind me
Full Packet:
C# Corner:
but i got in my listbox something like a (dot)
[Only registered and activated users can see links. Click Here To Register...]
hope can any one help me
Charname&Message in Stall Chat
this is Full Packet:
Code:
[S -> C][3026] 09 ................ 09 00 ................ 41 62 64 65 6C 61 7A 69 7A BOT....... 03 00 ................ 68 65 79 testchat.............
Code:
if (current.Opcode == 0x3026)
{
string Charname = current.ReadAscii();
string Message = current.ReadAscii();
try
{
Globals.MainWindow.listBox1.Items.Add(Charname);
Globals.MainWindow.listBox1.Items.Add(Message);
}
catch
{
}
}
[Only registered and activated users can see links. Click Here To Register...]
NOTE:this packet works fine i got the charname/Message but behind that i faced (SilkroadSecurityAPI) Packet Problem
Second problem:when i try to use this packet(0x30B8) to get
Charname of the Stall Creator behind me
Full Packet:
Code:
[S -> C][30B8] 66 53 07 00 fS.............. 0D 00 ................ 5B 66 64 5D 27 73 20 73 74 61 6C 6C 2E [BOT]'s.stall.... 07 0F 00 00 ................
C# Corner:
Code:
if (current.Opcode == 0x30B8)
{
string charname = current.ReadAscii();
llistBox1.Items.Add(charname);
}
[Only registered and activated users can see links. Click Here To Register...]
hope can any one help me