- Beranda
- Programmer Forum
[Open Source + Tutorial]Basic Hacking Game
...
TS
kuya.gaol
[Open Source + Tutorial]Basic Hacking Game
Quote:
Quote:
NEWS & Update:
#1. Update Turoial hack save game By agan yeyek
#2. Coding Freeze Value By agan postsembarangan
#1. Update Turoial hack save game By agan yeyek
#2. Coding Freeze Value By agan postsembarangan
Quote:
Quote:
![[Open Source + Tutorial]Basic Hacking Game](https://dl.kaskus.id/img717.imageshack.us/img717/263/signalattention.png)
1.ts tidak bertanggung jawab apabila terjadi pelanggaran hukum atas tutorial ini!!!
2.Gunakan kalimat yang dapat dimengerti dan sopan
3.No junk
!!!4.ts tidak menerima pm dan vm, jika kesulitan silahkan posting di thread ini!!!
5.Tidak menerima request Base cheat, Jika ada kesulitan silahkan di bahas di Thread
6.Harap Cek Index dulu sebelum bertanya (membaca lah sebelum bertanya

7.Selalu patuhi General Rules Programmer
Quote:
Support @
Review Project Tutorial Mw2
Spoiler for Comingsoon:
Polling
0 suara
Setuju tdk saya buat tut memory Hacking?
0
15.4K
Kutip
166
Balasan
Komentar yang asik ya
Mari bergabung, dapatkan informasi dan teman baru!
Programmer Forum
20.2KThread•4.9KAnggota
Tampilkan semua post
TS
kuya.gaol
#113
Call of Duty 6 Modern Warfare 2 Coding & Source
AutoQuickSope, internal crosshair, aimassist
Quote:
Feutures:
My version of autoquickscope.
Aim assist
internal crosshair
on/off functions + spam if on/off.
Source :
My version of autoquickscope.
Aim assist
internal crosshair
on/off functions + spam if on/off.
Source :
Quote:
Send to Console
Main
PHP Code:
void (__cdecl *SendCommandToConsole)(int a1,int a2,char *cvar)=(void (__cdecl *)(int,int,char *))0x0446DD0;//for alteriwnet thank you Alexkak92
Main
PHP Code:
DWORD WINAPI Qs(LPVOID)
{//start of main qs
/*Collor codes
^1 - RED
^2 - GREEN
^3 - YELLOW
^4 - BLUE
^5 - CYAN
^6 - PINK
^7 - WHITE
^8 - DEFAULT MAP COLOR
^9 - GREY OR DEFAULT MAP COLOR
^0 - BLACK
*/
bool OnOff = false;//false == off, true == on
bool AimCross = false;//same as above
byte IsInGame;//if higher then zero you are in game
for(;<img src="https://s.kaskus.id/images/smilies/sumbangan/13.gif" data-sceditor-emoticon=";)" border="0" alt="emoticon-Wink" title="Wink"/>
{//start of for
ReadProcessMemory(mw2, (LPVOID)0x007F4988, &IsInGame, (DWORD)sizeof(IsInGame), NULL);//reads to IsInGame
if(GetAsyncKeyState(VK_F5))//on off for qs
{//f5
OnOff =! OnOff;
Sleep(300);
if(OnOff == true)
{
SendCommandToConsole(1,1, "say_irc ^1A^2Q^4S^0/^7O^7N");
}
if(OnOff == false)
{
SendCommandToConsole(1,1, "say_irc ^1A^2Q^4S^0/^7O^7F^7F");
}
}//end of f5
if(GetAsyncKeyState(VK_F6))//on off for aimassist + crosshair
{//aim+Cross on off
AimCross =! AimCross;
Sleep(300);
if(AimCross == true)
{
SendCommandToConsole(1,1, "say_irc Aim/Cross/ON");
*(byte*)0x0646F098 = 1;
*(float*)0x0646F188 = 1.2;
*(float*)0x0646F138 = 12;
*(float*)0x0646EA58 = 100;
*(float*)0x0646EE68 = 1.2;
*(float*)0x0646EEB8 = 12;
*(float*)0x0646EA08 = 100;
*(BYTE*)0x0646EE18 = 1;
}
if(AimCross == false)
{
SendCommandToConsole(1,1, "say_irc Aim/Cross/OFF");
*(byte*)0x0646F098 = 0;
*(float*)0x0646F188 = 1.2;
*(float*)0x0646F138 = 12;
*(float*)0x0646EA58 = 100;
*(float*)0x0646EE68 = 1.2;
*(float*)0x0646EEB8 = 12;
*(float*)0x0646EA08 = 100;
*(BYTE*)0x0646EE18 = 0;
}
}//end of aim+Corss on off
if(OnOff == true)//if OnOff is even
{//start of on off
if(IsInGame > 0)//if you are spawned
{//start of is in game
if(GetAsyncKeyState(VK_RBUTTON))
{//start of qs
*(byte*)0x00B32788 = 1;//ads == true
Sleep(260);
mouse_event(MOUSEEVENTF_LEFTDOWN,0,0,0,0);//leftclick down
mouse_event(MOUSEEVENTF_LEFTUP, 0,0,0,0);//lefclick down
Sleep(20);
*(byte*)0x00B32788 = 0;//ads == false
Sleep(200);
}//end of qs
}//end of is in game
}//end of onoff
}//end of for
return 1;
}//end of mainqs
Credit : Hej @ uc-forum
0
Kutip
Balas