hey folks,
how to write a party invite hack that mean's that i am in the party without asking etc.
the byte's are
Code:
0x2c: == CPlayer::AskParty
0x2d: == CPlayer::OnAskParty
0x2e: == CGuild
0x2f: == CPlayer::LeaveParty
0x30: == CPlayer::ExileParty ( 30 - dwPlayerID -> kick player)
other think, how does the auto drop works? O.ô im using this one but dont work =/
Code:
DWORD iDropItem;
int iDropA;
if (strcmp(input,"drophack") == 0)
{
cout << "Please Enter how much item's you like to drop : ";
cin >> iDropA;
cout << "Please Enter the Item ID to Drop : ";
cin >> iDropItem;
for(i = 0; i < iDropA; i++)
{
Sleep(25);
SendDetour(0x1a,"bb",iDropItem,1);
}
}