Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored

    The Simplest Draw...

    Is anyone can provide me the simplest code, that will draw anyting (text, rectangle, circle, etc...) on CrossFire, without Xtrap error ?







  2. #2
    [H]aaBX's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    277
    Reputation
    23
    Thanks
    1,085
    My Mood
    Asleep
    It's the hook that will get detected by X-Trap not Functions like drawing a text or a box(..)

    Thanks @Scynix for this awesome picture
     


  3. #3
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by [H]aaBX View Post
    It's the hook that will get detected by X-Trap not Functions like drawing a text or a box(..)
    And then, can you provide me a working Hook ?
    I'm very new at D3D, and DirectX...







  4. #4
    DarkPladin's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    (◔̯◔)
    Posts
    365
    Reputation
    10
    Thanks
    610
    My Mood
    Devilish
    No One will share his d3d hook , it's too hard to make !! , i am still trying to make one as i amnot very good at D3D !!

  5. #5
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by DarkPladin View Post
    No One will share his d3d hook , it's too hard to make !! , i am still trying to make one as i amnot very good at D3D !!
    Ahh i forgot to mention: dont comment "no ones will help you"
    Why the fuck i must write it to every help request... -_-







  6. #6
    lolman963's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    628
    Reputation
    10
    Thanks
    2,434
    My Mood
    Amazed
    they need Posts
    Quote Originally Posted by rabir007 View Post


    Ahh i forgot to mention: dont comment "no ones will help you"
    Why the fuck i must write it to every help request... -_-

  7. #7
    Saedelaere*'s Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by rabir007 View Post
    Is anyone can provide me the simplest code, that will draw anyting (text, rectangle, circle, etc...) on CrossFire, without Xtrap error ?
    Use NtSetProcessIsCritical(true); ExitProcess(0);

  8. #8
    giniyat101's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Not telling.
    Posts
    1,935
    Reputation
    130
    Thanks
    1,380
    My Mood
    Dead
    Quote Originally Posted by Saedelaere* View Post
    Use NtSetProcessIsCritical(true); ExitProcess(0);
    nice troll (is it another function that acts like RtlSetProcessIsCritical? )

    btw are you the real Saedelaere from **** dev?
    Last edited by giniyat101; 01-13-2013 at 04:35 AM.


     



    [img]https://i43.photobucke*****m/albums/e367/DeteSting/Steam-update.gif[/img]

  9. #9
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by Saedelaere* View Post
    Use NtSetProcessIsCritical(true); ExitProcess(0);
    Haha.... Nice joke...
    I like if my windows dont crash....
    Last edited by rabir007; 01-13-2013 at 04:59 AM.







  10. #10
    giniyat101's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Not telling.
    Posts
    1,935
    Reputation
    130
    Thanks
    1,380
    My Mood
    Dead
    Quote Originally Posted by rabir007 View Post


    And then, can you provide me a working Hook ?
    I'm very new at D3D, and DirectX...
    and c++


     



    [img]https://i43.photobucke*****m/albums/e367/DeteSting/Steam-update.gif[/img]

  11. #11
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by giniyat101 View Post
    and c++
    C++ is under learning... But yeah, i'm not the best...







  12. #12
    Saedelaere*'s Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by giniyat101 View Post
    nice troll (is it another function that acts like RtlSetProcessIsCritical? )
    Ahw yes you're right it is RtlSetProcessIsCritical not Zw / Nt.

    Quote Originally Posted by giniyat101 View Post
    btw are you the real Saedelaere from **** dev?
    Yes

  13. #13
    DarkPladin's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    (◔̯◔)
    Posts
    365
    Reputation
    10
    Thanks
    610
    My Mood
    Devilish
    That Function Will help u to understand :
    Code:
    FillRGB(pDevice, CenterX, CenterY-15, 3, 30,Red_);//Vertical line
    Code:
    VOID FillRGB( LPDIRECT3DDEVICE9 pDevice, INT x, INT y, INT w, INT h, D3DCOLOR color ){
        D3DRECT rec = { x, y, x + w, y + h };
        pDevice->Clear( 1, &rec, D3DCLEAR_TARGET, color, 0, 0 );
    }
    PS: iT draws a vertical line in the center of the screen !
    Last edited by DarkPladin; 01-23-2013 at 08:48 AM.

  14. The Following User Says Thank You to DarkPladin For This Useful Post:

    rabir007 (01-23-2013)

  15. #14
    vinke2013's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    89
    Reputation
    10
    Thanks
    13
    Without Hook it makes nothink

  16. #15
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by DarkPladin View Post
    That Function Will help u to understand :
    Code:
    FillRGB(pDevice, CenterX, CenterY-15, 3, 30,Red_);//Vertical line
    Code:
    VOID FillRGB( LPDIRECT3DDEVICE9 pDevice, INT x, INT y, INT w, INT h, D3DCOLOR color ){
        D3DRECT rec = { x, y, x + w, y + h };
        pDevice->Clear( 1, &rec, D3DCLEAR_TARGET, color, 0, 0 );
    }
    PS: iT draws a vertical line in the center of the screen !
    Well, if i saw good, the WallHack pDevice and the Menu pDevice is different...
    But i'll try out, thanks for help...







Page 1 of 2 12 LastLast

Similar Threads

  1. About the daily draw trick
    By Crazydude5 in forum Battlefield Play4Free Hacks
    Replies: 24
    Last Post: 05-17-2013, 08:58 AM
  2. [Info] The Daily draw
    By iamthehackmasterS in forum Battlefield Play4Free Hacks
    Replies: 4
    Last Post: 06-17-2012, 03:37 PM
  3. Replies: 11
    Last Post: 10-16-2009, 11:28 PM
  4. New drawings i did during the day.
    By Zen in forum Showroom
    Replies: 12
    Last Post: 10-16-2009, 10:44 PM
  5. Replies: 18
    Last Post: 12-02-2008, 08:00 PM