Quote:
Originally Posted by adriaan99
I have tried some of those commands with the packetlogger, but many of them don't work for me, or only work if you are in that same act.
I haven't understood how to send packets to attack faster for example. I would like to know what command to use to be able to tp a certain point on a map, to lure in a7 or similar things. Thank you very much!!
|
Maybe they fixed some of the script commands, the intention of this commands is to Teleport you for some Quests, but you can send them even then you have the quest already done or not started jet and they will still teleport you. Seems like they at least added some conditions for the Teleport recently.
For Attack Speed:
Well you can manipulate the client to send the "u_s"-Packets faster, ignoring the virtualization time, or you send the "u_s" Packet yourself.
An easy way to do so is to not use the hotkeys of the spellbar, but define own hotkeys with AutoiT and connect it to the packet logger.
Like, you set a hotkey to your "Nummblock 1"-Key in autoit to send "u_s 0 3 X" for the standard attack. You can hit the hotkey faster then the client would send the "u_s"-packed. Doing this you can attack faster then normal (hitting the hotkeys to fast will result in an disconnect).
Example:
HotKeySet("{Numpad1}", "attack")
Func attack()
PacketLogger_SendPacket($Socket, "u_s 0 3 " & $currentTarget)
EndFunc
(you get the currentTarget ID from the "ncif" package)
You can calculate the time you need to wait between each "u_s"-Packed, but its complicated and only needed if you want to maximize the damage of an Bot, for manual usage this works fine.
For the Teleport:
Well, there is currently no public known way to teleport to a specific point of the map. But you can speedhack very fast. So fast that noone can hit you.
To do so you send the "walk" packet, as fast as you can. (the speed is limited by the processing speed of the server, seems like there is some sort of queue)
To maximize the speed you set the distance between each Walk packet as high as possible.
As far as I tested the max value between each Walking Step is hardcoded to 10 (you can maybe increase this if you use a Mount or other stuff that makes you "naturally" faster)
So if you are at the coordinates x= 0; y=0 on the map and you want to go to x=0; y=100, you send 10 walk packets with y increased by 10 (first x=0; y=10, then x=0; y=20, etc.).
You can do this to using an Autoit script, with hotkeys that sends an Walk packet with your current X or Y increased or decreased by 10.
Pressing the hotkeys fast, will navigate you though the world very fast and you will be very difficult to hit.
For an more "instant" teleport you need to prerecord the Walk packets from one specific point to another, or create an algorithm that will calculate a path to a desired point and then send the packages as calculated.
This is the only way to "teleport" that is currently public to my knowledge. You cant teleport directly, you can just speedhack to wherever you want fast.