Page 6 of 10 FirstFirst ... 45678 ... LastLast
Results 76 to 90 of 145
  1. #76
    ppl2pass's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    804
    Reputation
    5
    Thanks
    111
    My Mood
    Amused
    It works but it blinks...

    My Unbelievable-Kill BM:
    seeplusplus - updating address
    [YOUTUBE]nWgztMVIUYY[/YOUTUBE]

  2. #77
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    dont you need worldtoscreen for this? can someone post one?

  3. #78
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by DeadLinez View Post
    dont you need worldtoscreen for this? can someone post one?
    the WorldToScreen function is kinda always the same... all u need is the axis that the function request
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  4. #79
    Moothew =^_^='s Avatar
    Join Date
    Oct 2010
    Gender
    female
    Posts
    148
    Reputation
    10
    Thanks
    56
    My Mood
    Amazed
    Sample of w2s/esp for CF, credits DrUnKeN ChEeTaH.

    Code:
    bool WorldToScreen(LPDIRECT3DDEVICE9 pDev, CPlayer* pPlayer, D3DXVECTOR3* Pos)
    {
        D3DXVECTOR3 vWorld(pPlayer->Object->x ,pPlayer->Object->y, pPlayer->Object->z);
        D3DVIEWPORT9 viewPort = {0};
        D3DXMATRIX projection, view, world;
        pDev->GetTransform(D3DTS_VIEW, &view);
        pDev->GetTransform(D3DTS_PROJECTION, &projection);
        pDev->GetTransform(D3DTS_WORLD, &world);
        pDev->GetViewport(&viewPort);
    
        D3DXVec3Project(Pos, &vWorld, &viewPort, &projection, &view, &world);
        if(Pos->z < 1)
        {
            return true;
        }
        return false;
    }
    
    void ESP(LPDIRECT3DDEVICE9 pDevice)
    {
        //dwCShellBase is just the base of cshell.dll :/
        this->Base    = *(DWORD*)(this->dwCShellBase + 0x1F1000);
        if(this->Base != 0)
        {
            for(int i = 0; i < 33; i++)
            {
                DWORD dwStruct = (this->Base + (i * 0x1AC) + 0x784C);
                if(dwStruct)
                {
                    CPlayer *pPlayer = (CPlayer*)dwStruct;
                    
                    if((pPlayer) && (strlen(pPlayer->Name) > 2) && (pPlayer->iHealth > 0)) //check if player is alive and valid
                    {
                        D3DXVECTOR3 Position;
                        if(WorldToScreen(pDevice, pPlayer, &Position))
                        {
                            //Draw(pPlayer->Name) //Nick
                            //Draw(pPlayer->iHealth) //Health
                            //...
                        }
                    }
                }
            }
        }
    }

  5. #80
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Quote Originally Posted by Moothew =^_^= View Post
    Sample of w2s/esp for CF, credits DrUnKeN ChEeTaH.

    Code:
    bool WorldToScreen(LPDIRECT3DDEVICE9 pDev, CPlayer* pPlayer, D3DXVECTOR3* Pos)
    {
        D3DXVECTOR3 vWorld(pPlayer->Object->x ,pPlayer->Object->y, pPlayer->Object->z);
        D3DVIEWPORT9 viewPort = {0};
        D3DXMATRIX projection, view, world;
        pDev->GetTransform(D3DTS_VIEW, &view);
        pDev->GetTransform(D3DTS_PROJECTION, &projection);
        pDev->GetTransform(D3DTS_WORLD, &world);
        pDev->GetViewport(&viewPort);
    
        D3DXVec3Project(Pos, &vWorld, &viewPort, &projection, &view, &world);
        if(Pos->z < 1)
        {
            return true;
        }
        return false;
    }
    
    void ESP(LPDIRECT3DDEVICE9 pDevice)
    {
        //dwCShellBase is just the base of cshell.dll :/
        this->Base    = *(DWORD*)(this->dwCShellBase + 0x1F1000);
        if(this->Base != 0)
        {
            for(int i = 0; i < 33; i++)
            {
                DWORD dwStruct = (this->Base + (i * 0x1AC) + 0x784C);
                if(dwStruct)
                {
                    CPlayer *pPlayer = (CPlayer*)dwStruct;
                    
                    if((pPlayer) && (strlen(pPlayer->Name) > 2) && (pPlayer->iHealth > 0)) //check if player is alive and valid
                    {
                        D3DXVECTOR3 Position;
                        if(WorldToScreen(pDevice, pPlayer, &Position))
                        {
                            //Draw(pPlayer->Name) //Nick
                            //Draw(pPlayer->iHealth) //Health
                            //...
                        }
                    }
                }
            }
        }
    }
    Hey look kids! A REAL CODER!

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

    flameswor10 (11-23-2010)

  7. #81
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    I Think using GetTransform makes the blinking happen.
    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

  8. #82
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Instead of [php]PointerTo = *(DWORD*)0x3715D9A0;[/php] I can use [php]PointerTo *PT = (PointerTo*)0x3715D9A0;[/php] right?
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  9. #83
    Falingrave's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Charlotte, NC
    Posts
    1,878
    Reputation
    27
    Thanks
    387
    My Mood
    Bored
    Quote Originally Posted by Stephen View Post


    Hey look kids! A REAL CODER!
    Those Exist in this section? /

    +1 - Random Troll, Back to rez modssss.

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

    flameswor10 (11-23-2010)

  11. #84
    Moothew =^_^='s Avatar
    Join Date
    Oct 2010
    Gender
    female
    Posts
    148
    Reputation
    10
    Thanks
    56
    My Mood
    Amazed
    Stephen like to spam lol, Mr.Magicman thanks for the hot info.

  12. #85
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Hint = ILTDrawPrim to stop Flickering.
    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. #86
    ppl2pass's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    804
    Reputation
    5
    Thanks
    111
    My Mood
    Amused
    Quote Originally Posted by whatup777 View Post
    Hint = ILTDrawPrim to stop Flickering.
    how do u draw engine text..
    My Unbelievable-Kill BM:
    seeplusplus - updating address
    [YOUTUBE]nWgztMVIUYY[/YOUTUBE]

  14. #87
    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 ppl2pass View Post
    how do u draw engine text..
    You just need to call the Engines World2Screen.
    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

  15. #88
    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 whatup777 View Post


    You just need to call the Engines World2Screen.
    Nahs I still use D3DXVec3Project.

  16. #89
    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 Crash View Post
    Nahs I still use D3DXVec3Project.
    thats whats fucking up my w2s. DCing me D:
    Idkk whats wrong tho :S

  17. #90
    Natorator's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    My underpants ;D
    Posts
    8
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic
    Seriously guyss how do you hack that good ;o Im just a noob hacker with some rez modding and all And chamz but can someone send me to a tut to learn this ? I thank you greatfull

Page 6 of 10 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. dBased Help me with the update for automaton!
    By deton3000 in forum Mission Against Terror Discussions
    Replies: 3
    Last Post: 02-03-2011, 10:43 AM
  2. Help with Alteriw console for score limit and time lomit
    By r3dcomet in forum Call of Duty Modern Warfare 2 Help
    Replies: 7
    Last Post: 08-26-2010, 05:48 PM
  3. i need help with the plugin for Photoshop
    By junny2233 in forum Combat Arms Mod Discussion
    Replies: 8
    Last Post: 08-05-2010, 04:39 AM
  4. Does any got the addies for no recoil and no reload ???
    By EDWINSEE in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 07-20-2010, 04:51 PM