Could this possibly be the new WoW alliance / horde translator?
Could this possibly be the new WoW alliance / horde translator?
This is really good
Hm, DrWeb: infected Win32.HLLW.Autoruner.6554
Im going to sound like a complete noob by posting this but, what is a packet and what use does it serve in helping you develop a better server?
Packets = data sent between the client and server, theres CMSG(Client->Server) and SMSG(Server->Client). They both have a different header and are both encrypted. You can intercept them by:
-Hooking Winsock
-Using a proxy to redirect the data
-Using the method UnknOwned used(those librarys).
The data is generally output in hex and you can sort of think as packets as a bit array made up of different types(uint32, uint64. uint16, uint8, float, double, etc).
Basically, having packets decrypted and implemented into your emulator is what makes it function. Movement, Objects, graveyards, weather, combat, guilds, etc everything really(Although theres some more complicated things to do within the sub sometimes). I left some stuff out but thats basically it(Cypher or someone can correct/add to this).