Page 4 of 6 FirstFirst ... 23456 LastLast
Results 46 to 60 of 80
  1. #46
    shanka007's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    My Mood
    Crappy
    what do the codes mean. what do u do with them?
    and can some1 PLEASE send me the url of a real working unpatched good hack.
    i would be REALLY greatfull
    thanks

  2. #47
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted

    Extension!

    Globals: (Top of Code)[php]
    #define PI 3.14159265//Defining what PI is. PI is a Circle
    int CenterX = GetSystemMetrics( 0 ) / 2-1;//Gets screen X resolution then cutting it in half to get the center.
    int CenterY = GetSystemMetrics( 1 ) / 2-1;//Gets screen Y resolution then cutting it in half to get the center.
    LPDIRECT3DDEVICE9 pDevice;
    ID3DXLine *pLine;[/php]


    Functions:
    [php]
    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 );
    }

    void DrawCircle(int X, int Y, int radius, int numSides, DWORD Color)
    {

    D3DXVECTOR2 Line[128];
    float Step = PI * 2.0 / numSides;
    int Count = 0;
    for (float a=0; a < PI*2.0; a += Step)
    {
    float X1 = radius * cos(a) + X;
    float Y1 = radius * sin(a) + Y;
    float X2 = radius * cos(a+Step) + X;
    float Y2 = radius * sin(a+Step) + Y;
    Line[Count].x = X1;
    Line[Count].y = Y1;
    Line[Count+1].x = X2;
    Line[Count+1].y = Y2;
    Count += 2;
    }
    pLine->Begin();
    pLine->Draw(Line,Count,Color);
    pLine->End();
    }

    void DrawPoint(int x, int y, int w, int h, DWORD color)
    {
    FillRGB((int)x, (int)y, (int)w, (int)h, color);

    }

    void DrawLine(float x, float y, float x2, float y2, float width, DWORD color)
    {
    D3DXVECTOR2 vLine[2];
    pLine->SetWidth( width );
    pLine->SetAntialias( false );
    pLine->SetGLLines( true );
    vLine[0].x = x;
    vLine[0].y = y;
    vLine[1].x = x2;
    vLine[1].y = y2;
    pLine->Begin();
    pLine->Draw( vLine, 2, color );
    pLine->End();
    }[/php]





    Drawing code:
    (Example)



    [php]DrawCircle(CenterX-1,CenterY-1,8,8,Red);//Circle
    FillRGB(CenterX-13, CenterY, 10, 1,Red,pDevice);//Left line
    FillRGB(CenterX+4, CenterY, 10, 1,Red,pDevice);//Right line
    FillRGB(CenterX, CenterY-13, 1, 10,Red,pDevice);//Top line
    FillRGB(CenterX, CenterY+4, 1, 10,Red,pDevice);//Bottom line
    DrawLine(CenterX+15,CenterY+15,CenterX+3,CenterY+3 ,2,Red);// Bottom right to center
    DrawLine(CenterX-15,CenterY+15,CenterX-3,CenterY+3,2,Red);//Bottom left to center
    DrawLine(CenterX+15,CenterY-15,CenterX+3,CenterY-3,2,Red);//Top right to center
    DrawLine(CenterX-15,CenterY-15,CenterX-3,CenterY-3,2,Red);//Top left to center
    DrawPoint(CenterX,CenterY,1,1,Green);//Dot point[/php]







    Drawing Code:
    (Example)



    [php]DrawCircle(CenterX,CenterY,8,8,White);

    FillRGB(CenterX-20, CenterY, 40, 1,Purple,pDevice);//Purple
    FillRGB(CenterX, CenterY-20, 1, 40,Purple,pDevice);

    FillRGB(CenterX-17, CenterY, 34, 1,Blue,pDevice);//Blue
    FillRGB(CenterX, CenterY-17, 1, 34,Blue,pDevice);

    FillRGB(CenterX-14, CenterY, 28, 1,Cyan,pDevice);//Cyan
    FillRGB(CenterX, CenterY-14, 1, 28,Cyan,pDevice);

    FillRGB(CenterX-11, CenterY, 22, 1,Green,pDevice);//Green
    FillRGB(CenterX, CenterY-11, 1, 22,Green,pDevice);

    FillRGB(CenterX-9, CenterY, 18, 1,Yellow,pDevice);//Yellow
    FillRGB(CenterX, CenterY-9, 1, 18,Yellow,pDevice);

    FillRGB(CenterX-6, CenterY, 12, 1,Orange,pDevice);//Orange
    FillRGB(CenterX, CenterY-6, 1, 12,Orange,pDevice);

    FillRGB(CenterX-3, CenterY, 6, 1,Red,pDevice);//Red
    FillRGB(CenterX, CenterY-3, 1, 6,Red,pDevice);[/php]


    [Credits to Rusty for basic code]

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  3. #48
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by CAFlames View Post
    Globals: (Top of Code)[php]
    #define PI 3.14159265//Defining what PI is. PI is a Circle
    int CenterX = GetSystemMetrics( 0 ) / 2-1;//Gets screen X resolution then cutting it in half to get the center.
    int CenterY = GetSystemMetrics( 1 ) / 2-1;//Gets screen Y resolution then cutting it in half to get the center.
    LPDIRECT3DDEVICE9 pDevice;
    ID3DXLine *pLine;[/php]


    Functions:
    [php]
    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 );
    }

    void DrawCircle(int X, int Y, int radius, int numSides, DWORD Color)
    {

    D3DXVECTOR2 Line[128];
    float Step = PI * 2.0 / numSides;
    int Count = 0;
    for (float a=0; a < PI*2.0; a += Step)
    {
    float X1 = radius * cos(a) + X;
    float Y1 = radius * sin(a) + Y;
    float X2 = radius * cos(a+Step) + X;
    float Y2 = radius * sin(a+Step) + Y;
    Line[Count].x = X1;
    Line[Count].y = Y1;
    Line[Count+1].x = X2;
    Line[Count+1].y = Y2;
    Count += 2;
    }
    pLine->Begin();
    pLine->Draw(Line,Count,Color);
    pLine->End();
    }

    void DrawPoint(int x, int y, int w, int h, DWORD color)
    {
    FillRGB((int)x, (int)y, (int)w, (int)h, color);

    }

    void DrawLine(float x, float y, float x2, float y2, float width, DWORD color)
    {
    D3DXVECTOR2 vLine[2];
    pLine->SetWidth( width );
    pLine->SetAntialias( false );
    pLine->SetGLLines( true );
    vLine[0].x = x;
    vLine[0].y = y;
    vLine[1].x = x2;
    vLine[1].y = y2;
    pLine->Begin();
    pLine->Draw( vLine, 2, color );
    pLine->End();
    }[/php]





    Drawing code:
    (Example)



    [php]DrawCircle(CenterX-1,CenterY-1,8,8,Red);//Circle
    FillRGB(CenterX-13, CenterY, 10, 1,Red,pDevice);//Left line
    FillRGB(CenterX+4, CenterY, 10, 1,Red,pDevice);//Right line
    FillRGB(CenterX, CenterY-13, 1, 10,Red,pDevice);//Top line
    FillRGB(CenterX, CenterY+4, 1, 10,Red,pDevice);//Bottom line
    DrawLine(CenterX+15,CenterY+15,CenterX+3,CenterY+3 ,2,Red);// Bottom right to center
    DrawLine(CenterX-15,CenterY+15,CenterX-3,CenterY+3,2,Red);//Bottom left to center
    DrawLine(CenterX+15,CenterY-15,CenterX+3,CenterY-3,2,Red);//Top right to center
    DrawLine(CenterX-15,CenterY-15,CenterX-3,CenterY-3,2,Red);//Top left to center
    DrawPoint(CenterX,CenterY,1,1,Green);//Dot point[/php]







    Drawing Code:
    (Example)



    [php]DrawCircle(CenterX,CenterY,8,8,White);

    FillRGB(CenterX-20, CenterY, 40, 1,Purple,pDevice);//Purple
    FillRGB(CenterX, CenterY-20, 1, 40,Purple,pDevice);

    FillRGB(CenterX-17, CenterY, 34, 1,Blue,pDevice);//Blue
    FillRGB(CenterX, CenterY-17, 1, 34,Blue,pDevice);

    FillRGB(CenterX-14, CenterY, 28, 1,Cyan,pDevice);//Cyan
    FillRGB(CenterX, CenterY-14, 1, 28,Cyan,pDevice);

    FillRGB(CenterX-11, CenterY, 22, 1,Green,pDevice);//Green
    FillRGB(CenterX, CenterY-11, 1, 22,Green,pDevice);

    FillRGB(CenterX-9, CenterY, 18, 1,Yellow,pDevice);//Yellow
    FillRGB(CenterX, CenterY-9, 1, 18,Yellow,pDevice);

    FillRGB(CenterX-6, CenterY, 12, 1,Orange,pDevice);//Orange
    FillRGB(CenterX, CenterY-6, 1, 12,Orange,pDevice);

    FillRGB(CenterX-3, CenterY, 6, 1,Red,pDevice);//Red
    FillRGB(CenterX, CenterY-3, 1, 6,Red,pDevice);[/php]


    [Credits to Rusty for basic code]
    why are you dividing by 2 then -1?
    Just divide by to gives you center?

  4. #49
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    yah thats the way i do it too -_-

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  5. #50
    xor's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Bored
    what program do i use to compile this? i want to learn to do this type of hacks as, crosshairs, chams, aimbot, nametags, hpbars how to start?

  6. #51
    FckH4c0R's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    My Mood
    Sleepy

    Question

    looks very nice, what proggramms do i need?

  7. #52
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    Quote Originally Posted by FckH4c0R View Post
    looks very nice, what proggramms do i need?
    Use C++, Best Coding Software for Computer Game Hacking.

    Thanks Cosmos


  8. #53
    FckH4c0R's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    My Mood
    Sleepy
    Quote Originally Posted by kongamonga View Post
    Use C++, Best Coding Software for Computer Game Hacking.
    yea i have this but when i write the code, all is underlined red :/

  9. #54
    Monkunaro's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    3
    My Mood
    Amused
    WHERE IS THE DOWNLOAD TO HACK

  10. #55
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by Monkunaro View Post
    WHERE IS THE DOWNLOAD TO HACK
    Idiot.

  11. #56
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    Quote Originally Posted by Monkunaro View Post
    WHERE IS THE DOWNLOAD TO HACK
    Yeah, where is it
    i wanna download some hax hax hax
    The Internet SHOULD Be Illegal

    When you say
    "Java is a great programming language because it works on all platforms"
    it is just like
    "anal sex is great because it works on all genders"

    Are YOU a Troll?

  12. #57
    saruman09's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    thank you my friend

  13. #58
    sihou1's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    hawaii
    Posts
    55
    Reputation
    9
    Thanks
    4
    My Mood
    Aggressive
    how do i even use these codes. i am really noob

  14. #59
    whit+'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    264
    Reputation
    10
    Thanks
    37
    My Mood
    Breezy
    Quote Originally Posted by sihou1 View Post
    how do i even use these codes. i am really noob

    Microsoft's C++ IDE

  15. #60
    sihou1's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    hawaii
    Posts
    55
    Reputation
    9
    Thanks
    4
    My Mood
    Aggressive
    wheres the decompiler?

Page 4 of 6 FirstFirst ... 23456 LastLast

Similar Threads

  1. [Release] D3D Crosshair V3.0 - (Uprade + Release)
    By AeroMan in forum WarRock - International Hacks
    Replies: 27
    Last Post: 02-20-2010, 12:43 PM
  2. [Release] [Undetected] D3D Crosshair
    By AeroMan in forum WarRock - International Hacks
    Replies: 79
    Last Post: 02-16-2010, 01:05 PM
  3. [Release] My New D3D Crosshair SOURCECODE
    By HerrArkanes in forum CrossFire Hacks & Cheats
    Replies: 28
    Last Post: 12-22-2009, 09:40 PM
  4. A vidtut for d3d crosshairs?
    By Lolland in forum Programming Tutorial Requests
    Replies: 1
    Last Post: 10-06-2009, 09:59 AM
  5. d3d crosshair
    By qsc in forum C++/C Programming
    Replies: 17
    Last Post: 06-22-2009, 12:57 PM