Page 1 of 7 123 ... LastLast
Results 1 to 15 of 103
  1. #1
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547

    Thumbs up |HowTo| Make hack for AVA

    What you need:
    C++ 2008, 2010 (not matter)
    Direct 3D Starter Kit (Here my upload: Download the atthament, in there's link. this prevent leeching)

    Setting up C++
    Note if you do this wrong you will get d3d9.lib linker and d3d9.h not found errors, do not even bother to ask me how to fix them. The only reason it doesn't work, it's because you didn't do it right you douche.

    First copy the workspacesm
    Open folder "D3DKit\D3D_Starterkit_v3.0b\D3D9\old_workspac e"
    Select the two files: TatniumD3D.dsp and TatniumD3D.dsw

    Copy these two files to "D3DKit\D3D_Starterkit_v3.0b\D3D9"
    And double click on the workspace named TatniumD3D.dsw

    We need to set the directories, if we don't all the files that are needed for this to work will not be found and c++ is going to yell at you.

    Goto tools at the very top of your screen and move down to options
    Next hit the tab with the caption "Directories"



    Next click the create new button circled in red above, once a 'editable' field is added into the list type the location of your directx sdk installation + \Include.

    Mine is: D:\Program Files\Microsoft DirectX SDK (June 2006)\Include (Don't got much space on c)

    Next hit the "Show Directories for:" combo list and go down to "Library files"

    This time instead of adding "your_sdk_installation + \Include":

    If you have a 32 bit system installed add "your_sdk_installation + \Lib\x86"
    If you have a 64 bit system installed add "your_sdk_installation + \Lib\x64"



    Press OK

    Adding code to the kit

    In the very left expand the "TatniumD3D" then expand "Source Files" then "d3d9_C" now that you see a list of .cpp files click "d3d9dev.cpp"



    We will be adding code to this file, the following sections are how to add cheats to your dll


    Changing your team mates / enemies / or any other object in the game to be pink
    Make a variable right after all the includes at the very top, this is so we create the textures only once
    Code:
    int a=1;
    The following is for D3DXCreateTextureFromFileInMemory, right after you variable a put this new declaration for your pink color:

    Code:
    LPDIRECT3DTEXTURE9 xxxPink;
    Now declare and assign bPink (It's the pink color duh)

    Code:
    const BYTE bPink[58] = 
    {
        0x42, 0x4D, 0x3A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
        0x00, 0x36, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 
        0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 
        0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
        0x80, 0x00, 0xFF, 0x00
    };
    Notice, we can't use RGB or Long colors here

    Ok now we do this:
    Now find the following code in the kit:
    Code:
    HRESULT APIENTRY hkIDirect3DDevice9::BeginScene() 
    {
    	
    }
    Add above return m_pD3Ddev->BeginScene();
    Code:
    	if (a==1) //Thank you gc_Admin, I pmed him for this with a big thanks
    	{
    		D3DXCreateTextureFromFileInMemory(m_pD3Ddev,(LPCVOID)&bPink,58,&xxxPink);
    		a=0;	
    	}
    Ok now let's go to

    Code:
    HRESULT APIENTRY hkIDirect3DDevice9::DrawIndexedPrimitive(D3DPRIMITIVETYPE Type,INT BaseVertexIndex,UINT MinVertexIndex,UINT NumVertices,UINT startIndex,UINT primCount)
    {
    	
    return m_pD3Ddev->DrawIndexedPrimitive(Type,BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
    }
    right before the return add this:
    Explanation for NumVertices, each game has different Vertices for different objects. The following collection of Vertices are for the American Team for battlefield 2. This will draw all bf2 american players as pink helping you to distingiush your enemy better

    Code:
    if(NumVertices == 1270 || NumVertices == 456 || NumVertices == 2675 || NumVertices == 495 || NumVertices == 2240 || NumVertices == 782 || NumVertices == 662 || NumVertices == 398 || NumVertices == 361 || NumVertices == 1073 || NumVertices == 2341 || NumVertices == 2549 || NumVertices == 2148 || NumVertices == 2303 || NumVertices == 518)
    {
    	m_pD3Ddev->SetTexture(0,xxxPink);
    	return m_pD3Ddev->DrawIndexedPrimitive(Type,BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
    } else {
    	return m_pD3Ddev->DrawIndexedPrimitive(Type,BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
    }
    --End Bitchez--

    Forcing the game to run in wireframe mode
    If you want wall hack add this into
    Code:
    m_pD3Ddev->SetRenderState(D3DRS_ZENABLE, D3DZB_FALSE);
    m_pD3Ddev->DrawIndexedPrimitive(Type,BaseVertexIndex, MinVertexIndex, NumVertices, startIndex, primCount);
    m_pD3Ddev->SetRenderState(D3DRS_ZENABLE, D3DZB_TRUE);
    If you want to change textures add this
    ..

    Compiling

    Simple,


    Click the bulid button

    You debug window (the one at the bottom) should show this:

    Code:
    --------------------Configuration: TatniumD3D - Win32 Debug--------------------
    Compiling...
    d3d9dev.cpp
    Linking...
    
    yourdll.dll - 0 error(s), 0 warning(s)
    Note: You can goto project then settings and click on the link tab to change the dll name

    To find your compiled dll name goto the newly created "/debug/" folder in the "D3DKit\D3D_Starterkit_v3.0b\D3D9" directory.. tada!


    CREDITS:

    Neo_Reloaded
    and the guy who made d3d starter kit

    ENJOY!

    PS: we're looking for AVA coders.















    READ:::: learn c++ (VIDEO TUTS) www.xoax.net
    Last edited by /b/oss; 05-05-2011 at 08:04 AM.

  2. The Following 127 Users Say Thank You to /b/oss For This Useful Post:

    2651993 (11-25-2012),7uZioN (08-13-2011),94405433 (07-27-2012),aarguellocr (10-13-2012),aimedboy (09-30-2012),Alcadeus (11-05-2012),apathy (08-26-2012),ariciu (07-20-2011),AVA Hacker (08-25-2012),batheeb (05-04-2012),BigRedWhale (02-14-2013),Blaster159 (08-22-2012),bobo1969 (09-26-2012),boomboza6 (08-12-2011),braden69 (08-23-2012),CAFlames (02-12-2011),calmiie (08-27-2012),ccman32 (05-24-2012),ChargerRt6 (05-17-2012),chenxiu94 (03-11-2013),confict (08-28-2010),crosscesard11hacker (05-18-2011),daniellol1 (01-31-2013),denniskoza (09-22-2012),diodanu (07-30-2012),donalan (07-20-2012),dustpan (05-27-2012),EPc (08-05-2012),eroleren (05-10-2012),erunimati (05-24-2012),Fickfighter (07-12-2012),FireMfox (03-27-2013),Frought (09-25-2012),GIV3ND3ATH (01-05-2013),Gun_Adder (10-03-2012),Hack AVA (06-02-2012),hanspirot (03-02-2011),Henry-john Kempr (05-05-2012),heohanwuoc (10-16-2012),heydiddledagain (08-30-2010),Hi123123 (09-27-2012),hikiseki (09-21-2012),hmo506 (12-30-2012),holmestorky (12-20-2012),Hubert2 (10-10-2012),humita (01-31-2013),IrmGunsProject (02-27-2013),iSlackrz (07-23-2011),izonda (07-10-2012),J0shin707 (08-28-2010),jamesb0nd (07-19-2011),jeremyg6 (03-16-2013),jocs10000 (09-06-2012),jojijsh7 (01-08-2011),joname (04-23-2012),k3nzO (02-24-2013),kai83 (08-03-2012),kankashifan237 (06-21-2012),kartpal (02-27-2013),KivaTa (04-30-2012),kjng145 (03-24-2013),klarenz (04-08-2011),Krilltaz (10-13-2012),l3thalxsmile (05-14-2012),lanacif (09-17-2012),ledimiku (01-22-2013),Lehsyrus (06-12-2011),leiite001 (01-22-2013),leontin (01-06-2013),lessthanenough (03-04-2013),lilalphaxc (07-18-2011),loko151 (01-29-2013),lolmlk1 (05-22-2011),lucian30 (06-05-2012),LWood3301 (04-26-2012),MafiakinG (07-17-2012),marakiss (05-01-2012),marica (12-04-2012),markchua11 (09-12-2012),matchboy7 (05-06-2012),mikrofoniasss (05-30-2011),miniboucherie (03-26-2013),Miraia (03-12-2013),modylolo (01-08-2013),modysoby (04-11-2013),motmar15 (03-01-2013),muni126 (02-22-2013),nigeria23 (04-23-2012),noleash (08-28-2010),now22 (05-18-2012),Olsson00 (01-31-2013),p0w4own3rz (07-14-2012),PASO (07-30-2012),pavlo33 (01-14-2013),pintade (03-01-2013),pipay88 (07-19-2012),pockamock (05-03-2012),Predator (05-25-2012),prokilla_1 (08-31-2012),Pusedda (10-13-2012),Quericoz (05-17-2012),r00 (08-29-2011),ravens46 (12-31-2012),ravens469 (03-20-2016),remondis59 (06-16-2011),richardtreier (09-01-2010),RoxonPL (08-23-2012),Rullez (03-03-2013),ruzodiac (01-15-2013),sahin4ever (07-10-2012),sandy2012 (09-17-2012),Shojo (11-06-2010),simonsong (05-10-2012),SlitherX (07-25-2011),soulnite12 (01-11-2013),stephenchung1336 (01-12-2013),swarnob93 (11-06-2010),szacsee (09-09-2010),techmage12 (08-02-2011),theorc (03-12-2013),titotiti (04-30-2012),TuPut4 (07-11-2012),warrior112 (08-11-2011),waymond88 (08-18-2012),XenXable (09-08-2012),zaki45 (09-18-2011),zmamyunder (03-12-2013)

  3. #2
    confict's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    422
    Reputation
    3
    Thanks
    290
    My Mood
    Relaxed
    Lol I'm gonna try this rightaway xD

    damn, No attachment

    ITS MEH BITCHESSS !!!

  4. #3
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    i added attham. good luck. hope you get succesful!

    you still don't see it???
    Last edited by /b/oss; 08-28-2010 at 07:20 AM.

  5. The Following 2 Users Say Thank You to /b/oss For This Useful Post:

    AVA Hacker (08-25-2012),vanhellsing (12-18-2010)

  6. #4
    confict's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    422
    Reputation
    3
    Thanks
    290
    My Mood
    Relaxed
    Quote Originally Posted by m_t_h View Post
    i added attham. good luck. hope you get succesful!

    you still don't see it???
    See it now :P
    I made some menu hacks for CA so I will try this to :P

    #edit

    I need vc06 to open this shizzl lolz
    Last edited by confict; 08-28-2010 at 07:42 AM.

    ITS MEH BITCHESSS !!!

  7. #5
    Phantazy's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Egypt , Alexandria
    Posts
    1,485
    Reputation
    73
    Thanks
    160
    My Mood
    Angelic
    sounds like alot of work and i dont know a sting bout programming well its time to get back to school but to learn something useful this time
    Gifts
    My Specs:
    Intel(R) Core(TM) i7 CPU 860@2.80GHz (8CPU)
    2.00GB RAMs DDR3
    Windows 7 Home Premium SP1
    ATI HD4670 1770MBs
    1.2TB Hard Disk

  8. The Following User Says Thank You to Phantazy For This Useful Post:

    klarenz (04-08-2011)

  9. #6
    confict's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    422
    Reputation
    3
    Thanks
    290
    My Mood
    Relaxed
    Quote Originally Posted by flamesdevil View Post
    sounds like alot of work and i dont know a sting bout programming well its time to get back to school but to learn something useful this time
    This is pretty basic stuff to be honest

    I will search for vb6C++ tomorow
    I drinked to much for tonight..

    I will tell you if I succeed :P

    ITS MEH BITCHESSS !!!

  10. #7
    noleash's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Under your bed!
    Posts
    146
    Reputation
    10
    Thanks
    81
    My Mood
    Flirty
    Nice tut m8, thanks for sharing as I asked




  11. #8
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    you don't need VC06....... use 2008/10, its better!

  12. #9
    confict's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    422
    Reputation
    3
    Thanks
    290
    My Mood
    Relaxed
    Quote Originally Posted by m_t_h View Post
    you don't need VC06....... use 2008/10, its better!
    Can't open it in 2008
    It says convert to VC++2008 failed..

    ITS MEH BITCHESSS !!!

  13. #10
    noleash's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Under your bed!
    Posts
    146
    Reputation
    10
    Thanks
    81
    My Mood
    Flirty
    huh... so, I need VC++ or VC# or something else? I got VC++ can I work in it?




  14. #11
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    sure. you need VC++ or C++ express

  15. #12
    -punisher-'s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    wow thanks for the great tut. really helped me

  16. #13
    Toshie's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    In a dark place
    Posts
    6,271
    Reputation
    48
    Thanks
    393
    Quote Originally Posted by -punisher- View Post
    thanks for the tut. will try to make some hacks and pwn lol, great tutorial
    double post=ban

  17. #14
    noleash's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Under your bed!
    Posts
    146
    Reputation
    10
    Thanks
    81
    My Mood
    Flirty
    Quote Originally Posted by Toshie View Post
    double post=ban
    Man, don't be like that you already were a newbie, and punisher, please read the rules before you post... and one of the rules are, as Toshie said, double post = ban...




  18. The Following User Says Thank You to noleash For This Useful Post:

    /b/oss (08-30-2010)

  19. #15
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    already deleted his second post. also i swear you this thread won't be spammed.

Page 1 of 7 123 ... LastLast

Similar Threads

  1. are there hacks for ava online?
    By hoganjason in forum Suggestions, Requests & General Help
    Replies: 3
    Last Post: 10-01-2009, 08:27 PM
  2. HOW TO MAKE HACKS FOR BLACKSHOT.
    By joshxcore in forum Programming Tutorial Requests
    Replies: 0
    Last Post: 07-13-2009, 09:47 AM
  3. Dave can u make hacks for this game?
    By Forsaken_One in forum Suggestions, Requests & General Help
    Replies: 7
    Last Post: 05-30-2009, 04:17 PM
  4. Dave can u make hacks for this game?
    By Forsaken_One in forum General
    Replies: 5
    Last Post: 05-24-2009, 05:32 PM
  5. Can We Make Hacks For BF 1942?
    By Bloodwalkers in forum Battlefield 2 Hacks & Cheats
    Replies: 4
    Last Post: 03-09-2009, 10:52 AM