
Originally Posted by
Spark
o.o What you gonna do lol?
ok from this code that Eckhart posted :
//Mob Disarm
[Enable]
006683BE:
db EB 10
[Disable]
006683BE:
db 75 10
i got (outta what i could remeber waht goes where:
//Mob Miss
DWORD PICT = 0x;
BYTE enablePICT[] = {0xdb EB 10};
BYTE disablePICT[] = {0xdb 75 10};
void Form1::checkBox_CheckedChanged(System::Object^ sender, System::EventArgs^ e)
{
if(this->checkBox->Checked)
{
WriteMemory(,,0xdb EB 10);
}
else
{
WriteMemory(,,0xdb 75 10);
}
}
so where does everything else go? :O (im too lazy to go back to the other thread

p.s. i only put oin enable and disable codes lol