DebateFort - Where Warriors Come To Debate
RAGECRY - Funny, Amusing, Interesting, Trending & Viral Videos and Images
GameOrc - Free Flash Games Online

Thread: ESP

Page 1 of 2 1 2 LastLast
Results 1 to 15 of 22
  1. #1
    Novice
    MPGH Member
    OneCa's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    0

    ESP

    Hey there

    @giniyat101 told me that if I had reversed UnkStruct correctly I would find bool value specifing if the player is mutant or not

    and I could found bool IsMutant in UnkStruct so I tried to make the esp boxes code like this

    Code:
    if(Me->Team != pPlayer->Team)
    {
    if(box && pPlayer->unk->IsMutant)
    {
    DrawBox(x,y,w,h,red,device)
    }
    }
    
    if(Me->Team == pPlayer->Team)
    {
    if(box && pPlayer->unk->IsMutant)
    {
    DrawBox(x,y,w,h,Green,device)
    }
    }
    I need to make if the mutant is in your team the colour should be green and if it's not the colour should be red
    but the colour doesn't show in both

    one more thing please, when I had reversed UnkStruct I found something interesting "unsigned char CurrentGun"
    I think it should be for Esp-Weapons so I tried to make it like this
    Code:
    char sizes[48];
    sprintf(sizes,  "[%s]"  , pPlayer->unk->CurrentGun);
    TextCenter(pDevice, x, y, COLOR, sizes);
    but in game the the resultes was ("NULL")

    anyhelp please

    @giniyat101
    @[N.O]N.A.M.E
    @~FALLEN~
    @derh.acker
    Last edited by OneCa; 10-07-2012 at 05:11 PM.

  2. #2
    MPGH Member
    giniyat101's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Not telling.
    Posts
    1,834
    Reputation
    130
    Thanks
    1,216
    My Mood
    Asleep
    are you sure it is reversed correctly?

  3. The Following 2 Users Say Thank You to giniyat101 For This Useful Post:

    mp3mp4 (10-13-2012), OneCa (10-10-2012)

  4. #3
    Novice
    MPGH Member
    Nemo[4ever]'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    80
    Reputation
    10
    Thanks
    6
    My Mood
    Stressed
    I've test it for a long time but the CurrentGun maby wrong and Ismutant is wrong too ^^. Maby we must update the struct or find the another way.
    In my hack i check
    if (Target->Health > 100)
    {
    IsMutant = True;
    If (IsMutant) DrawBox(pDevice, Pos.x, Pos.y, 10, 10, D3DCOLOR_XRGB(255,0,0));
    }

  5. The Following User Says Thank You to Nemo[4ever] For This Useful Post:

    OneCa (10-10-2012)

  6. #4
    Bobo's Trainer
    MPGH Member
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    811
    Reputation
    14
    Thanks
    603
    My Mood
    Angelic
    CurrentGun in an unsigned char, no string.
    You didn't reverse it correctly, CurrentGun shouldn't be 0 if the player is alive.
    2 completely different and completely legal ways for an Anti "Hack Tool has been detected"
    ||

    Zombie ESP
    http://img42.imageshack.us/img42/7091/zmesp.png
    Zombie OPK

  7. The Following 2 Users Say Thank You to derh.acker For This Useful Post:

    mp3mp4 (10-13-2012), OneCa (10-10-2012)

  8. #5
    Threadstarter
    Novice
    MPGH Member
    OneCa's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    0
    Code:
    struct Unk
    {
    float Pitch;
    float Yaw;
    char spacer00[???];
    bool IsDead;
    char spacer03[????];
    unsigned char CurrentGun;
    char Spacer04[?];
    bool IsMutant;
    };
    @giniyat101 @Nemo[4ever] @derh.acker

  9. #6
    Novice
    MPGH Member
    Sneak84's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    92
    Reputation
    10
    Thanks
    15
    struct UnkStruct
    {
    float Pitch;
    float Yaw;
    char spacer02[408];
    bool IsDead;
    char spacer03[5703];
    unsigned char CurrentGun;
    char Spacer04[3];
    bool IsMutant;
    };

    i tried this struct below a month ago with UPK public base and it's worked fine. look at FALLEN's thread. it's too old, almost 1 year ago are left since it was posted, and you can see that there is no difference at all. here is:
    http://www.mpgh.net/forum/242-crossf...imbot-esp.html

    so you can try. i'm doesn't even have an esp right now coz idk how to reverse CPlayerInfo and doesn't have a bypass, but hope i helped you a little.

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

    OneCa (10-10-2012)

  11. #7
    Expert Member
    MPGH Member
    Dragon(H)ell's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    700
    Reputation
    154
    Thanks
    4,791
    My Mood
    Angelic
    Try to make something like this
    Code:
    if(anything && pPlayer->unk->IsDead)
    DrawText(x.y,color,"DIED"device);
    if you can see "died" word in died peoples then you struct is right if not then you didn't reverse it correctly @OneCa
    Last edited by Dragon(H)ell; 10-10-2012 at 09:03 AM.
    Sucessfull trades: 1
    phillyfunguy very trusted


    Scammed: 0


  12. The Following User Says Thank You to Dragon(H)ell For This Useful Post:

    OneCa (10-10-2012)

  13. #8
    Threadstarter
    Novice
    MPGH Member
    OneCa's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    51
    Reputation
    10
    Thanks
    0
    it doesn't work too @Sneak84
    I have tried you way but I couldn't see the word @Dragon(H)ell

  14. #9
    Novice
    MPGH Member
    Nemo[4ever]'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    80
    Reputation
    10
    Thanks
    6
    My Mood
    Stressed
    I told you... The struct need to be update or use my trick to do that and OneCa do you help something like YahooMessager to contact ? I want to ask you something around ESP In my ESP, i use that trick and it work perfectly Totally 100% player in Mutant Mode doesn't have any ESP on there Position

  15. #10
    Bobo's Trainer
    MPGH Member
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    811
    Reputation
    14
    Thanks
    603
    My Mood
    Angelic
    Quote Originally Posted by Nemo[4ever] View Post
    I told you... The struct need to be update or use my trick to do that and OneCa do you help something like YahooMessager to contact ? I want to ask you something around ESP In my ESP, i use that trick and it work perfectly Totally 100% player in Mutant Mode doesn't have any ESP on there Position
    Don't do that if you try to make an aimbot...
    The aimbot will aim at someone else if the HP of the mutant is lower than 101.
    2 completely different and completely legal ways for an Anti "Hack Tool has been detected"
    ||

    Zombie ESP
    http://img42.imageshack.us/img42/7091/zmesp.png
    Zombie OPK

  16. The Following User Says Thank You to derh.acker For This Useful Post:

    mp3mp4 (10-13-2012)

  17. #11
    Expert Member
    MPGH Member
    Dragon(H)ell's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    700
    Reputation
    154
    Thanks
    4,791
    My Mood
    Angelic
    @derh.acker What's the green spot in the radar in your sig ?
    Sucessfull trades: 1
    phillyfunguy very trusted


    Scammed: 0


  18. #12
    Novice
    MPGH Member
    Nemo[4ever]'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    80
    Reputation
    10
    Thanks
    6
    My Mood
    Stressed
    Quote Originally Posted by derh.acker View Post
    derh.acker
    Do you have something like YahooMessager ??? I want to ask you something
    P/s: I've some problem in GetBonePosition so the Aimbot dosen't work @@~ don't know why.... I've update every address like LTModel in thread "Remote Kill/Aimbot/ESP" of FALLEN. (I already have a list of bone index from "MPGH VIP SOURCE")
    Last edited by Nemo[4ever]; 10-10-2012 at 09:53 AM.

  19. #13
    Banned
    BANNED!
    IsReady's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    East Jerusalem, Jihad camp
    Posts
    92
    Reputation
    19
    Thanks
    32
    Update Stucts ?

  20. #14
    Novice
    MPGH Member
    Nemo[4ever]'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    80
    Reputation
    10
    Thanks
    6
    My Mood
    Stressed
    Idk It just flash cross of my brain

  21. #15
    Dual-Keyboard Member
    MPGH Member
    ~FALLEN~'s Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    devenv.exe
    Posts
    489
    Reputation
    23
    Thanks
    307
    My Mood
    Dead
    use %i not %s

Page 1 of 2 1 2 LastLast

Similar Threads

  1. HL2 Hack With Aimbot|ESP| And much, Much more.
    By quin123 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 10
    Last Post: 04-03-2009, 12:57 PM
  2. ESP/Chams For BHD 1.5.0.5 Arugs 1.2m: Undetected
    By sf0d in forum General Game Hacking
    Replies: 1
    Last Post: 11-05-2008, 02:31 PM
  3. ESP
    By condor01 in forum WarRock - International Hacks
    Replies: 42
    Last Post: 09-29-2007, 04:19 PM
  4. esp
    By mopo in forum WarRock - International Hacks
    Replies: 5
    Last Post: 09-24-2007, 09:33 AM
  5. Replies: 16
    Last Post: 08-10-2007, 07:10 AM