[Help] How i type string as Ascii

06/04/2015 14:04 ramy_11_1#1
hi epvp ,
i want to know how i can type an encrypted string as Ascii when i send packets.

for example :

Original opcode is :

Screen shot :


#Fixed
Here is the solution :

#Close
06/04/2015 14:08 vorosmihaly#2
to be honest with you,the problem is that you're sending incorrect length of the string.. 0x0A --> 10
[Ramy]'s Stall is 14 characters,so it should be 0x0E ;) hope that solves the problem ^_^
edit: I'm also not sure if that packet is supposed to be encrypted :D
06/04/2015 14:15 Bizzyyyyy#3
Packet packet = new Packet(0x70B1, true);
packet.WriteAscii("[Ramy]'s Stall");
Agent.Send(packet);

0x0A = length of your string.
You dont need to write it as an integer you have to start your writeascii here already.
The code above should work
06/06/2015 13:37 Nectix#4
#closed