Hey all,
last hour I tryt all to find the Attack Speed.
Here is what Ive got:
The Attack speed is hardly protected , like all stuff that could be hacked.
It changes every secon beetwen 100 , and if you change it will fighting you will have a fast attack but your game crash after 20 secs.
I think we have to figure out the algorythm.
Another way would be to code a Sniffer! And then find out the Cryption make a table of it and find the XOR Key. When this is done we can easy hack Skills/Teleports/Maybe Enchanting/Maybe CardGame/Attack Speed.
C++ Snippet [ JUST RECV PACKETS / NOT DE/EN-CRYPT! ]
Why do I code a sniffer?
cause WPE and rpE cant find packets, so I inject a sniffer that will work 100%
Also found out that you can wear Lv100 items when you are Lv1.. but only for 1 sec..
now you think that sucks, no it doesnt... we could code a dll that switch fast beetwen 2 weapons, try the weapon switch its pretty fast .. cause the dmg the lv100 wpn has will be done in that 1 sec ^^
last hour I tryt all to find the Attack Speed.
Here is what Ive got:
The Attack speed is hardly protected , like all stuff that could be hacked.
It changes every secon beetwen 100 , and if you change it will fighting you will have a fast attack but your game crash after 20 secs.
I think we have to figure out the algorythm.
Another way would be to code a Sniffer! And then find out the Cryption make a table of it and find the XOR Key. When this is done we can easy hack Skills/Teleports/Maybe Enchanting/Maybe CardGame/Attack Speed.
C++ Snippet [ JUST RECV PACKETS / NOT DE/EN-CRYPT! ]
Code:
int WINAPI MyRecv(SOCKET s, const char* buf, int len, int flags)
{
Sleep(100);
DWORD sub_52F060 = 0x52F060;
printf("RECV: 0x%0.2x LÖL: %snSize: %xn",buf,buf,len);
_asm
{
mov storeECX, ecx
}
_asm
{
mov edx, flags
push edx ; flags
mov edx, len
push edx ; len
mov edx, buf
push edx ; buf
mov edx, s
push edx ; s
mov ecx, storeECX
call sub_52F060 ; Call Procedure
}
}
void RECV()
{
Sleep(2000);
Intercept(INST_CALL,0x0052CB81,(DWORD)MyRecv,5);
}
cause WPE and rpE cant find packets, so I inject a sniffer that will work 100%
Also found out that you can wear Lv100 items when you are Lv1.. but only for 1 sec..
now you think that sucks, no it doesnt... we could code a dll that switch fast beetwen 2 weapons, try the weapon switch its pretty fast .. cause the dmg the lv100 wpn has will be done in that 1 sec ^^