Page 2 of 2 FirstFirst 12
Results 16 to 23 of 23
  1. #16
    Boomdocks's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Location
    JAJAJ
    Posts
    195
    Reputation
    15
    Thanks
    35
    My Mood
    Aggressive
    Quote Originally Posted by Subliminal View Post
    LOL Epic Fail
    ---
    I will try this

    If (hack[1]){
    pPTC("ShowFps 1")
    AddText("", Name);
    }
    yes i will define name.... worked for me.. i start doing tat..
    " The Ground Is Above, This Noobs Have Mastered Gravity " - Aeir/Boomdocks
    Started Hacking in 2009, don't be too quick to say your a pro... ok theirs many of us who retired.. call us legends, if it was not for them... most of hacks & d3d designs won't be around ok.. #RespectOldNiggas

  2. #17
    Reimy's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    178
    Reputation
    28
    Thanks
    704
    My Mood
    Sleepy
    Just do a small singature whit a Sprite funtion ...
    its simple, and they really cant edit it...


    ---------------------------------------------
    ---------------------------------------------

    Quote Originally Posted by ihackyoufack View Post
    reimys hack looks epic and has epic features
    NOBODY SHALL DEFEAT REIMY!!!
    exept chocolate but chocoleate hacks in real life :O


  3. #18
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    if you pack your Hack, they can unpack, you need something more safer.

    Thanks Cosmos


  4. #19
    Disturbed's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    10,472
    Reputation
    1267
    Thanks
    2,587
    Quote Originally Posted by kongamonga View Post
    if you pack your Hack, they can unpack, you need something more safer.
    A virus!


  5. #20
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by whit++ View Post
    lol this may work
    [Highlight=c++]

    char *MenuTitle = "Blah blah menu v1";

    if ( MenuTitle != "Blah blah menu v1" )
    exit(1);

    [/Highlight]

    Prolly, prolly not
    People can also modify the second string.

    How about

    Code:
    const char* menuItem = "freedompeace :D";
    char* menuItem_protect = "your XOR'd (or other encryption method) data here. Make sure to place this somewhere else in your code or emit some data in between it to make it not-so-obvious to a cracker.";
    
    // Here is a function to do some simple XORing.
    void xorcrypt(PCHAR a,UINT b,LPCSTR d,UINT c){for(UINT x=0;x<b;x++)a[x]=(a[x]^d[x%c]);}
    
    //example use, DO NOT do this at runtime.. guess why? <<
    xorcrypt(menuItem_protect, strlen(menuItem), "freedompeace_Key", 10);
    //note that you do not need to encrypt the entire string, some will do.

  6. #21
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Quote Originally Posted by SeanBoBoEgan View Post
    add your name into the sprite
    My menu = impossible to hex edit
    No I do not make game hacks anymore, please stop asking.

  7. #22
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    Just add 500 Text Strings and you are safe

    Thanks Cosmos


  8. #23
    Departure's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    805
    Reputation
    125
    Thanks
    1,794
    My Mood
    Doh
    there are 2 simple ways you could use.

    1. MD5 all the strings together that you using your hack and on load make sure MD5 sum = the sum from original hash.

    2. memory scan your own hack and do CRC32 calculation on it, not the whole hack but just some parts of it(important parts) if that sum does not = your original sum then exit and Melt(Melt is a form of self destruction), Melt aslo the first way doesn't = MD5 hash.

    There are actually many way, Encrypted the strings as someone mentioned, Write your own encryption routine(its not that hard really). or make your strings into byte array so anyone searching for string in olly ect.. wont find any.

Page 2 of 2 FirstFirst 12