Results 1 to 7 of 7
  1. #1
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,263
    My Mood
    Angelic

    Alternative (better) way to make Radar hack

    This method modifies radar check function so it always return true.
    + No need to loop it (++ optimization)
    + Works for every entity (also dropped c4)



    So here is the magic:
    Signature for function address:
    Code:
    { 0x80, 0xB9, 0x39, 0x09 } "xxxx" in client.dll
    Offset for bool check:
    Code:
    + 0x7
    Override value (NOP, NOP):
    Code:
    { 0x90, 0x90 }
    Example code:
    Code:
    IntPtr functionAddress = client.Scan(new byte [] { 0x80, 0xB9, 0x39, 0x09 }, "xxxx");
    IntPtr checkAddress = functionAddress + 0x7;
    wpm(checkAddress, 0x90);
    wpm(checkAddress + 0x1, 0x90);
    Credits: Zaczero (me)
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  2. The Following 5 Users Say Thank You to Zaczero For This Useful Post:

    certmemer (05-03-2017),Jeffmagma (05-03-2017),KMWTW (05-03-2017),pest032 (05-03-2017),PhY'z (05-03-2017)

  3. #2
    KMWTW's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Location
    www.learncpp.com
    Posts
    2,466
    Reputation
    321
    Thanks
    14,450
    My Mood
    Blah
    Nice release mate

  4. #3
    pest032's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    29
    My Mood
    Amazed
    Internal:
    Code:
    DWORD spotted = NetVars.GetNetVar(0x839EB159);
    *(char*)((DWORD)(pEntity)+ spotted) = 1;

  5. #4
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,263
    My Mood
    Angelic
    Quote Originally Posted by pest032 View Post
    Internal:
    Code:
    DWORD spotted = NetVars.GetNetVar(0x839EB159);
    *(char*)((DWORD)(pEntity)+ spotted) = 1;
    external:
    wpm(pEntity + bSpotted, 1); // lol

    learn2read
    your internal uses completely other method lol.
    i guess you didn't even read that thread
    this one doesn't need to be lopped and can be executed only once which is a great optimization improvement.
    also allows to display dropped c4 at low cpu usage cost =)
    Last edited by Zaczero; 05-03-2017 at 10:52 AM.
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  6. #5
    pest032's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    29
    My Mood
    Amazed
    Quote Originally Posted by Zaczero View Post


    external:
    wpm(pEntity + bSpotted, 1); // lol

    learn2read
    your internal uses completely other method lol.
    i guess you didn't even read that thread
    this one doesn't need to be lopped and can be executed only once which is a great optimization improvement.
    also allows to display dropped c4 at low cpu usage cost =)
    Ye, i know, ive just posted a way how to do it internally(but its little bit different from ur post, sorry then)

  7. #6
    Zaczero's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    localhost
    Posts
    3,288
    Reputation
    1517
    Thanks
    14,263
    My Mood
    Angelic
    Quote Originally Posted by pest032 View Post
    Ye, i know, ive just posted a way how to do it internally(but its little bit different from ur post, sorry then)
    it's completely other way to do this. there is no connection between urs and mine :/

    you = write bool visible true for every entity
    me = modify function so game always makes bool visible true
    Last edited by Zaczero; 05-03-2017 at 11:07 AM.
    . . . malsignature.com . . .



    [ global rules ] [ scam report ] [ image title ] [ name change ] [ anime force ]
    [ league of legends marketplace rules ] [ battlefield marketplace rules ]

    "because everytime you post a picture of anime in here
    your virginity's time increases by 1 month"
    ~Smoke 2/18/2018


    Former Staff 09-29-2018
    Battlefield Minion 07-21-2018
    Premium Seller 03-04-2018
    Publicist 12-10-2017
    League of Legends Minion 05-31-2017
    Premium 02-05-2017
    Member 10-13-2013

  8. #7
    certmemer's Avatar
    Join Date
    Feb 2016
    Gender
    female
    Location
    Southampton
    Posts
    2,511
    Reputation
    104
    Thanks
    25,994
    Quote Originally Posted by pest032 View Post
    Internal:
    Code:
    DWORD spotted = NetVars.GetNetVar(0x839EB159);
    *(char*)((DWORD)(pEntity)+ spotted) = 1;
    using winapi data types >kek<
    its not even related
    btw something called "bool" exists, its not a char???
    also do you get that netvar with every single iteration of your esp loop? big codenz i see
    Last edited by certmemer; 05-03-2017 at 11:30 AM.

Similar Threads

  1. [Release] I got a simple way to make 64 hacks work on 32 bit system... Come in...
    By igngaea in forum Alliance of Valiant Arms (AVA) Coding / Source Code
    Replies: 9
    Last Post: 01-24-2013, 09:13 AM
  2. [Solved] Ways To Make D3D Hacks Undetected
    By stratbasher in forum C++/C Programming
    Replies: 13
    Last Post: 07-31-2012, 08:02 AM
  3. This the way to make bloods HACK works ..
    By Harmony♫ in forum CrossFire Discussions
    Replies: 6
    Last Post: 07-02-2010, 09:55 AM
  4. A very simple way to make Detected hacks work.
    By EndRiT in forum WarRock - International Hacks
    Replies: 13
    Last Post: 03-26-2009, 02:50 AM
  5. [tut] better way to make a kssn
    By damanis1 in forum WarRock Korea Hacks
    Replies: 6
    Last Post: 05-20-2007, 11:41 AM

Tags for this Thread