Page 6 of 14 FirstFirst ... 45678 ... LastLast
Results 76 to 90 of 202
  1. #1
    Harold's Avatar
    Join Date
    Jul 2008
    Posts
    302
    Reputation
    23
    Thanks
    855

    [RELEASE] Harold's Template

    So, this week I've had about 50 people asking me how to make simple easy memory hacks. So this morning I decided to make you people(by people I mean lazy people who don't want to learn) a template so that you can easily make your own memory hacks and bypasses.


    Information:
    Was coded in C++ using Microsoft Visual Studios 2005.
    Very basic C++ knowledge needed.
    Fully commented.
    This works for any game, but I'm posting it in the Combat Arms section because you guys love me so much.



    Credits:
    Strife
    Azorbix
    Longevity
    MSDN



    Download Visual Studios here
    https://go.microsof*****m/fwlink/?Link...mp;clcid=0x409



    If you see anything that needs to be fixed don't hesitate to tell me.
    Last edited by Harold; 08-30-2008 at 07:36 PM.

  2. The Following 37 Users Say Thank You to Harold For This Useful Post:

    aipeen (09-02-2008),ArbitraryDrone (08-31-2008),blackpepper (08-30-2008),crazyfool (08-30-2008),Dragonclaw1979 (08-31-2008),droppoint (08-30-2008),enbt (09-06-2008),error- (08-30-2008),eviltim66 (08-30-2008),ezjpimp (08-31-2008),Hancock (08-31-2008),Heliossssss (08-30-2008),hellboy999 (08-31-2008),jigger (08-30-2008),jtmilitary1 (08-30-2008),jzstar (08-31-2008),kendosis (08-30-2008),knappy (08-30-2008),LazyCountry (09-02-2008),malbolger (08-31-2008),Phaze228 (08-31-2008),Rezik (08-30-2008),Rhinno (08-31-2008),rwkeith (09-02-2008),sandman101 (08-31-2008),Seppers (08-30-2008),Seth1134 (08-30-2008),skip (08-30-2008),someguy876 (08-31-2008),spazmeister (08-30-2008),steveo (08-31-2008),stevoflem (08-30-2008),volgan (08-31-2008),wolfff (09-02-2008),xxBigBuns (08-30-2008),XxKylePwnsxX (08-30-2008),zosky (08-31-2008)

  3. #76
    Threadstarter
    Dual-Keyboard Member
    Harold's Avatar
    Join Date
    Jul 2008
    Posts
    302
    Reputation
    23
    Thanks
    855
    Quote Originally Posted by warrick983 View Post
    oops lol. Just saw batman. I feel like a giant choob
    I figured as much

  4. #77
    afoolforlove's Avatar
    Join Date
    Aug 2008
    Posts
    83
    Reputation
    10
    Thanks
    8
    Thanks Harold!! Im going to put what little i know about c++ to use and see if i can make something...if i DO end up successfully making something, i'll be sure to put your name in big bold letters ^_^

  5. #78
    nighthawk3's Avatar
    Join Date
    Jul 2008
    Location
    <3 Dave&Arun
    Posts
    460
    Reputation
    10
    Thanks
    60
    thx for posting this harold even if i cant use it

  6. #79
    Threadstarter
    Dual-Keyboard Member
    Harold's Avatar
    Join Date
    Jul 2008
    Posts
    302
    Reputation
    23
    Thanks
    855
    Quote Originally Posted by afoolforlove View Post
    Thanks Harold!! Im going to put what little i know about c++ to use and see if i can make something...if i DO end up successfully making something, i'll be sure to put your name in big bold letters ^_^
    Thankyou


    And Nighthawk whats the problem.

  7. #80
    Iwin's Avatar
    Join Date
    Aug 2008
    Posts
    2,401
    Reputation
    26
    Thanks
    339
    Quote Originally Posted by Harold View Post
    Thankyou


    And Nighthawk whats the problem.
    he doesn't feel like installing VC++

  8. #81
    Threadstarter
    Dual-Keyboard Member
    Harold's Avatar
    Join Date
    Jul 2008
    Posts
    302
    Reputation
    23
    Thanks
    855
    Quote Originally Posted by Iwin View Post
    he doesn't feel like installing VC++
    lol thats probably true.

  9. #82
    Psychonewb's Avatar
    Join Date
    Aug 2008
    Gender
    female
    Posts
    27
    Reputation
    10
    Thanks
    0
    My Mood
    Lurking
    Yea, thanks Harold, but I don't even know where or how to start or do whatever, guess I just gotta get used to this shit.

    I gotta learn this by myself, like who do I go to if I got a question? Or does "Cprogramming.com" got everything already...

    Basically... wtf is this for? and wth I do with it?

  10. #83
    warrick983's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Weed, California. Look it up
    Posts
    866
    Reputation
    10
    Thanks
    39
    My Mood
    Happy
    Well I started off with flash games and then warrock and now CA, im trying to make chams but so far it is only on allies. SO I AM PISSED. But still trying. Just keep trying and screwing around with .dll files.Ohh and make sure u have winrar

  11. #84
    Iwin's Avatar
    Join Date
    Aug 2008
    Posts
    2,401
    Reputation
    26
    Thanks
    339
    Quote Originally Posted by Psychonewb View Post
    Yea, thanks Harold, but I don't even know where or how to start or do whatever, guess I just gotta get used to this shit.

    I gotta learn this by myself, like who do I go to if I got a question? Or does "Cprogramming.com" got everything already...

    Basically... wtf is this for? and wth I do with it?
    If you got a question I would just try and answer it yourself. Harold's template shouldn't get any debugging errors, mater of fact you could skip debug and go straight for release.

    Open the .vbproj, than read through the source files, and look at the //"text here", which explains everything.

  12. #85
    HawwwaH's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    22
    Harold, your

    I prefer __asm to memcpy.

    Basic example of __asm:
    Code:
    __asm mov dword ptr ds:[0x12346578],90909090h; // This would change the bytes at 0x12345678 to 90909090 (four nops)
    __asm mov word ptr ds:[0x12345678],9090h //This would be two nops... Note that when you are writing two bytes, you change it to word
    Doing the same thing with Harolds MemCpy:
    Code:
    MemCpy((void*)0x12345678,"****90****90",4); // Writes 4 nops
    MemCpy((void*)0x12345678,"****90",2); // Writes 2 nops
    Notes:
    __asm will rarely (if ever) be detected.
    memcpy/MemCpy requires API calls which are often detected.
    With __asm, if you want a more easily read way of editing the bytes, you can use 0x9090 but, when using that, you will beed to reverse all the bytes. That means that to do the "ghetto hack shield bypass", you would have to do it like this:
    Code:
    mov dword ptr ds:[0x00505D3A],0xBA75; // oh lawds, did I just tell people how to put the bypass in a DLL?
    If I have made a mistake, please point it out because, this was written off the top of my head (I was too lazy to start MSVS up...)

    EDIT: (Fixed some typo's)
    Just remembered, you can use __asm AND MemCpy...
    Code:
    void __declspec(naked) Two_Nops() {
        __asm {
            nop
            nop
        }
    }
    /* ... */
    MemCpy((void*)0x12345678,TwoNops,2);
    Last edited by HawwwaH; 08-31-2008 at 02:49 AM. Reason: Just remembered something

  13. #86
    Psychonewb's Avatar
    Join Date
    Aug 2008
    Gender
    female
    Posts
    27
    Reputation
    10
    Thanks
    0
    My Mood
    Lurking
    Quote Originally Posted by Iwin View Post
    If you got a question I would just try and answer it yourself. Harold's template shouldn't get any debugging errors, mater of fact you could skip debug and go straight for release.

    Open his template up, read the //"text here", which explains everything.
    Open up what only thing I can open is text files... which i don't see explainig anything.
    Last edited by Psychonewb; 08-31-2008 at 02:54 AM.

  14. #87
    rawr317's Avatar
    Join Date
    Aug 2008
    Posts
    108
    Reputation
    10
    Thanks
    90
    Quote Originally Posted by HawwwaH View Post
    If I have made a mistake, please point it out because, this was written off the top of my head (I was too lazy to start MSVS up...
    It's nice to see someone on this forum actually knowing what they're talking about for once.

  15. #88
    thedroid101's Avatar
    Join Date
    Dec 2007
    Gender
    male
    Location
    ████████
    Posts
    270
    Reputation
    10
    Thanks
    18
    harold is teh greatness i <3 you harold

    Clickhere to lvl my Habamon!!

    [IMG]https://i334.photobucke*****m/albums/m412/Thedroid101/mpghsig.gif[/IMG]
    [IMG]https://i334.photobucke*****m/albums/m412/Thedroid101/TheDroid.png[/IMG]

  16. #89
    nighthawk3's Avatar
    Join Date
    Jul 2008
    Location
    <3 Dave&Arun
    Posts
    460
    Reputation
    10
    Thanks
    60
    i already have it installed lol im just ot fucking laazy to try it now.....

  17. #90
    Threadstarter
    Dual-Keyboard Member
    Harold's Avatar
    Join Date
    Jul 2008
    Posts
    302
    Reputation
    23
    Thanks
    855
    Dont open the vbproj or w/e, open the SLN

Page 6 of 14 FirstFirst ... 45678 ... LastLast

Similar Threads

  1. [ Release ] Harold's Template v1.1
    By Synns in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 9
    Last Post: 01-07-2010, 04:35 AM
  2. Can some1 give me template?
    By nabbos in forum WarRock - International Hacks
    Replies: 0
    Last Post: 05-26-2007, 01:40 AM
  3. Stealing Flash Templates from Template Monster.
    By sf0d in forum Spammers Corner
    Replies: 4
    Last Post: 09-06-2006, 05:26 PM

Tags for this Thread