Hello dudes,
trough a Habbo vulnerabillity I found a big exploit.
This is the first forum where I release the source code.
compile this code @ a c++ editor,
login with your normal habbo data and get the morph script code!
PHP
bool bAntiMorph = false;void AntiMorph(){ while (bAntiMorph == true) { WriteToPointer(CharAddy, MorphOffset, 0); Sleep(1); }}
#pragma region Morphint MorphID;
bool bmorph = false;
void morph() { while (bmorph) { WriteToPointer(CharAddy, MorphOffset, MorphID); }}
Void Form1::checkBox5_CheckedChanged(System::Object^ sender, System::EventArgs^ e) { if (checkBox5->Checked == true) { MorphID = Convert::ToInt32(textBox1->Text); bmorph = true; NewThread(morph); } else { bmorph = false; TerminateThread(morph, 0); WriteToPointer(CharAddy, MorphOffset, 0); }}Void Form1::checkBox6_CheckedChanged(System::Object^ sender, System::EventArgs^ e) { if (checkBox6->Checked == true) { checkBox5->Checked = false; bAntiMorph = true; NewThread(AntiMorph); } else { bAntiMorph = false; TerminateThread(AntiMorph, 0); Sleep(1); } }
bool bMorph1 = false;bool bMorph2 = false;
void Morph1() { while (bMorph1 == true) { WriteToPointer(CharAddy, MorphOffset, 9); Sleep(1); }}void Morph2() { while (bMorph2 == true) { WriteToPointer(CharAddy, MorphOffset, 22); }}
Void Form1::checkBox7_CheckedChanged(System::Object^ sender, System::EventArgs^ e) { if (checkBox7->Checked == true) { bMorph1 = true; NewThread(Morph1); } else { bMorph1 = false; TerminateThread(Morph1, 0); WriteToPointer(CharAddy, MorphOffset, 0); Sleep(100); } }Void Form1::checkBox8_CheckedChanged(System::Object^ sender, System::EventArgs^ e) { if (checkBox8->Checked == true) { bMorph2 = true; NewThread(Morph2); } else { bMorph2 = false; TerminateThread(Morph2, 0); WriteToPointer(CharAddy, MorphOffset, 0); Sleep(100); } }
#pragma endregion Morph
Alles anzeigen
greetz
mako ~ habbo-script.to