Thread: Box ESP

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 54
  1. #16
    quetreo03's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    sseewq
    Posts
    17
    Reputation
    10
    Thanks
    0
    NO TUTORIAL, WE CANT USE IT.... DELETE THIS POST FOR SHIT

  2. #17
    Jerymiah94's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Vancouver B.C , Canada
    Posts
    478
    Reputation
    17
    Thanks
    61
    My Mood
    Aggressive
    Quote Originally Posted by the1domo View Post
    ok it is my Box ESP for you all

    Code:
    inline void DrawBoundingBox (UCanvas* Canvas, APawn* Target)
    {
        FVector X,Y,Z,D,E,top,bottom;;
        float width, Left, Right, Top, Bot;
    
        GetAxes(MyCameraRotation,X,Y,Z);
    
        D.X = Target->Location.X - MyCameraLocation.X;
        D.Y = Target->Location.Y - MyCameraLocation.Y;
        D.Z = Target->Location.Z - MyCameraLocation.Z;
    
        if(Dot(D,X) <= cos(90 * 3.14159265 / 180))
            return;
    
        FBoxSphereBounds Player = Target->Mesh->Bounds;
    
        top = Target->Location;
        top = WorldToScreen(Canvas,top);
    
        bottom = Player.BoxExtent;
        bottom = WorldToScreen(Canvas,bottom);
    
        width = ((top.Y - bottom.Y) / 3);
    
        Left  = top.X + width;
        Right = top.X - width;
        Top   = top.Y;
        Bot   = bottom.Y;
    
        Canvas->Draw2DLine(Left,  Top, Left,  Bot, Green);
        Canvas->Draw2DLine(Left,  Bot, Right, Bot, Green);
        Canvas->Draw2DLine(Right, Bot, Right, Top, Green);
        Canvas->Draw2DLine(Right, Top, Left,  Top, Green);
    }
    Im just amaze how you guys can create this kind of code! can you pm me a tut on how to get one of this.
    [IMG]https://i594.photobucke*****m/albums/tt30/sevenzero/pinoy.gif[/IMG]
    [IMG]https://i1139.photobucke*****m/albums/n554/Jerymiah94/Untitled-1.jpg[/IMG]
    Respect List:
    1) supercarz1991
    2) Drigien

    Mods: https://www.mpgh.net/forum/210-combat...ed-chamms.html

  3. #18
    tatan19's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    @domo

    can u help me with teamcheck/enemy please my client crashes
    if i use
    if(APBPawnTarget->m_MissionSideInfo.m_nSideID != APBPawn->m_MissionSideInfo.m_nSideID)
    {
    ......
    }

  4. #19
    Waverunner's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by tatan19 View Post
    @domo

    can u help me with teamcheck/enemy please my client crashes
    if i use
    if(APBPawnTarget->m_MissionSideInfo.m_nSideID != APBPawn->m_MissionSideInfo.m_nSideID)
    {
    ......
    }
    Try something like this:

    if(APBPawnTarget->m_MissionSideInfo.m_nMissionUID == APBPawn->m_MissionSideInfo.m_nMissionUID


    APBPawnTarget->m_MissionSideInfo.m_nMissionUID != 0

  5. #20
    bwarrior's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    1
    just check the faction than you dont need to screw around whit the sideID

  6. #21
    gogodr's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    25
    if someone gets the pointers, an aimbot is really not much work after this.

  7. #22
    bwarrior's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by gogodr View Post
    if someone gets the pointers, an aimbot is really not much work after this.
    LOL 'not much work after this' do you even ever wrote a hack, this is when all the works starts and making a decent aimbot is defintly not simple and you need to think of alot of things like finding the best target checking if he is visble ping corr, ...

    But yea like i seen here this is more a leecher forum than a forum where people are making hacks so its normal i think to find such stupid comments here

  8. #23
    genma69's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    107
    Reputation
    10
    Thanks
    35
    My Mood
    Sneaky
    Quote Originally Posted by bwarrior View Post
    LOL 'not much work after this' do you even ever wrote a hack, this is when all the works starts and making a decent aimbot is defintly not simple and you need to think of alot of things like finding the best target checking if he is visble ping corr, ...

    But yea like i seen here this is more a leecher forum than a forum where people are making hacks so its normal i think to find such stupid comments here
    in a part you're right...i wonder now if this thing is detected or not...like a noobie i think how to make things udetectable...is not explained...but you need a way to bypass the check of the game...injection is detectable...aimbot could be more easy than think...i mean is not necessary to code on the game but only on the esp hack...
    [CENTER]i followed this forum with different accounts...for purpouse, secret or forgetting the password .
    I'm quite skilled in fps and computer...so don't try to fake me cause is useless [IMG]https://i579.photobucke*****m/albums/ss233/07k1160/onion/19.gif[/IMG]

  9. #24
    tatan19's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Waverunner View Post
    if(APBPawnTarget->m_MissionSideInfo.m_nMissionUID == APBPawn->m_MissionSideInfo.m_nMissionUID
    still geting client crash

    anyway to contact u bwarrior?

  10. #25
    Ryuesi's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Right here.
    Posts
    7,339
    Reputation
    413
    Thanks
    2,397
    My Mood
    Relaxed
    Thank You For Sharing





    Contributor Since 24-11-2011 ~ 26-12-2011
    VM / PM




  11. #26
    bwarrior's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by genma69 View Post
    in a part you're right...i wonder now if this thing is detected or not...like a noobie i think how to make things udetectable...is not explained...but you need a way to bypass the check of the game...injection is detectable...aimbot could be more easy than think...i mean is not necessary to code on the game but only on the esp hack...
    Those things you can find about how pb detects hacks and how to make your hack undetectable again (but this is for the creator only) and its not the injection thats detected the thing that happens most now is pattern/sing scans and these are only effective if they have your hack so if your hack is not public it will stay undetected for verry long (maybe even forever) thats why you dont see much public hacks also.
    And you dont code on the game to find offsets you need to disassemble it and search for it and i think you mean making a SDK from the game when you say "code on the game" and if you can acc pull that off than yes the "hack" is easier to make than making a SDK (i dont realy looked into making a SDK but it doenst seem that simple)

    Quote Originally Posted by tatan19 View Post
    still geting client crash

    anyway to contact u bwarrior?
    i think you are that simley face on uc if so i already answerd theire
    Last edited by bwarrior; 07-24-2011 at 02:54 AM.

  12. #27
    tatan19's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    @bwarrior
    ye thank u alot got it working!
    and how did u fix the Box ESP sizing if u rotate the camera up and down?

  13. #28
    xMrxMafiax's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    You really didn't do anything for a tutorial, you just said "What these are for". Show us the steps etc. please.

  14. #29
    ImScaredPT's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Lisbon
    Posts
    63
    Reputation
    10
    Thanks
    0
    My Mood
    In Love
    Rofl this is amazing... Everyone begging to get a tut =D

    --------------------------------------------------
    Love you now and forever
    Haha =D
    Love is a awesome thing
    Now ... how do i change mood ?
    Found it !! Call me pro !!
    -----------------------------------------------------
    Ohhh yess !!! Im not a Leecher anymore !!!
    NOW IM NEWBIE !!!

  15. #30
    xMrxMafiax's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    Well its fucking ridiculous that he only tells wtf they do and calls it a tut? if that's how you make your tut then just put the full fucking source code ready to compile so i don't have to read the bullshit and just compile it and play.

Page 2 of 4 FirstFirst 1234 LastLast