Page 1 of 10 123 ... LastLast
Results 1 to 15 of 138
  1. #1
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine

    Useful D3D9/C++ Info, Functions, Cham Alternations, and more!


    Here is a list of useful D3D9 Functions, info, and other misc items.

    If you would like to add a function, post it below(with credits) and I will add it in here! Also, if I missed any credits, please say so, so that I can add them!

    This post actually has enough info for you to make your own D3D9 Base.

    Enjoy!

    D3D9 vTable Values(Credits to Str1k3r21):

    Code:
    QueryInterface // 0
    AddRef // 1
    Release // 2
    TestCooperativeLevel // 3
    GetAvailableTextureMem // 4
    EvictManagedResources // 5
    GetDirect3D // 6
    GetDeviceCaps // 7
    GetDisplayMode // 8
    GetCreationParameters // 9
    SetCursorProperties // 10
    SetCursorPosition // 11
    ShowCursor // 12
    CreateAdditionalSwapChain // 13
    GetSwapChain // 14
    GetNumberOfSwapChains // 15
    Reset // 16
    Present // 17
    GetBackBuffer // 18
    GetRasterStatus // 19
    SetDialogBoxMode // 20
    SetGammaRamp // 21
    GetGammaRamp // 22
    CreateTexture // 23
    CreateVolumeTexture // 24
    CreateCubeTexture // 25
    CreateVertexBuffer // 26
    CreateIndexBuffer // 27
    CreateRenderTarget // 28
    CreateDepthStencilSurface // 29
    UpdateSurface // 30
    UpdateTexture // 31
    GetRenderTargetData // 32
    GetFrontBufferData // 33
    StretchRect // 34
    ColorFill // 35
    CreateOffscreenPlainSurface // 36
    SetRenderTarget // 37
    GetRenderTarget // 38
    SetDepthStencilSurface // 39
    GetDepthStencilSurface // 40
    BeginScene // 41
    EndScene // 42
    Clear // 43
    SetTransform // 44
    GetTransform // 45
    MultiplyTransform // 46
    SetViewport // 47
    GetViewport // 48
    SetMaterial // 49
    GetMaterial // 50
    SetLight // 51
    GetLight // 52
    LightEnable // 53
    GetLightEnable // 54
    SetClipPlane // 55
    GetClipPlane // 56
    SetRenderState // 57
    GetRenderState // 58
    CreateStateBlock // 59
    BeginStateBlock // 60
    EndStateBlock // 61
    SetClipStatus // 62
    GetClipStatus // 63
    GetTexture // 64
    SetTexture // 65
    GetTextureStageState // 66
    SetTextureStageState // 67
    GetSamplerState // 68
    SetSamplerState // 69
    ValidateDevice // 70
    SetPaletteEntries // 71
    GetPaletteEntries // 72
    SetCurrentTexturePalette // 73
    GetCurrentTexturePalette // 74
    SetScissorRect // 75
    GetScissorRect // 76
    SetSoftwareVertexProcessing // 77
    GetSoftwareVertexProcessing // 78
    SetNPatchMode // 79
    GetNPatchMode // 80
    DrawPrimitive // 81
    DrawIndexedPrimitive // 82
    DrawPrimitiveUP // 83
    DrawIndexedPrimitiveUP // 84
    ProcessVertices // 85
    CreateVertexDeclaration // 86
    SetVertexDeclaration // 87
    GetVertexDeclaration // 88
    SetFVF // 89
    GetFVF // 90
    CreateVertexShader // 91
    SetVertexShader // 92
    GetVertexShader // 93
    SetVertexShaderConstantF // 94
    GetVertexShaderConstantF // 95
    SetVertexShaderConstantI // 96
    GetVertexShaderConstantI // 97
    SetVertexShaderConstantB // 98
    GetVertexShaderConstantB // 99
    SetStreamSource // 100
    GetStreamSource // 101
    SetStreamSourceFreq // 102
    GetStreamSourceFreq // 103
    SetIndices // 104
    GetIndices // 105
    CreatePixelShader // 106
    SetPixelShader // 107
    GetPixelShader // 108
    SetPixelShaderConstantF // 109
    GetPixelShaderConstantF // 110
    SetPixelShaderConstantI // 111
    GetPixelShaderConstantI // 112
    SetPixelShaderConstantB // 113
    GetPixelShaderConstantB // 114
    DrawRectPatch // 115
    DrawTriPatch // 116
    DeletePatch // 117
    CreateQuery // 118
    D3D ARGB Colors:

    Code:
    //Colors are A,R,G,B meaning alpha(opacity), red, green, blue
    D3DCOLOR RED = D3DCOLOR_ARGB(255, 255, 0, 0);
    D3DCOLOR GREEN = D3DCOLOR_ARGB(255, 0, 255, 0);
    D3DCOLOR BLUE = D3DCOLOR_ARGB(255, 0, 0, 255);
    D3DCOLOR WHITE = D3DCOLOR_ARGB(255, 255, 255, 255);
    D3DCOLOR BLACK = D3DCOLOR_ARGB(255, 0, 0, 0);
    D3DCOLOR YELLOW = D3DCOLOR_ARGB(255, 255, 255, 0);
    D3DCOLOR TEAL = D3DCOLOR_ARGB(255, 0, 255, 255);
    D3DCOLOR PINK = D3DCOLOR_ARGB(255, 255, 240, 0);
    D3DCOLOR ORANGE = D3DCOLOR_ARGB(255, 255, 132, 0);
    D3DCOLOR LIME = D3DCOLOR_ARGB(255, 198, 255, 0);
    D3DCOLOR SKY BLUE = D3DCOLOR_ARGB(255, 0, 180, 255);
    D3DCOLOR MAROON = D3DCOLOR_ARGB(255, 142, 30, 0);
    D3DCOLOR LGRAY = D3DCOLOR_ARGB(255, 174, 174, 174); //Light Gray
    D3DCOLOR DGRAY = D3DCOLOR_ARGB(255, 71, 65, 64); //Dark Gray
    D3DCOLOR BROWN = D3DCOLOR_ARGB(255, 77, 46, 38);
    D3DCOLOR SHIT = D3DCOLOR_ARGB(255, 74, 38, 38); //Shit and brown aint much different

    Generate Texture Function(Credits to Azorbix):

    Code:
    HRESULT GenerateTexture(IDirect3DDevice9 *pD3Ddev, IDirect3DTexture9 **ppD3Dtex, DWORD colour32)
    {
    	if( FAILED(pD3Ddev->CreateTexture(8, 8, 1, 0, D3DFMT_A4R4G4B4, D3DPOOL_MANAGED, ppD3Dtex,NULL)) )
    		return E_FAIL;
    	
    	WORD colour16 =	((WORD)((colour32>>28)&0xF)<<12)
    			|(WORD)(((colour32>>20)&0xF)<<8)
    			|(WORD)(((colour32>>12)&0xF)<<4)
    			|(WORD)(((colour32>>4)&0xF)<<0);
    
    	D3DLOCKED_RECT d3dlr;    
    	(*ppD3Dtex)->LockRect(0, &d3dlr, 0, 0);
    	WORD *pDst16 = (WORD*)d3dlr.pBits;
    
    	for(int xy=0; xy < 8*8; xy++)
    		*pDst16++ = colour16;
    
    	(*ppD3Dtex)->UnlockRect(0);
    
    	return S_OK;
    }
    EndScene(vTable 42):
    Code:
    typedef HRESULT (WINAPI* oEndScene)(LPDIRECT3DDEVICE9 pDevice);
    oEndScene pEndScene;
    Code:
    HRESULT WINAPI EndScene(LPDIRECT3DDEVICE9 pDevice)
    {
    	return pEndScene(pDevice);
    }

    Reset(vTable 16):

    Code:
    typedef HRESULT ( WINAPI* oReset )( LPDIRECT3DDEVICE9 pDevice, D3DPRESENT_PARAMETERS* pPresentationParameters );
    oReset pReset;
    Code:
    HRESULT WINAPI Reset(IDirect3DDevice9* pDevice, D3DPRESENT_PARAMETERS* pPresentationParameters )
    {
    
    	return pReset(pDevice, pPresentationParameters);
    }
    Draw Indexed Primitive[DIP (vTable 82)]:
    Code:
    typedef HRESULT (WINAPI* oDIP)(LPDIRECT3DDEVICE9 pDevice,D3DPRIMITIVETYPE,int,UINT,UINT,UINT,UINT); 
    oDIP pDIP;
    Code:
    HRESULT WINAPI DIP(LPDIRECT3DDEVICE9 pDevice,D3DPRIMITIVETYPE Type,int BaseVertexIndex,UINT MinIndex,UINT NumVertices,UINT StartIndex,UINT PrimCount)
    {
    	return pDIP(pDevice, Type, BaseVertexIndex, MinIndex, NumVertices, StartIndex, PrimCount);
    }

    Find Pattern Function(Credits to d0m1n1c):

    Code:
    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<dwLen; i++)
    		if (bCompare((BYTE*)(dwAddress+i),bMask,szMask))  
    			return (DWORD)(dwAddress+i);
    	return 0;
    }

    Detour Create Function(Credits to Azorbix):

    Code:
    void *DetourCreate(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<len; i++)  src[i]=0x90;
    	VirtualProtect(src, len, dwBack, &dwBack);
    	return (jmp-len);
    }
    Picture Background(Create Texture from File in Memory):
    Code:
    D3DXCreateTextureFromFileInMemory(pDevice,imagebytes,size,LPDIRECT3DTEXTURE9);
    PrintText Function(Credits To ac1d_bUrn, he gave it to me to add to the list):
    Code:
    void PrintText(LPD3DXFONT Font, long x, long y, D3DCOLOR fontColor, char *text, ...)
    {  
        RECT rct;    
        rct.left     = x - 1;    
        rct.right    = x + 1;    
        rct.top      = y - 1 ;    
        rct.bottom   = y + 1;  
    
        if(!text) { return; } 
        va_list va_alist; 
        char logbuf[256] = {0}; 
        va_start (va_alist, text); 
        _vsnprintf (logbuf+strlen(logbuf), sizeof(logbuf) - strlen(logbuf), text, va_alist); 
        va_end (va_alist); 
        RECT FontRect = { x, y, x, y }; 
        pFont->DrawText(NULL, logbuf, -1, &rct, DT_NOCLIP, fontColor);  
    }
    Draw Box Function(Credits To ac1d_bUrn, he gave it to me to add to the list):
    Code:
    void FillRGB( int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9* pDevice )
    {
    	D3DRECT rec = { x, y, x + w, y + h };
    	pDevice->Clear( 1, &rec, D3DCLEAR_TARGET, color, 0, 0 );
    }
    Draw Border Function(Credits To ac1d_bUrn, he gave it to me to add to the list):
    Code:
    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 );
    }
    Draw Box with Border Function(Credits To ac1d_bUrn, he gave it to me to add to the list)(You will need above 2 functions to use it)
    Code:
    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 );
    }

    Draw CrossHair Function(Credits To ac1d_bUrn(giving it to me)):

    Code:
    void DrawCrosshair(LPDIRECT3DDEVICE9 pDevice, int size, int strong,  D3DCOLOR xcolor)
    {
    	int iCenterX = GetSystemMetrics( 0 ) / 2;
    	int iCenterY = GetSystemMetrics( 1 ) / 2;
    	if( iCenterX < 20 && iCenterY < 20 )
    	{
    		iCenterX = ( GetSystemMetrics( 0 ) / 2 );
    		iCenterY = ( GetSystemMetrics( 1 ) / 2 );
    	}
    	D3DRECT rec2 = { iCenterX- size, iCenterY, iCenterX+ size, iCenterY+ strong};
    	D3DRECT rec3 = { iCenterX, iCenterY- size, iCenterX+ strong,iCenterY+ size};
    	pDevice->Clear(1, &rec2, D3DCLEAR_TARGET, xcolor, 1000,  0);
    	pDevice->Clear(1, &rec3, D3DCLEAR_TARGET, xcolor, 100,  0);
    }

    Draw Healthbar Function(Credits To Crash for Coding it, ac1d_bUrn, he gave it to me to add to the list)

    Code:
    void DrawHealthBar(int x, int y, int w, int h, D3DCOLOR color, D3DCOLOR BorderColor, int hp, int maxhp)
    {
    	FillRGB(x, y, ( hp / (double)maxhp ) * w, h, color, g_pDevice);
    	DrawBorder(x, y, w, h, 1, BorderColor, g_pDevice);
    }

    Moving Your Menu to Mouse Coordinates On Button(Credits to Zanza):

    Code:
    int MoveMenu;
    
    if(GetAsyncKeyState(VK_DELETE)) MoveMenu = (!MoveMenu);
    
    if( MoveMenu ) {
       POINT myCursor; 
       GetCursorPos(&myCursor); // get the cursor position.
       if(GetAsyncKeyState(VK_LBUTTON)) {
          menu.x = myCursor.x; // set the x of your menu to the cursor x position.
          menu.y = myCursor.y; // set the y of your menu to the cursor y position.
       }
    }
    Generate Material(Credits to Crash):
    Code:
    D3DMATERIAL9 GenerateMaterial(int r, int g, int b){
    
    	D3DMATERIAL9 myMaterial;
    	D3DCOLORVALUE myColor;
    
    	myColor.a = 255;
    	myColor.r = (float)r / 255;
    	myColor.g = (float)g / 255;
    	myColor.b = (float)b / 255;
    
    	myMaterial.Ambient = myColor;
    	myMaterial.Diffuse = myColor;
    	myMaterial.Emissive = myColor;
    	myMaterial.Specular = myColor;
    
    	return myMaterial;
    
    }
    Cham Alterations(NOOB PROOF):

    Light Chams(Credits to Kernel, modified for D3D9 by CodeDemon):
    Code:
    void SetLightChams(float A, float R, float G, float B, IDirect3DDevice9 *pDevice)
    {
        D3DMATERIAL9 pMaterial;
        ZeroMemory(&pMaterial, sizeof(D3DMATERIAL9));
    	pDevice->SetRenderState(D3DRS_LIGHTING, TRUE); //Enable Lighting
    	//Ambient
    	pMaterial.Ambient.a     =  (A/255);
        pMaterial.Ambient.r     =  (R/255);
        pMaterial.Ambient.g     =  (G/255);
        pMaterial.Ambient.b     =  (B/255);
    	//Diffuse
    	pMaterial.Diffuse.a     = (A/255);
        pMaterial.Diffuse.r     = (R/255);
        pMaterial.Diffuse.g     = (G/255);
        pMaterial.Diffuse.b     = (B/255);
    	//Specular
    	pMaterial.Specular.a = (A/255);
    	pMaterial.Specular.r = (R/255);
        pMaterial.Specular.g = (G/255);
        pMaterial.Specular.b = (B/255);
        pDevice->SetMaterial(&pMaterial);
    }
    How To Use(In DIP):
    Code:
    //ZBUFFER OFF(Any Real Coder would know what this is! )
    SetLightChams(255,255,0,0, pDevice);
    
    pDIP;
    //ZBUFFER ON
    SetLightChams(255,0,0,255, pDevice);
    Result:



    Overlay Chams/No Texture Chams(Credits to Pheron):

    Code:
    //ZBUFFER OFF
    pDevice->SetRenderState(D3DRS_LIGHTING, true);
    pDevice->SetRenderState(D3DRS_SHADEMODE, D3DSHADE_FLAT);
    pDevice->SetRenderState(D3DRS_FOGENABLE, false);
    pDevice->SetRenderState(D3DRS_AMBIENT, D3DCOLOR_ARGB(255,255,0,0));
    
    pDIP;
    //ZBUFFER ON
    pDevice->SetRenderState(D3DRS_AMBIENT, D3DCOLOR_ARGB(255,0,255,0));
    Result:


    Ghost Chams(Credits to Jeff):
    Code:
    pDevice->SetRenderState(D3DRS_ALPHABLENDENABLE,true);
    pDevice->SetRenderState(D3DRS_DESTBLEND,D3DBLEND_INVDESTCOLOR);
    pDevice->SetRenderState(D3DRS_SRCBLEND,D3DBLEND_INVSRCCOLOR);
    //ZBUFFER OFF
    		
    pDIP;
    
    pDevice->SetRenderState(D3DRS_ALPHABLENDENABLE,true);
    pDevice->SetRenderState(D3DRS_DESTBLEND,D3DBLEND_INVDESTCOLOR);
    pDevice->SetRenderState(D3DRS_SRCBLEND,D3DBLEND_INVSRCCOLOR);
    //ZBUFFER ON
    Result:


    Phantom Chams(Credits to Jeff):
    Code:
    pDevice->SetRenderState(D3DRS_ALPHABLENDENABLE,true);
    pDevice->SetRenderState(D3DRS_DESTBLEND,D3DBLEND_INVDESTCOLOR);
    pDevice->SetRenderState(D3DRS_SRCBLEND,D3DBLEND_INVSRCALPHA);
    //ZBUFFER OFF
    
    pDIP;
    
    pDevice->SetRenderState(D3DRS_ALPHABLENDENABLE,true);
    pDevice->SetRenderState(D3DRS_DESTBLEND,D3DBLEND_INVDESTCOLOR);
    pDevice->SetRenderState(D3DRS_SRCBLEND,D3DBLEND_INVSRCALPHA);
    //ZBUFFER ON
    Result:


    Last edited by J; 11-29-2011 at 03:53 PM.

  2. The Following 107 Users Say Thank You to CodeDemon For This Useful Post:

    'Douglas (06-17-2012),..:Sasuke:.. (02-22-2011),1ramon9 (09-20-2011),32132144 (01-14-2011),ac1d_buRn (08-24-2010),AdrenalinaPL (11-18-2012),Ahmed Madkour (03-04-2015),Amatowarrior (10-04-2010),anglefuture8 (04-04-2011),Anubiset (11-17-2011),bagabags (07-29-2017),baraozin (06-16-2011),bazookaboy (08-22-2011),bengan734 (07-22-2011),besimbicer (08-10-2011),bloodymac144 (10-27-2010),bobguega (12-10-2010),Boomdocks (04-23-2011),Broseff (07-27-2012),bryanp1500 (08-22-2011),cacacaca110 (09-08-2011),CAFlames (08-28-2010),CA_ (03-13-2011),Chhaos. (04-03-2015),clgsquad (08-24-2011),Coco- (06-15-2012),Code[VB] (08-08-2011),confict (08-26-2010),CrackCocaine (08-31-2010),crazygamer53 (10-29-2010),DaneCoder (07-07-2014),Decoder Member (04-23-2011),Dieorwin (02-01-2011),dkang04 (05-28-2011),DRAKE` (08-08-2011),drumset (08-12-2011),experthack (05-20-2013),[MPGH]Flengo (05-22-2011),FR1GHT (05-27-2012),fuckface32 (02-08-2017),fuked (12-06-2010),gangsterownt (03-20-2011),giniyat101 (10-27-2011),GodHack2 (08-24-2010),HarvBot (05-21-2012),HaX4LiFe! (09-07-2010),HeavenlyRage (07-20-2011),hgmf8124 (08-24-2010),HMurat (06-30-2013),House.m.d. (02-05-2011),IanIsRich (09-07-2010),J (08-24-2010),Jarppi (10-03-2010),jonnyboy9985 (01-13-2011),josue18 (09-15-2010),khaozizleet (12-11-2010),kotentopf (08-28-2010),lolipop1113 (09-15-2010),MaxAnnihilation (05-09-2011),MDswiss (10-09-2011),MEkhi2 (12-04-2010),mrcolls (10-19-2010),Nightmare (04-19-2012),Nitehawk772 Bkup (10-10-2011),NotRealPro (07-04-2012),OpKilts (06-28-2013),Otaviomorais (12-29-2012),PashaAmd (04-07-2011),pDevice (05-29-2012),petr1981 (04-07-2017),Quintero (05-02-2011),S0aD (02-17-2011),saharshok (11-19-2010),Samnnn (09-10-2014),saskuHOT (11-21-2011),ScArL (09-06-2010),Skaterforeva1 (01-10-2013),smonist (01-16-2012),Solify (09-22-2010),sou (12-19-2011),SSadom (10-15-2014),Strikex (03-05-2011),SubzeroAX3 (07-22-2011),SupremeJr' (09-07-2011),Swag (01-30-2012),Synthesised (05-29-2012),tempta43 (08-24-2010),Thaz (08-28-2010),Thumper_ (11-10-2012),Timboy67678 (05-27-2014),topblast (08-24-2010),Trinix (10-23-2010),tristan5 (08-27-2010),UGodly (09-07-2010),UU1lson (05-21-2011),wexley (04-02-2011),whit (08-24-2010),why06 (01-10-2011),wicho_koz (12-10-2010),xCyberxx (11-13-2013),XxISayHaixX (09-10-2014),xXZombieXx (05-01-2013),xyle (08-30-2010),Yepikiyay (09-07-2010),yoyoman4567 (02-08-2011),[N.O]N.A.M.E (08-16-2011),~Silver~ (05-16-2012)

  3. #2
    mmbob's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    ja
    Posts
    653
    Reputation
    70
    Thanks
    1,157
    My Mood
    Bitchy
    Credits to Azorbix for GenerateTexture. Other than that, good job

  4. The Following User Says Thank You to mmbob For This Useful Post:

    mrcolls (10-25-2010)

  5. #3
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by mmbob View Post
    Credits to Azorbix for GenerateTexture. Other than that, good job
    Thank you, adding that now

  6. The Following User Says Thank You to CodeDemon For This Useful Post:

    bloodymac144 (10-27-2010)

  7. #4
    mastermods's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    108
    Reputation
    9
    Thanks
    42
    My Mood
    Chatty
    I vote for Stickie!!!

  8. #5
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Very Nice Actually.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  9. #6
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by whatup777 View Post
    Very Nice Actually.
    Thank you

  10. The Following User Says Thank You to CodeDemon For This Useful Post:

    bloodymac144 (10-27-2010)

  11. #7
    ipwnuuaal5's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    275
    Reputation
    16
    Thanks
    33
    the dip bypass.

  12. #8
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Lol Cant believe we went 1 month on MPGH with no DIP. /
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  13. #9
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Lol I call Light chams overlay chams...

  14. #10
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    DIP is easy LOL

  15. #11
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by Stephen View Post
    DIP is easy LOL
    trollollooloolol

  16. #12
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Nope. When you get back ill give to you. dont leeeecchhhh it tho

  17. #13
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Quote Originally Posted by Crash View Post
    trollollooloolol
    And what about your sig.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  18. #14
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by Stephen View Post
    Nope. When you get back ill give to you. dont leeeecchhhh it tho
    I am back son.

  19. #15
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Oh. Im at school. Sooo stay on the comp for like 3 more hours XD

Page 1 of 10 123 ... LastLast

Similar Threads

  1. [Release] [LECHEED] -- Ghostmode, glitch hack, chams, speed, and more--
    By mhmnk in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 09-26-2009, 02:05 PM
  2. want chams,wallhack and more
    By OSCAR496 in forum Combat Arms Discussions
    Replies: 5
    Last Post: 09-07-2009, 11:03 AM
  3. RE: [ Release] Combat arms:Chams,Nospread and more...
    By eddieg in forum Combat Arms Hacks & Cheats
    Replies: 75
    Last Post: 07-31-2009, 09:35 AM
  4. RE: [ Release] Combat arms:Chams,Nospread and more...
    By eddieg in forum Combat Arms Hacks & Cheats
    Replies: 27
    Last Post: 07-29-2009, 09:57 PM
  5. RE: [ Release] Combat arms:Chams,Nospread and more...
    By eddieg in forum Combat Arms Hacks & Cheats
    Replies: 99
    Last Post: 07-28-2009, 05:49 PM