I can run hack without crash, for example read chat, get mob appear,move, disappear, killed code, player appear etc.
Crash occurs while hack is using SendPacket() function, after some time.
For example when I move, attack, use skill, meds etc.
Even this code is crashing, after 20 minutes or about 1 hour from start.
It walks -4400 then +4400 in X axis.
PHP Code:
if (strcmp ( command , "movextest" ) == 0)
{
while (true)
{
for (int i=0; i<100; i++)
{
SendPacket(0x15,"bbb",-44,0,0);
Sleep(100);
}
printf("-44 done\n");
for (int i=0; i<100; i++)
{
SendPacket(0x15,"bbb",44,0,0);
Sleep(100);
}
printf("+44 done\n");
Sleep(5);
}
}