How to select a mob, becouse every mob have deferent id ( idk how to say it )
I find in iBot Data some informations and idk can i use it :
"8D070000","MOB_CH_MANGNYANG","Mangyang",54
well
to select mob
you need to parse group/single spawn to get the object ip which you'll use to select the mob.
and thats not easy.
group spawn opcode : 0x3019
single spawn : 0x3015
(esro)
dunno about isro atm ..
+ @zerapains post
byte (uint8) - 00
word (uint16) - 00 00
dword ( uint32 ) - 00 00 00 00
qword (uint64) im not sure also if its "q" - 00 00 00 00 00 00 00 00
@dexee
to select mobs, you should parse the spawn packets which server sends you and make list of them with their ids. And select one from list , ( calculating the x,y first )
@dexee
to select mobs, you should parse the spawn packets which server sends you and make list of them with their ids. And select one from list , ( calculating the x,y first )
I cant make it to recive the packet ..
I was trying with TCPListen("127.0.0.1",15778)
and then :
Code:
$accept = TCPAccept($listen)
If $accept = -1 Then
ToolTip($accept & " Not Connected")
Sleep(1000)
Exit
EndIf
try TCPRecv or TCPReceive idk how it's called in autoit. You only connect to the proxy and the proxy sends all the packets C -> S and S -> C to your autoit program.
try TCPRecv or TCPReceive idk how it's called in autoit. You only connect to the proxy and the proxy sends all the packets C -> S and S -> C to your autoit program.
No there isn't you have to do that by yourself so you have to read the packet.
the first 6 bytes are always the same format which is:
WORD Size
WORD Opcode
BYTE Security01
BYTE Security02
Everything after this is the data well the Size which is the first 2 bytes tells you how long the actual data is. What you have to do now is to go ingame with edxSilkroadLoader and use the analyzer so you get parsed packets and implement those in your program.
This takes a lot of time cause there are a lot of bytes which are 0 and if they change to 1 there is some extra data but overall it's very time consuming and the spawn packets aren't easy to start with cause I assume you are a beginner at the whole packet thing.
Sending Packets 03/26/2019 - PW Hacks, Bots, Cheats, Exploits - 432 Replies As per Smurfin's request:
reposting of what I posted in the Prophet's bot thread.
some example of functions you could use with sending packets (AutoIt code, see link below for C#):
;////Code for sending packets.
Help with sending packets in autoit 08/16/2010 - AutoIt - 1 Replies ive been lookin around different sites for ways to send packets to the game server. the only examples i see is to create a server and a client which i dont need, i think. well to the point now, can someone lead me in a direction or tell me how to send packets to a game? also if i send packets then that means i dont need the game to be active, correct? Because in autoit when u use keys u need to have the game active, and control send does not work. ty
Sending Packets !!! 09/07/2008 - Kal Online - 14 Replies now i know how to sniff / analyse packets ... but what then ? :)
how can i send packets ?? to pimp or mix weapon for example
i just need the way to send , and then i can depend on myself :D
Scamming by sending packets??? 04/15/2006 - Conquer Online 2 - 1 Replies Well my friend and i came up with the idea to send packets to the server to show a certain item in the trade window. We want to use this as a type of scam. I didnt see this in any other threads and was wondering if anyone knew if this is possible and if they could point use in the right direction. My friend was pretty good with packets in CO 1.0 but we arent really sure to go about doing it. If anyone one could please lend a helping hand?
P.S.- Before I get flamed for this because i know i...
Sending packets 10/12/2005 - Conquer Online 2 - 10 Replies I've a question. Is it possible to send 1 packet multiple times at the exact same time?