Help in Packet 704C

11/04/2018 01:22 hancook1st#1
i need to use speed scroll but when try get dc

PHP Code:
                    Packet packet = new Packet(0x704c);
                    
packet.WriteUInt8(slot);
                    
packet.WriteUInt8(236);
                    
packet.WriteUInt8(14);
                    
Send(packet); 
11/04/2018 07:04 DaxterSoul#2
0x704C has to be encrypted.
11/04/2018 12:08 #HB#3
As Daxter said,
Code:
Packet packet = new Packet(0x704c, true);
11/04/2018 22:19 hancook1st#4
work now thanks