Register for your free account! | Forgot your password?

You last visited: Today at 08:40

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[HELP] send packet

Discussion on [HELP] send packet within the SRO Coding Corner forum part of the Silkroad Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2014
Posts: 50
Received Thanks: 30
Question [HELP] send packet

hello elitepvpers.
i try to send reverse scroll packet but i can't acc get dc

PHP Code:

[-> S][704C]
12                                                ................  invitry slot
ED 19                                             
................    i dont konw :D
07                                                
................    i dont know :P
1A 00 00 00                                       
................    i think telport id :D

[-> S][34B6]

[
-> S][3012]

[
-> S][750E
i send
PHP Code:
            Packet a = new Packet(0x704C);
            
a.WriteInt8(0x12);
            
a.WriteInt8(0xED);
            
a.WriteInt8(0x19);
            
a.WriteInt8(0x07);
            
a.WriteInt8(0x1A);
            
a.WriteInt8(0x00);
            
a.WriteInt8(0x00);
            
a.WriteInt8(0x00);
            
selectedClient.Agent.Send(a);
            
Packet b = new Packet(0x34B6);
            
selectedClient.Agent.Send(b);
            
Packet c = new Packet(0x3012);
            
selectedClient.Agent.Send(c);
            
Packet f = new Packet(0x750E);
            
selectedClient.Agent.Send(f); 
PantuSRO is offline  
Old 07/30/2014, 01:14   #2
 
elite*gold: 150
Join Date: Oct 2007
Posts: 118
Received Thanks: 226
Hi PantuSRO,

you have to send 0x704c but encrypted...

like:

Code:
Packet r = new Packet(0x704c, true);
r.WriteUInt8(13); //position of Item
r.WriteUInt8(237);
r.WriteUInt8(25);
r.WriteUInt8(7);
r.WriteUInt32(7); //ReversePoint Index
Agent.Send(r);
After you use a return scroll you must send a packet to spawn
Code:
if (packet.Opcode == 0x34B5)
{
  Packet p = new Packet(0x34b6);
  Agent.Send(p);
}
Delirus is offline  
Old 09/12/2014, 15:15   #3
 
Isoline*'s Avatar
 
elite*gold: 0
Join Date: May 2006
Posts: 667
Received Thanks: 348
Quote:
Originally Posted by Kekskind1992 View Post
Hi PantuSRO,

you have to send 0x704c but encrypted...

like:

Code:
Packet r = new Packet(0x704c, true);
r.WriteUInt8(13); //position of Item
r.WriteUInt8(237);
r.WriteUInt8(25);
r.WriteUInt8(7);
r.WriteUInt32(7); //ReversePoint Index
Agent.Send(r);
After you use a return scroll you must send a packet to spawn
Code:
if (packet.Opcode == 0x34B5)
{
  Packet p = new Packet(0x34b6);
  Agent.Send(p);
}
HEY MAN CAN YOU ELLABORATE?
im trying to send movetouser packet then recalluser but it doesnt work this is what i send:


Packet movetouser = new Packet(0x7010, true);
movetouser.WriteUInt16(8);
movetouser.WriteAscii("test");
Agent.Send(movetouser);
Log("move to user packet sent " + System.DateTime.Now);

if (movetouser.Opcode == 0x7010)
{
Packet p = new Packet(0x34b6);
Agent.Send(p);
}
Thread.Sleep(1000);


Packet recalluser = new Packet(0x7010);
recalluser.WriteUInt16(17);
recalluser.WriteAscii("test");
Agent.Send(recalluser);
Isoline* is offline  
Old 09/20/2014, 12:58   #4
 
Muhab*'s Avatar
 
elite*gold: 0
Join Date: Feb 2014
Posts: 885
Received Thanks: 1,419
Quote:
Originally Posted by eitai123 View Post
HEY MAN CAN YOU ELLABORATE?
im trying to send movetouser packet then recalluser but it doesnt work this is what i send:


Packet movetouser = new Packet(0x7010, true);
movetouser.WriteUInt16(8);
movetouser.WriteAscii("test");
Agent.Send(movetouser);
Log("move to user packet sent " + System.DateTime.Now);

if (movetouser.Opcode == 0x7010)
{
Packet p = new Packet(0x34b6);
Agent.Send(p);
}
Thread.Sleep(1000);


Packet recalluser = new Packet(0x7010);
recalluser.WriteUInt16(17);
recalluser.WriteAscii("test");
Agent.Send(recalluser);
you don't have to encrypt movetouser packet.
Muhab* is offline  
Reply


Similar Threads Similar Threads
Play sound via Packet Send?? [Question String Packet]
07/14/2010 - CO2 Private Server - 5 Replies
Yow im trying to figure out why i cant play music with the string packet What im doin is; MyChar.Client.SendPacket(Game.Packet.String(MyCha r.UID, 20, Splitter)); My Packet is: public byte String(long CharId, byte Type, string name)



All times are GMT +1. The time now is 08:40.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.