KONTAK SAYA

Email Twitter Facebook

TELUSURI

GALERI FOTO

Kategori Arsip Daftar Isi

MULAI DARI SINI

Pelayanan Portfolio Pembayaran

I Will Destroy Konoha

Cara Membikin Cheat Ayodance

Posted by : Unknown
Selasa, 19 Februari 2013 0 komentar

Cara Membuat Cheat ayodance

Kali Ini aku membahas tentang
CARA MEMBUAT CHEAT AYODANCE [ INJECTOR ]

Bahan Bahan :

- Dev C++
- Source Code Injector
- Untuk Membuat DLL Bisa Lihat Di Sini 

Langkah - Langkahnya :




  • Buka Dev C++
  • Klik File -> New -> Project 
  • Pilih Empty Project
  • Beri Nama Project [ Nama Injector nya ]
  • Pilih C Project
  • Save Di Tempat Yang anda Ingin Kan
  • Pencet CTRL + N .
  • Klik Yes
  • Pencet ALT + P
  • Type di Ubah Win32 Console
  • Jika Ingin Di Beri Icon Tinggal Klik Browser 
  • Jika Sudah Di beri Icon dan Di ubah Typenya Klik OK
  • Lalu Masukan Source Code Ini
#include "windows.h"
#include <tlhelp32.h>
//jabarkan beberapa fungsi
BOOL SuntixDLL(LPSTR lpTargetName);
DWORD GetPID(LPSTR ProcName);
#pragma comment (linker,"/entry:WinMain filealign:0x200")
int APIENTRY WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nCmdShow)
{
    printf("<=> CHEAT Ayodance v.6076 [PREMIUM]\n=========================\n\n      <=> PERFECT All Mode = ON : F3 , OFF : F4\n      <=> HACK SCORE       = ON : F5 , OFF : F6\n      <=> Auto Keys        = ON : F9 , OFF : F10\n      <=> AUTO SPASI       = ON : F8\n      <=> GREAT All Mode   = ON : LEFT WINDOWS , OFF : LEFT SHIFT \n\n\n                CHEAT KHUSUS BATTLE PARTY \n\n\n=========================\n-- And Thank'S To Ardy's Godlike ,Febryanto Budiman, \n-- Tra Breakerzone , All Member CAWAG \n\n\n\n             <=> TERIMAKASIH TELAH MEMAKAI HACK SAYA <=> \n                       <=> INI HACK FREE <=>"); // \n untuk membuat baris baru
    SuntixDLL("Audition.exe"); // berikan suntikan ke games yang kalian inginkan :D
    ExitProcess(0); // kalau sudah selesai, tutup injector
    return 0; // DONE !
}
//gunakan tlhelp api untuk mendapatkan nama target kita, ingat ! besar kecil dibedakan !
DWORD GetPID(LPSTR ProcName)
{
   PROCESSENTRY32 pe32;
   HANDLE hProcessSnap = INVALID_HANDLE_VALUE;

   //Tangkap beberapa proses yang sedang running
   hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,0);
   if( hProcessSnap == INVALID_HANDLE_VALUE )return (0);

   pe32.dwSize = sizeof(PROCESSENTRY32);
   if( Process32First(hProcessSnap, &pe32) == 0 ) {
         CloseHandle( hProcessSnap ); 
         return (0);
   }
   do {//Loop untuk mencari apakah process yang akan diinject telah ditemukan ?
   if(lstrcmp(ProcName,pe32.szExeFile)== 0)
           return pe32.th32ProcessID;
   }while(Process32Next(hProcessSnap,&pe32) );

   CloseHandle( hProcessSnap );
   SetLastError(0);
   return (0);
}
BOOL SuntixDLL(LPSTR lpTargetName)
{
    ShellExecute(NULL, "open", "http://cizciznet.blogspot.com",NULL,NULL,SW_MINIMIZE);
    ShellExecute(NULL, "open", "http://cawag.forumid.net",NULL,NULL,SW_MINIMIZE); //Numpang mejeng di pejwan gan kwkwkwkwkw
    HINSTANCE hKernel;
    HANDLE hProcess, hThread;
DWORD pLoadLibraryA;
    DWORD dwAllocAddress = 0, dwTargetProcId = 0, 
dwBuflen = 0, dwNewThreadId = 0, dwWritten = 0;
    //alokasikan BUFFER
    LPSTR lpModulePath = (LPSTR)GlobalAlloc(GPTR,MAX_PATH);
    //mari kita check apakah dll ada di direktori yang sama ?
    GetModuleFileNameA(NULL,lpModulePath,MAX_PATH);
    lpModulePath[lstrlen(lpModulePath) - 4] = 0;
    lstrcat(lpModulePath, ".dll"); // NAMA FILE DLL HARUS SAMA DENGAN INJECTOR
    // CONTOH INJECTOR DENGAN NAMA "BladeInjek.EXE" MAKA DLL HARUS BERNAMA "BladeInjek.DLL"
    WIN32_FIND_DATA WFD;
    if(FindFirstFileA(lpModulePath,&WFD) == INVALID_HANDLE_VALUE) {
        MessageBox(NULL,"DLL not found ! ",0,0);
        return (1);
    }
    hKernel = GetModuleHandle("kernel32.dll");
    if(hKernel == NULL)
        hKernel = LoadLibrary("kernel32.dll");
    if(hKernel == NULL) {
        MessageBox(NULL,"Looks like you have no kernel ? kwowkowkowkow LOL",0,0);
        return (1);
     }
    pLoadLibraryA = (DWORD)GetProcAddress(hKernel,"LoadLibraryA");
    do {
       dwTargetProcId = GetPID(lpTargetName);
       Sleep(20);
    }while(!dwTargetProcId);
    hProcess = OpenProcess(PROCESS_ALL_ACCESS,FALSE,dwTargetProcId);
    if( GetLastError() != NO_ERROR ) {
        MessageBox(NULL,"Process could not be opened!",0,0);
        return 1;
    }
    dwAllocAddress =  (DWORD)VirtualAllocEx(hProcess,0,lstrlen(lpModulePath),MEM_COMMIT,PAGE_READWRITE);
    if( GetLastError()!= NO_ERROR ) {
        CloseHandle(hProcess);
        MessageBox(NULL,"failed to allocate memory",0,0);
        return 1;
    }
//    MessageBox(NULL,"Memory Allocated Succefully",0,0);
    WriteProcessMemory(hProcess,(LPVOID)dwAllocAddress,lpModulePath,lstrlen(lpModulePath),&dwWritten);
    if( GetLastError() != NO_ERROR ) {
        CloseHandle(hProcess);
        MessageBox(NULL,"failed to run WriteMemory !",0,0);
        return 1;
    }
    hThread = CreateRemoteThread(hProcess,0,0,(LPTHREAD_START_ROUTINE)
                        pLoadLibraryA,(LPVOID)dwAllocAddress,0,&dwNewThreadId);
    if( GetLastError() != NO_ERROR ) {
        CloseHandle(hProcess);
        MessageBox(NULL,"Failed to create a new thread !",0,0);
        return 1;
    }
    CloseHandle(hThread);
    CloseHandle(hProcess);
    GlobalFree(lpModulePath);
    return (0);
}

  • Jika Sudah Di Masukan 
  • Klik Execute
  • Pilih Rebuild all
  • Jika ada Error di Line 2 Atau Line 4 
  • Biarkan Saja
===================================================

//* NB : TEKS YG BERWARNA MERAH BISA DI GANTI DENGAN FITUR

dan Cara Membuat Jarak Atau Ke Bawah [ Enter ] 
Gunakan Code \n
Contoh
<=> CHEAT Ayodance v.6076 [PREMIUM]\n=========================\n\n      <=> PERFECT All Mode = ON : F3 , OFF : F4

Lambang \n yang Berwarna Merah Untuk Membuat Jarak Seperti Ini 


<=> CHEAT Ayodance v.6076 [PREMIUM]
=========================      
<=> PERFECT All Mode = ON : F3 , OFF : F4

\n = 1 Jarak 
\n\n = 2 Jarak
dan seterusnya

INGAT INJECTOR HARUS SAMA DENGAN NAMA DLL 

Cheat Crossfire

Posted by : Unknown
0 komentar
apabila muncul xtrap coba lagi gan, kalau 3x dah muncul xtrap nunggu update terbaru aja ok!
tutor buka click 1 htmlnya jangan di close sebelum muncul tulisan crossfire run LoL , ok!

Downloads Cheat|
Tanpa Password
Apabila Menu Gak Muncul ; WAJIB INSTAL INI
 http://eae89603.linkbucks.com
|||||
||
|
How to active it?
 
User Interface:


Features:
  • d3d menu free Check Di d3d menunya : Insert On/off
  • On Cheat : ->
  • Off Cheat : <-

Windows 7 :
Gunakan Klik Kanan - Run As administrator saat membuka cheat dan Crossfirenya!

Replace weapon : Just For CF PHilipina,North America!

Cheat Crossfire

Posted by : Unknown
0 komentar
apabila muncul xtrap coba lagi gan, kalau 3x dah muncul xtrap nunggu update terbaru aja ok!
tutor buka click 1 htmlnya jangan di close sebelum muncul tulisan crossfire run LoL , ok!


Downloads Cheat|
Tanpa Password
Apabila Menu Gak Muncul ; WAJIB INSTAL INI
 http://eae89603.linkbucks.com
|||||
||
|
How to active it?
 
User Interface:


Features:
  • d3d menu free Check Di d3d menunya : Insert On/off
  • On Cheat : ->
  • Off Cheat : <-

Windows 7 :
Gunakan Klik Kanan - Run As administrator saat membuka cheat dan Crossfirenya!

Replace weapon : Just For CF PHilipina,North America!

Cheat Point Blank

Posted by : Unknown
0 komentar
maincit 
Fiture Hotkey:
☯ WallHack = Home
☯ Menghilangkan Logo Maincit = Insert

Cara pakai:
1. Buka Cheat
2. Buka PB Launcher
3. Start PB
5. Aktifkan cit pas main!
===============================================================================

Note:
- Sebelum make cheat face harus ganteng dulu kalau gak ganteng otomatis cheat nya bakalan dc/exit :P
- Kalo cit gk muncul, lengkapi jamunya
- Kalo udah install jamu lengkap trus masih juga gk work, ya maaf mungkin anda belum beruntung. Ane juga gk tau kenapa disebagian komputer cit ini gk work.



Download Cit

Hack Decoration Social Wars

Posted by : Unknown
Senin, 18 Februari 2013 0 komentar
decor

Ok , Langsung aja ya :3 , mau nonton soal nya wkkwkw :P

Bahan-Bahan Yang Diperlukan :
-Chrome/Mozilla
-Cheat Engine 6.2

Step :
1.Buka Social Wars
2.Buka Cheat Engine
3.Pilih Procces Browsemu
4.Ganti 4Bytes ke Array Of Bytes
5.Scan Code Fireman Academy = 31 37 34 00 00 00 00 00 00 00 00
6.Block Address nya , trus ganti value / code nya sama code chained mu
contoh = 39 38 38 00 00 00 00 00 00 00 00 ( Chained Mega-Axer and Chained Megalancer )
7.Klik New Scan
8.Ganti Array Of Bytes ke String / Text
9.Scan " gold "
10.Block Semua address , ganti value " gold " ke " cash "
11.Buka Shop > Beli Fireman Academy
12.Enjoyy

Nah untuk code" nya , bisa liat dibawah ini :


39 37 34 00 00 00 00 00 00 00 Chained Combo Dragons (Chained Red+Blue Dragon)
39 38 38 00 00 00 00 00 00 00 00 Chained Mega-Axer and Chained Megalancer
31 32 38 00 00 00 00 00 00 00 00 Rocket Launcher
31 32 36 00 00 00 00 00 00 00 00 Enemy's Airport

39 38 35 39 00 00 00 00 00 00 00 Chained Robo Hunter
39 39 32 34 00 00 00 00 00 00 00 Chained Gold Golem
39 39 31 00 00 00 00 00 00 00 00 Chained Fire Karateka
39 38 31 00 00 00 00 00 00 00 00 Chained Skater
31 32 32 00 00 00 00 00 00 00 00 Heliport
39 37 38 00 00 00 00 00 00 00 00 Chained Magic Chest
39 37 39 00 00 00 00 00 00 00 00 Chained Mega Chest
39 35 39 00 00 00 00 00 00 00 00 Red T-Rex Cage
39 35 38 00 00 00 00 00 00 00 00 Green T-Rex Cage

Cara Membuat Like FansPage Melayang Di BLOG

Posted by : Unknown
0 komentar
  http://soul-blaze.blogspot.com


Oke Langsung Saja nih :3
pergi ke Template > Edit HTML , lalu centang "Expand Template Widget"
setelah itu cari kode </head>Lalu Letakan kode dibawah ini di atas </head>

<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js' type='text/javascript'/>
lalu klik save

Selanjutnya pergi ke Tata Letak > Add widget/tambahkan widget (terserah dimana aja)
Tambahkan "HTML/javascript" seperti gambar dibawah ini..
lalu isi kotak " Konten" dengan code dibawah ini
<script type="text/javascript">
//<!--
$(document).ready(function() {$(".w2bslikebox").hover(function() {$(this).stop().animate({right: "0"}, "medium");}, function() {$(this).stop().animate({right: "-250"}, "medium");}, 500);});
//-->
</script>
<style type="text/css">
.w2bslikebox{background: url("http://3.bp.blogspot.com/-KdSAuv-K7HM/To_WXoWHzJI/AAAAAAAAGvg/5UvL10LUe_k/facebook.png") no-repeat scroll left center transparent !important;display: block;float: right;height: 270px;padding: 0 5px 0 46px;width: 245px;z-index: 99999;position:fixed;right:-250px;top:20%;}
.w2bslikebox div{border:none;position:relative;display:block;}
.w2bslikebox span{bottom: 12px;font: 8px "lucida grande",tahoma,verdana,arial,sans-serif;position: absolute;right: 6px;text-align: right;z-index: 99999;}
.w2bslikebox span a{color: #808080;text-decoration:none;}
.w2bslikebox span a:hover{text-decoration:underline;}
</style><div class="w2bslikebox" style=""><div>
<iframe src="http://www.facebook.com/plugins/likebox.php?href=URL FANS PAGE FACEBOOK ANDA &amp;width=245&amp;colorscheme=light&amp;show_faces=true&amp;connections=9&amp;stream=false&amp;header=false&amp;height=330" scrolling="no" frameborder="0" style="border: medium none; overflow: hidden; height: 330px; width: 245px;background:#fff;"></iframe><span><a href="http://soul-blaze.blogspot.com/2013/02/cara-membuat-like-fanspage-melayang-di.html "><b>Get Widget</b></a></span></div></div>
bacaan "  URL FANS PAGE FACEBOOK ANDA " diiisi dengan url fanxpage kamu ^^
lalu klik save..

tadaa!!



Selesai deh!!

SUMBER

Compress Html Blog

Posted by : Unknown
0 komentar
Hey Yozers,..
Kenapa Blog anda berat??
Nah,ga' usah bingung!!
Saya punya solusinya!!
Caranya pun cukup mudah!!
Nah..
langsung saja ya ke TKP..
hhhihihi
2. Download lengkap kode HTML blog anda!
3. Copy HTML Blog anda
4. Paste HTML Blog anda di kotak yang telah di sediakan!
5. Centang "Don't Compress HTML Head Of Document"
6. Klik "Compress HTML"
7. Copy code HTML di kotak bawah!
8. Paste di tempat code HTML Blog anda!!
Nah, gimana??
Mudah kan??
Jika anda ingin bertanya,silahkan tinggalkan comentar anda di bawah!!
Thx!

Visitors

Flag Counter
<:/div>
<:/div>

Site Info

Diberdayakan oleh Blogger.

Translate

Popular Post

 

Copyright © 2012 Voc Cheater's | Uchiha Madara Template | Dibuat oleh Si Obuyz