My Music

Get Free Music at www.divine-music.info
Get Free Music at www.divine-music.info

Free Music at divine-music.info

This is default featured slide 1 title

Aku cinta Blog, Yang Mampu membuatku Berbagi,, Tentang hal Yang aku Ketahui.. :)

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is My Blogger :)

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Pages

Minggu, 23 Oktober 2011

Cara Membuat D3D MEnu Hack

Alat yang dibutuhin :

=> VC++ 2010
=> Microsoft DirectX 9.0 SDK (Summer 2004)


Langkah Pertama :
1. Buka Visual C++ 2010 Express Edition, Setelah itu buat New Project.
2. Pilih Visual C++, Empty Project dan namakan dengan zenix D3Dbase.

3. Ok Project telah dibuat, Setelah itu buat Header lalu Klik pada Project dan pilih Add New Item.

Pilih Header File dan Namai dengan zenixMenuClass.h dan isikan code berikut:

//==================================================================
// This file is part of zenixbase d3d v1
// (c) copyright zenix 2010
// special thanks to:
// Alkatraz
// //mcz yang selalu dukung gw
// nyit-nyit.net
//==================================================================
#include "Functions.h"
typedef struct{
int index;
char * title;
int *hack;
int hackmaxval;
int hacktype;
DWORD HCOLOR;
}ITEM;
class zenixMenu {
public:
LPDIRECT3DDEVICE9 pDevice;
LPD3DXFONT pFont;

int hackcount;
int selector;
int x,y,w,h;
DWORD COLOR;

ITEM HACKITEM[99];
char hackrval[256];

void CreateItem(int index, char * title, int *hack,int hackmaxval=1,int hacktype=0);
void BuildMenu(char * menuname, int x, int y, int h, int w, DWORD TITLECOL, DWORD BACKCOLOR, DWORD BORDERCOLOR, LPDIRECT3DDEVICE9 pDevice);
void RenderMenu();
};
typedef HRESULT ( WINAPI* oReset )( LPDIRECT3DDEVICE9 pDevice, D3DPRESENT_PARAMETERS* pPresentationParameters );
typedef HRESULT (WINAPI* oEndScene)(LPDIRECT3DDEVICE9 pDevice);
//Colors A,R,G,B Gan Silahkan dipakai untuk membuat Chams
#define RED D3DCOLOR_ARGB(255, 255, 0, 0)
#define GREEN D3DCOLOR_ARGB(255, 0, 255, 0)
#define BLUE D3DCOLOR_ARGB(255, 0, 0, 255)
#define WHITE D3DCOLOR_ARGB(255, 255, 255, 255)
#define BLACK D3DCOLOR_ARGB(255, 0, 0, 0)
#define YELLOW D3DCOLOR_ARGB(255, 255, 255, 0)
#define TEAL D3DCOLOR_ARGB(255, 0, 255, 255)
#define PINK D3DCOLOR_ARGB(255, 255, 240, 0)
#define ORANGE D3DCOLOR_ARGB(255, 255, 132, 0)
#define LIME D3DCOLOR_ARGB(255, 198, 255, 0)
#define SKYBLUE D3DCOLOR_ARGB(255, 0, 180, 255)
#define MAROON D3DCOLOR_ARGB(255, 142, 30, 0)
#define LGRAY D3DCOLOR_ARGB(255, 174, 174, 174)
#define DGRAY D3DCOLOR_ARGB(255, 71, 65, 64)
#define BROWN D3DCOLOR_ARGB(255, 77, 46, 38)
#define SHIT D3DCOLOR_ARGB(255, 74, 38, 38)
4. Setelah itu buat Header lagi dan Beri Nama dengan Functions.h dan Isi dengan code berikut :

//==================================================================
// This file is part of zenixbase d3d v1
// (c) copyright zenix 2010
// special thanks to:
// Alkatraz
// //mcz yang selalu dukung gw
// nyit-nyit.net
//==================================================================
#include "SystemIncludes.h"
void PrintText(char pString[], int x, int y, D3DCOLOR col, ID3DXFont *font)
{
RECT FontRect = { x, y, x+500, y+30 };
font->DrawText( NULL, pString, -1, &FontRect, DT_LEFT | DT_WORDBREAK, col);
}
void FillRGB( int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9* pDevice )
{
if( w < 0 )w = 1; if( h < 0 )h = 1; if( x < 0 )x = 1; if( y < 0 )y = 1; D3DRECT rec = { x, y, x + w, y + h }; pDevice->Clear( 1, &rec, D3DCLEAR_TARGET, color, 0, 0 );
}
void DrawBorder( int x, int y, int w, int h, int px, D3DCOLOR BorderColor, IDirect3DDevice9* pDevice )
{
FillRGB( x, (y + h - px), w, px, BorderColor, pDevice );
FillRGB( x, y, px, h, BorderColor, pDevice );
FillRGB( x, y, w, px, BorderColor, pDevice );
FillRGB( (x + w - px), y, px, h, BorderColor, pDevice );
}
void DrawBox( int x, int y, int w, int h, D3DCOLOR BoxColor, D3DCOLOR BorderColor, IDirect3DDevice9* pDevice )
{
FillRGB( x, y, w, h, BoxColor, pDevice );
DrawBorder( x, y, w, h, 1, BorderColor, pDevice );
}
bool isMouseinRegion(int x1, int y1, int x2, int y2) {
POINT cPos;
GetCursorPos(&cPos);
if(cPos.x > x1 && cPos.x < x2 && cPos.y > y1 && cPos.y < y2){ return true; } else { return false; } } bool bCompare(const BYTE* pData, const BYTE* bMask, const char* szMask) { for(;*szMask;++szMask,++pData,++bMask) if(*szMask=='x' && *pData!=*bMask) return 0; return (*szMask) == NULL; } DWORD FindPattern(DWORD dwAddress,DWORD dwLen,BYTE *bMask,char * szMask) { for(DWORD i=0; i
5. Buat Header lagi beri Nama SystemIncludes.h dan Isikan code berikut :

//==================================================================
// This file is part of zenixbase d3d v1
// (c) copyright zenix 2010
// special thanks to:
// Alkatraz
// //mcz yang selalu dukung gw
// nyit-nyit.net
//==================================================================
#include
#include
#include
#include
#pragma comment(lib,"d3dx9.lib")
6. Klik pada Source Files kemudian Add New Item pilih C++ File (.cpp) Beri Nama D3dbase.cpp Isikan code berikut :


//==================================================================
// This file is part of zenixbase d3d v1
// (c) copyright zenix 2010
// special thanks to:
// Alkatraz
// //mcz yang selalu dukung gw
// nyit-nyit.net
//==================================================================
#include "zenixMenuClass.h"

oReset pReset;
oEndScene pEndScene;

zenixMenu dMenu;

LPDIRECT3DDEVICE9 g_pDevice = 0;
//Mengatur Offset Font Menu Hack
int xFontOffSet = 15;
int hackopt1;
int MenuHeight = 10;
int show=1;
int b = 0;
//==================================================================
//Menu HACK
int hack1 = 0;
int hack2 = 0;
int hack3 = 0;
int hack4 = 0;
int hack5 = 0;
//==================================================================
void zenixMenu::CreateItem(int index, char * title, int *hack, int hackmaxval,int hacktype)
{
hackcount++;
HACKITEM[hackcount].index = index;
HACKITEM[hackcount].hack = hack;
HACKITEM[hackcount].hackmaxval = hackmaxval;
HACKITEM[hackcount].hacktype = hacktype;
// Mengatur tinggi rendahnya Menu Hack
PrintText(title, xFontOffSet, index*15,HACKITEM[hackcount].HCOLOR,pFont); }
void zenixMenu::BuildMenu(char * menuname, int x, int y, int h, int w, DWORD TITLECOL, DWORD BACKCOLOR, DWORD BORDERCOLOR, LPDIRECT3DDEVICE9 pDevice)
{
if(GetAsyncKeyState(VK_INSERT)&1)show=(!show); //Memunculkan Menu HACK (INSERT)
if(!show) {
DrawBox(0,0, w, 20, BACKCOLOR, BORDERCOLOR, pDevice);
PrintText(menuname, 5, 2, TITLECOL, pFont);
return;
}

DrawBox(x,y, w, h, BACKCOLOR, BORDERCOLOR, pDevice); // Sesuaikan dengan Base Menu HACK
PrintText(menuname, x+10, y+2, TITLECOL, pFont);
CreateItem(1,"Ammo", &hack1);
CreateItem(2,"Recoil", &hack2);
CreateItem(3,"Wallhack", &hack3);
CreateItem(4,"Chams", &hack4);
CreateItem(5,"Apa aja deh", &hack5);
RenderMenu();
}

void zenixMenu::RenderMenu() //Hotkey menu
{
if(GetAsyncKeyState(VK_DOWN)&1)
selector++;

if(GetAsyncKeyState(VK_UP)&1)
if(selector > 1)
selector--;

if (GetAsyncKeyState(VK_RIGHT)<0){ for(int i=0;i < (hackcount+1);i++){ if(selector == HACKITEM[i].index){ if(*HACKITEM[i].hack < HACKITEM[i].hackmaxval) *HACKITEM[i].hack += 1; } } } if (GetAsyncKeyState(VK_LEFT)<0){ for(int i=0;i < (hackcount+1);i++){ if(selector == HACKITEM[i].index){ *HACKITEM[i].hack = 0; Sleep(200); } } } for(int i=0;i < (hackcount+1);i++){ if(selector == HACKITEM[i].index) HACKITEM[i].HCOLOR = GREEN; else HACKITEM[i].HCOLOR = RED; } for(int i=1; i<(hackcount+1); i++){ if(HACKITEM[i].hacktype == 0){ if(*HACKITEM[i].hack == 1) // Mengatur tinggi rendahnya Menu Hotkey PrintText("On", xFontOffSet+100, HACKITEM[i].index*15,WHITE,pFont); else PrintText("Off", xFontOffSet+100, HACKITEM[i].index*15,RED,pFont); } } if(selector < 1) selector = 1; if(selector > hackcount)
selector = 1;

hackcount = 0;
}
void TestThread() //Memunculkan texk jika ON/OFF
{
if( hack1 == 1)
PrintText("Jika Ammo [ON] text akan berubah warna", 30, 200, GREEN, dMenu.pFont);
else
PrintText("Jika Ammo [ON] text akan berubah warna", 30, 200, RED, dMenu.pFont);
} //Sesuaikan saja
void ReFont(LPDIRECT3DDEVICE9 pDevice) //Untuk penggantian font
{
if (g_pDevice != pDevice)
{
g_pDevice = pDevice;
try
{
if (dMenu.pFont != 0)
dMenu.pFont->Release();
} catch (...) {}
dMenu.pFont = 0;
D3DXCreateFontA(pDevice, 14, 0, FW_BOLD, 0, 0, DEFAULT_CHARSET, OUT_TT_ONLY_PRECIS, PROOF_QUALITY, DEFAULT_PITCH | FF_DONTCARE, "Arial", &dMenu.pFont );
}
}

HRESULT WINAPI Reset(IDirect3DDevice9* pDevice, D3DPRESENT_PARAMETERS* pPresentationParameters )
{
dMenu.pFont->OnLostDevice();

HRESULT hRet = pReset(pDevice, pPresentationParameters);

dMenu.pFont->OnResetDevice();

return hRet;
}
// Menu TITLE
HRESULT WINAPI EndScene(LPDIRECT3DDEVICE9 pDevice)
{
ReFont(pDevice);
dMenu.BuildMenu("Nyit-nyit.net 2010",0,0,190,200,RED,BLACK,GREEN,pDevice);
TestThread();
return pEndScene(pDevice);
}


int D3Dinit(void)
{
DWORD hD3D, adr, *vtbl;
hD3D=0;
do {
hD3D = (DWORD)GetModuleHandle("d3d9.dll");
Sleep(10);
} while(!hD3D);
adr = FindPattern(hD3D, 0x128000, (PBYTE)"\xC7\x06\x00\x00\x00\x00\x89\x86\x00\x00\x00\x00\x89\x86", "xx????xx????xx");
if (adr) {
memcpy(&vtbl,(void *)(adr+2),4);
pReset = (oReset) DetourFunction((PBYTE)vtbl[16] , (PBYTE)Reset ,5);
pEndScene = (oEndScene) DetourFunction((PBYTE)vtbl[42], (PBYTE)EndScene,5);
}
return 0;
}

BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);

if ( dwReason == DLL_PROCESS_ATTACH ) {

CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)D3Dinit, NULL, NULL, NULL);
}
if( dwReason == DLL_PROCESS_DETACH) {
dMenu.pFont->Release();
}
return TRUE;
}

Attached Image:
 3.jpg
7. Kemudian Save All Project.
8. Setelah project telah di Save lalu Compile/Start Debugging.

Attached 
Image: 2.jpg
Jangan lupa rubah Properties Project rubah Application (.exe) menjadi Dinamic Library (.dll)

Pada Fungtions.h void *DetourFunction



void *DetourFunction (BYTE *src, const BYTE *dst, const int len)
{
BYTE *jmp;
DWORD dwback;
DWORD jumpto, newjump;

VirtualProtect(src,len,PAGE_READWRITE,&dwback);

if(src[0] == 0xE9)
{
jmp = (BYTE*)malloc(10);
jumpto = (*(DWORD*)(src+1))+((DWORD)src)+5;
newjump = (jumpto-(DWORD)(jmp+5));
jmp[0] = 0xE9;
*(DWORD*)(jmp+1) = newjump;
jmp += 5;
jmp[0] = 0xE9;
*(DWORD*)(jmp+1) = (DWORD)(src-jmp);
}
else
{
jmp = (BYTE*)malloc(5+len);
memcpy(jmp,src,len);
jmp += len;
jmp[0] = 0xE9;
*(DWORD*)(jmp+1) = (DWORD)(src+len-jmp)-5;
}
src[0] = 0xE9;
*(DWORD*)(src+1) = (DWORD)(dst - src) - 5;

for(int i = 5; i < len; i++) src[i] = 0x90; VirtualProtect(src,len,dwback,&dwback); return (jmp-len); } 
 bisa kalian ganti dengan:

void *DetourFunction (BYTE *src, const BYTE *dst, const int len)
{
BYTE *jmp = (BYTE*)malloc(len+5);
DWORD dwBack;

VirtualProtect(src, len, PAGE_EXECUTE_READWRITE, &dwBack);
memcpy(jmp, src, len);
jmp += len;
jmp[0] = 0xE9;
*(DWORD*)(jmp+1) = (DWORD)(src+len - jmp) - 5;
src[0] = 0xE9;
*(DWORD*)(src+1) = (DWORD)(dst - src) - 5;
for (int i=5; i

Semoga Bermanfaat ^_^

Sabtu, 22 Oktober 2011

Belajar Guitar

Berikut gambar kunci gitar yang biasa dipelajari pertama kali ketika belajar gitar :
chord.jpg
kord-gitar.gif
Cara bacanya :
Huruf yang berada di atas kotak adalah nama kunci gitar atau chord gitar
M = mayor, m = minor, 7 = dalam praktek secara sederhana biasanya digunakan akan berpindah ke kunci gitar lain.
Garis lurus bawah (vertikal) menunjukkan senar gitar (seperti posisi gitar berdiri), jadi untuk memudahkan membacanya gitar dibuat posisi berdiri lalu lakukan peletakan posisi jari.
Garis lurus horizontal mewakili garis fret (kolom)
Titik bulat hitam dengan nomor menunjukan letak posisi jari dan jarinya
nomor 1 = untuk jari telunjuk, 2 = untuk jari tengah, 3 = jari manis, 4 = kelingking
Tanda X = berarti tidak dibunyikan
Garis vertikal tanpa tanda X dan tanda bulat hitam berarti dibunyikan tetapi tidak dipijit.
Moga dapat dimengerti penjelasan dari saya.

Kamis, 20 Oktober 2011

Release PB_V 3.6 Special Jadi GM PB + Cheat Magnet + Cheat Ghost Mode + AMMo Global + Cheat BARET HITAM &Fullhack

Downloads Cheat :
Downloads Password  :

====================
Fitur & Hotkeys Hack
====================


F4 = Magnet On (Cheat Mengumpulkan semua pemain di tengah)

F6 = Ghost On (Cheat Menghilang gak kelihatan,,tapi kita bisa menembak musuh dan musuh tidak lihat kita)
F7 = Ghost OFF

F11 = Speed Hack ON (CHeat LAri MACAN)
F12 = Speed hack OFF(CHeat LAri MACAN)

Caps Lock = Ammo 60 Global Weapon

ALT Kiri = Moving Speed (NINJA Mode , Loncat sono,loncat sini)

Numpad 1 = Reload Mayor (BARET HITAM,on kan saat Play,,lalu coba reload tara,,,kayak mayor)
Numpad 2 = GM Mode (JADI GM PB)

NB : GM mode Just Slot 1 Tero / Slot Paling Atas Tero
         Check SS No BT/DC,, gunakan jngan terlalu show off/berlebihan dgn cara menembak terus,,,
==========
Tutorial Cheat :
==========
-Buka PB Launcher
-Buka Cheat/Inject , masukan passnya
-Start Pb lo,,
-Masukan password sama seperti tdi,,
-Keluar notice , klik ok
-Happy cheating

Credit:  
DIYAN

Selasa, 18 Oktober 2011

PB_Hack V 3.2 Special Auto headshot + M Speed + AMmo Global + Full Wallhack update 17 - 18 Oct 2011

Downloads Cheat : 
Downloads Password :


============
Fitur V 3.2
============

======Fitur Utama=========

<<<[]>>> unlimited AMmo Global (80 AMmo)
<<<[]>>> Auto headshot Datar (Pas kepala)
<<<[]>>> Cheat Aneh Mode ON
<<<[]>>> Pasang Bom + Defuse Bom 0 Detik

=======Fitur Tambahan========

<<<[]>>> Wallhack Glasses
<<<[]>>> Wallhack Chams 18 Colour (CT & tero)
<<<[]>>> Weapon Chams
<<<[]>>> No Smoke
<<<[]>>> WireFrame
<<<[]>>> X-Hair Unik Cocok Di gabungkan DenganAuto Headshot
<<<[]>>>  Mspeed

=============
  keys hack
=============

=====Fitur utama=======
<<<[]>>>Aimbot(Auto Headshot) : F5 ON | F6 Off
                (On Kan saat sudah main(Baru respon , Offkan saat Sudah mati) tes nya pakai K2 Dlu saja 
<<<[]>>>  Ammo 80 Global All Weapon : Home
<<<[]>>>Cheat Aneh Mode F7 On|F8 Off(Cocok Buat RM)
<<<[]>>>  PasBom+DefBOM 0 Detik : Tekan End saat Di Lobby
<<<[]>>> M Spped : Klik Kanan + Klik kiri (lebih 2x DC)

=====Fitur tambahan========
<<<[]>>> Innsert On/Off Menu Hack
<<<[]>>> Arrow Right On Cheat
<<<[]>>>  left Arrow Off Cheat

=============
Tutorial Hack
=============
<<<[]>>> Buka Pb Launcher
<<<[]>>> Buka Cheat
<<<[]>>>  Start Pb lo
<<<[]>>> keluar notice
<<<[]>>>   Tekan Enter pada Notice(jngan gerakan Mouse sampai masuk ke Pb nya)
                 (Agar Effect)
<<<[]>>> Happy Headshoottt,,,,shot,,,

Credit :

Minggu, 16 Oktober 2011

Release Pb Hack Public Special Dewa Magnet+Auto Headshot Datar+full wh + 1 Hit + gost + Anti Kick Special weekend

Downloads Cheat  : 
Downloads Password:  

===============
 Fitur Hack PB
===============

<<<>>> Full Wallhack (Chams .Clean dll)
<<<>>> Ammo No OFF
<<<>>> Full Magnet
<<<>>> Ghost Mode
<<<>>> AImbot Datar  | On kan saat sudah respon/off kan saat mati
<<<>>> Anti Vote Kick
<<<>>> Pasang Bom
<<<>>> Defuse BOm


==============
  keys Hack
==============

Di D3dMenu nya
On kan di mana saja

===========
Tutorial Hack
===========
<<<>>>Buka Pb launcher
<<<>>>Buka Cheat/injectnya
<<<>>>  Start Pb nya
<<<>>> Happy Cetting/buat ningkatin kd/hs cocok,,,,

Tested 2 Jam No BT/DC(Disconect) sama sekali!!

Credit :

VGM taufikJR

Sabtu, 15 Oktober 2011

PB_Hack V 2.9 Special Mode Super Dewa para Dewa (Headshot Manual + Magneted System + 1 Hit ) Special Weekends

Downloads Cheat : 
Downloads Password : 



=============
Fitur hack
=============

<<<[]>>> CheatDewa magnet System
<<<[]>>> AutoMatic Headshot Manual
<<<[]>>> 1 HIT ALL WEAPON

=========
Hotkeys :
=========

F1 = ON All Dewa Hack
F2 = Off All Dewa Hack

===========
Tutorialnya
===========

<<<[]>>> Buka PB
<<<[]>>> Buka Cheat/Injectnya
<<<[]>>> Start Pb nya
<<<[]>>> Auto inject
<<<[]>>> happy GB /naikin kd/hs + kill dead

===================
penggunaan Magnet :
===================

<<<[]>>> Masuk Room Apa saja
<<<[]>>> Play
<<<[]>>> tekan F1
<<<[]>>> terkira sudah 25 Detik Di OFf kan
<<<[]>>> Apabila gak di Off kan akan menyebabkan DC(Disconect)
<<<[]>>> Ntar Nunggu beberapa detik(Kalau saya 5 detik)
<<<[]>>> On kan Lagi sampai kira kira 20 Detik ++
<<<[]>>> Dan sampai seterusnya juga bgitu


NB :

>>Jangan saling betengkar/fitnah apalagi sesama cit main vote kick,,,(gak jentel men)
>>Effect 100% Jadi RM(Semua pemain akan merasakan kalau melihat musuh dan teman nya di tengah area)
>>Effect 70% Bukan RM( Kalau saya suka pakai yg itu,,,,)Karena gak di kira cit bnget,,,

Credit :

Bhily
gunawan sembiring

PB_hack V 2.7 Special All Up Weapon + BomBer Asap + Fullhack + WH Updates15 oct 2011

Downloads Cheat : 
Donwnloads password : 

============
 Fitur Hack
============

<<<[]>>> Chams CT
<<<[]>>> Chams Police
<<<[]>>> No Smoke
<<<[]>>> WireFrame
<<<[]>>> WH bening
<<<[]>>> WireFrame
<<<[]>>> Phntom
<<<[]>>> Visual Chams
<<<[]>>> Head Chams
<<<[]>>> Weapon Chams
<<<[]>>> WH Glases
<<<[]>>> Chams tembok
===========
Fitur Bonus
===========

<<<[]>>> Damage Up (Setelah Ammo Global ON)
<<<[]>>> Ammo Global(60)
<<<[]>>> Bom Smoke Up 400% (Setelah Ammo Global ON)
<<<[]>>> Bom C5 Up 400% (Setelah Ammo Global ON)
<<<[]>>> All Bom Asap up 400% (Setelah Ammo Global ON)
<<<[]>>>F12 EXI PB Secara cepat

=========
Hotkeys :
=========

<<<[]>>> Fullhack : Numpad 1-9 + F1-F2
<<<[]>>> Ammo Global 60 (Caps lock Nyala + Klik Kiri)
<<<[]>>> Bom Asap + ALl Bom Asap Setelah AMmo 60 , Bom Ikut 60
         Hanya Dapat Di gunakan 4x saja ,
         Lebih Dari 4 Coba sendiri saja,,!!(Akan terjadi apa)wkowko

Credit : 
VGM Agus

Jumat, 14 Oktober 2011

PB_Hack 2.5 Special Simple Fullhack + AMmo Global VGM updates After Maintenace

Downloads Cheat : 
Downloads passworD : 



========================
Fiture & Hotkeys PB 2.5
========================

<<<->>> Fullbright : F1
<<<->>> Chamz Tero : F2
<<<->>> Chamz CT : F3
<<<->>> Wireframe : F4
<<<->>> Weapon Chamz : F5
<<<->>> Wh Asuss : F6
<<<->>> Wh Bening : F7
<<<->>> Phantom : F9
<<<->>> Head Chamz : F10
<<<->>> AMo : Klick Kiri + Kanan
<<<->>> Damage SG After On AMmo

======
Tutor : 
======
<<<->>>Buka PB Launcher
<<<->>>Buka Cheat , 
<<<->>>  Masukan passwornya
<<<->>>Start PB nya
<<<->>>  Auto Inject
<<<->>>Happy Bkong kill
Credit : 
VGM Rizky Avelin

Selasa, 11 Oktober 2011

PB_Public V 2.0 Auto Headshot + Wallhack Auto ON + Ammo Global + View Enemy Frezze Updates

Downloads Cheat V2.0 : 
Downloads password :

=============
Fitur V 2.0
=============

<<<->>>Wallhack Chams
<<<->>>Auto Headshot Mode Laras
<<<->>>View Enemy Frezze
<<<->>>Auto Exit PB Fast
<<<->>>Ammo Global (All Weapon SG All + Weapon bebas ALL)
=========
Keys Hack
=========
<<<->>>Wallhack Auto ON
<<<->>>Ammo Global 1000% Work : Klik kiri + Klik kanan
<<<->>>Auto headshot Home ON , End OFF
              (Jalankan saat Baru respon , offkan saat kamu Mati)
========
Tutor Hack
========
<<<->>>Buka Pb launcher
<<<->>>Buka Cheatnya
<<<->>>Masukan password
<<<->>>Star PB,
<<<->>>Happi headshottt,,shoottt,,,

Credit :
Gunawan(ME)

WALLHACK [ WH ] KACA

WALLHACK [ WH ] KACA


Hotkey : Lihat di injector




                                                                        Link 1

                                                                        Link 2

                                                                        Link 3

                                                                         Link 4

PB_hack versi 1.9 Fix Special Wallhack 9 Warna + X-Hair Code(Hs Croot) Updates 11 Oct 2011

Karena bnyak yang Bilang Gue copas,,nih Gue share cheat base sudah 2 bulan yang lalu sob ,,,
Saya tuh Bukan Copas Sob,,,Emang kami menjalin hubungan Dengan Baik Kepada Pihak Pihak terkait.
Dan kami sangat berterima kasih kepadanya
TQ
Downloads Cheat : 
Downloads passwordnya : 

=============
Fitur PB Hack
=============

<<<*>>>Wallhack Khusu map Dino& Mini Indo
<<<*>>>Wallhack ASUS
<<<*>>>Wallhack Poilice = 9 Warna Chams
<<<*>>>Wallhack teroris = 9 Warna Chams
<<<*>>>Wallhack Senjata

<<<*>>>No Smoke
<<<*>>>Frame Wire
<<<*>>>X-Hair Code (Lebih Simple dan mudah Untuk HEadshot)
<<<*>>>Unlimited Ammo(Klik kanan klik kiri)

========
Hotkeys :
========
<<<*>>>Right Arrow            : On Cheat
<<<*>>>Left Arrow              : Off Cheat
<<<*>>>Up&Down Arrow   : Pilih Cheat
<<<*>>>Insert                       : Tutup Menu

===========
Tutorial Hack :
===========
<<<*>>>Buka Pb launcher
<<<*>>>Buka Cheat
<<<*>>>Masukan password
<<<*>>>Start PB
<<<*>>>Auto inject
<<<*>>>keluar Ntice terakhir tekan Ok
<<<*>>>Dan Klik Pada layar Destop Brulang-ulang sampai masuk ke Layar PB/Loading Login
<<<*>>>Hal tersebut Agar Cheat Effect
<<<*>>>Happi Cheating

Credit :

Sabtu, 08 Oktober 2011

BLOGGER TAMPLATE

http://www.newbloggertemplates.com

PB_Hack Public V 1.5 Special Full Wallhack + Chams Termasuk No Smoke updates Special Weekends Days

 Downloads Cheat : 
 Downloads Password :

===========
Fitur PB
===========
<<<->>>Wallhack
<<<->>>Chams
<<<->>>WireFrame
<<<->>>Wall Colour hack
<<<->>>No Smoke

==========
Hotkeys :
==========
<<<->>>All Menu Cheat Auto On(Automatic ON)

=========
Tutorial :
=========
<<<->>>Buka PB launcher
<<<->>>Buka Inject/Cheatnya
<<<->>>Masukan pasnya
<<<->>>Start
<<<->>>Auto Inject
<<<->>>Happy Bokong killer

Credit :
VGM Rizky Avelin
GUnawan z