Page 1 of 9 123 ... LastLast
Results 1 to 15 of 132
  1. #1
    Dead 4 Real's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    336
    Reputation
    11
    Thanks
    83
    My Mood
    Relaxed

    Thumbs up Whit's Combined Base v2 [Updated]

    This is an updated version of whit's Combined base v2 but this has a working ptc and all the latest addy except for the device pointer witch is below i have it where you need to put it in but first you gotta find where the device pointer is, also for really new people its in the base.cpp

    Device Pointer code: 0x90BF20

    The code is above but you need to find out where to add it.

    How to use hack once you added device pointer to right location
    Just press the [INSERT] button and then use arrow keys to turn hacks on and off also the menu is bugged so you wont see it very well in game but yea. Only turn hacks on well in game or you may crash

    Question: How do i add more hacks??

    Answer: Alright well you should see something like this at the very top
    Code:
    int fps = 0;
    copy it and then change the fps to something like test so it will look like
    Code:
    int test = 0;
    then scroll down you will see something like this.
    Code:
    AddItem("Show FPS "   , Opt_on_off , &fps  , 2, MENUITEM);
    copy it and post it under then change it so it will look like this
    Code:
    AddItem("Ub3r Hax "   , Opt_on_off , &test  , 2, MENUITEM);
    now scroll down some more and then copy this and post it under it and then change it to something like this
    Code:
    if(test){
    Push("Nexon 1");// Pushtoconsole hack ON
    } else {
    Push("Nexon 0");// Pushtoconsole hack OFF
    }
    then
    compile the hack and it should work as long as you put the device pointer in the right spot

    UPDATE 1: Sprite Changing | Thank: Flameswor10
    _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    Also for people who want to change sprites:

    when looking through the base you will see something like this
    Code:
    BYTE Menupic[] = { 0x89, 0x50, 0x4E, 0x47, 0xD, 0xA, 0x1A, 0xA
    and it will keep on going anyways find a picture you want for your sprite then open up File2ByteArray and then select picture then in the notepad there will be the code just copy and replace the current one, also suggest try make the picture you want small because on ca it will be huge!



    PM ME FOR LINK (CAUSE I CANT POST IT HERE)

    MAJOR HERE!
    UPDATE 2: Move menu | Thank: Dead 4 Real
    _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    When you download the hack open it then look for this
    Code:
    int menux = 50;
    int menuy = 200;
    and then change it to this
    Code:
    int menux = 10;
    int menuy = 310;
    then scroll down and find this
    Code:
    POS.x = 15;
        POS.y = 15;
    and then change it to this
    Code:
    POS.x = 10;
        POS.y = 300;
    and there you go, the menu is moved and now is see able in game (w00t w00t)


    UPDATE 3: Changing Menu Text Colors | Thank: Dead 4 Real
    _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    First open your hack then select Menu.cpp then search for this the color "Orange" it should look like this
    Code:
    if (i==Mpos)
               color=Orange;
    then change it to a color you want example Green also remember that the first letter must be a capital and then seach for the next color the rest are a little bit above, but some also may be below. but dont go changing all colors you see cause some it may say Red but theres no red on your menu you look at the colors on your menu and only change them until you know what you are doing.

    Colors used in menu:
    Orange
    Blue
    Green


    UPDATE 4: Resizing text & Move it | Thank: Dead 4 Real
    _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    First open your hack then go to base.cpp then seach for this code
    Code:
    D3DXCreateFont(pDevice, 18, 0, 700,
    then that is the code you will need to change this will resize it. just mess around with it. now to move the text just scroll down you will see something that says CB v2 change text if you like then you will see numbers beside it, just mess with them to move text around.


    This wont do anything better its just neater
    |
    V

    UPDATE 5: Neater code | Thank: GodHack2
    _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    Alright open up your hack atm there should be something kinda like this called
    Code:
    int fps = 0;
    but if you want you can make it more simple, just change remove the int fps = 0; and add this
    Code:
    int test[3] = 0;
    so then what this does (if correct) counts test1, test2, test3. and so forth but if you do. Do this you will need to change all the fps to test1


    UPDATE 6: Resizing Menu text | Thank: Dead 4 Real
    _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    First open your hack in your c++ compiler then open menu.cpp once you done that at the top you will see these two codes
    Code:
    int Mxofs
    int Mysize
    and then numbers the first one is the text size second one is spacing between both.


    1. Virus Scan
    This is a picture of the hack before you do any of these Updated Fixes above


    Credits:
    Whit - Combined it all
    Gellin - Menu & PushToConsole
    Hans - Base
    Noob - Helping fix bugs
    Dead 4 Real - Simple Sprite & Updates

    Smaller Sprite without the credits
    Feel free to use it for this hack
    LINK:
    https://img43.imageshack.us/img43/360...lemenudead.png



    Yes image above looks WAY! to small but its a good enough size since in game the size will be doubled. here is image below with the sprite above


    Last edited by Dead 4 Real; 01-31-2011 at 07:44 PM. Reason: Updated

  2. The Following 38 Users Say Thank You to Dead 4 Real For This Useful Post:

    agnostic00 (02-02-2011),ayahjagoan1 (07-02-2012),black_eaglee (05-04-2012),Bubbles Kittys (02-01-2011),CheatJlle (05-15-2013),Coder.Anonymous (08-22-2012),Cryptonic (03-11-2013),D-Vid the DBag (02-01-2011),danielsputra (09-22-2015),deltacc (05-07-2012),dllbase (02-06-2011),dnfk (07-08-2012),draku1 (05-01-2012),Dreamer (01-31-2011),DubleJayJ (05-06-2012),Flengo Jr. (05-03-2012),Griefbackup (01-30-2011),Herpina (08-19-2012),HurleyppL (07-02-2011),invincibledinku (08-27-2012),jajarem64 (02-11-2011),Luminescentz (07-10-2012),madeven (12-03-2012),manflin14 (04-19-2013),MegaPixxx (04-22-2013),MrSkafighter (01-31-2011),Multiyman (04-28-2012),NewCories (03-02-2011),Nightmare (04-25-2012),QuangsSoMinE (01-31-2011),rosiman22 (01-30-2011),Ryuzaki™ (07-04-2012),sc4rr3dr4v3n (02-09-2011),supercarz1991 (01-31-2011),weatoria56 (05-01-2012),wraithkilla (04-29-2012),yaserifti1 (02-12-2011),yoonjae98 (02-08-2011)

  3. #2
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,678
    NS!!! 1st!!

    Quote Originally Posted by rosiman22 View Post
    NS!!! 1st!!
    not any more /hijacked
    /approved
    Last edited by AVGN; 01-30-2011 at 08:49 PM.

  4. The Following User Says Thank You to AVGN For This Useful Post:

    Drake (02-09-2011)

  5. #3
    Dead 4 Real's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    336
    Reputation
    11
    Thanks
    83
    My Mood
    Relaxed
    Thanks =P, this is just to help newbies out but you need to change something its not just a download and release kinda thing. =P

    Thanks subliminal for approval =D
    Last edited by Dead 4 Real; 01-30-2011 at 08:54 PM.

  6. #4
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    The "Ptc" in there is actually gellins but only Texture changed..
    Wouldnt release for that but Good job

  7. #5
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,678
    is the menu auto resizing?




  8. #6
    Dead 4 Real's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    336
    Reputation
    11
    Thanks
    83
    My Mood
    Relaxed
    i just like to help new people and thanks didn't know ptc was Gellins will update that

    EDIT: no its not auto resizing

  9. #7
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by Dead 4 Real View Post
    i just like to help new people and thanks didn't know ptc was Gellins will update that

    EDIT: no its not auto resizing
    good job and good night

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  10. #8
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Why don't I release Flameswor10 [v1.5] base.
    Or maybe, be an idiot and release [v2.2] (This base is very unique )

    No I do not make game hacks anymore, please stop asking.

  11. #9
    Dead 4 Real's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    336
    Reputation
    11
    Thanks
    83
    My Mood
    Relaxed
    If you want go ahead?, i don't know if that was just you thinking or attempt to insult me but i did this to help new comers.

  12. #10
    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 Dead 4 Real View Post
    If you want go ahead?, i don't know if that was just you thinking or attempt to insult me but i did this to help new comers.
    Both .
    No I do not make game hacks anymore, please stop asking.

  13. #11
    Dead 4 Real's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    336
    Reputation
    11
    Thanks
    83
    My Mood
    Relaxed
    Does not matter i guess, i kinda figure i would be flamed for this lol

  14. #12
    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 Dead 4 Real View Post
    Does not matter i guess, i kinda figure i would be flamed for this lol
    Aha dw I didn't mean it, At first when i saw this trhead.
    I thought you leeched the base from another site back.
    Then i realised that you redid it so i decided to have fun while i was still in this thread

    Sprite looks nice though
    No I do not make game hacks anymore, please stop asking.

  15. #13
    Dead 4 Real's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    336
    Reputation
    11
    Thanks
    83
    My Mood
    Relaxed
    Alright =P and yea it was a basic sprite i just added it so people could make the hack simple but if they can't remove sprite then well yea.

    Anyways i gotta go cya everyone and enjoy this credits to people in first post, i just did the simple stuff =D

    Cya FlameSwor10 =P

  16. #14
    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 Dead 4 Real View Post
    Alright =P and yea it was a basic sprite i just added it so people could make the hack simple but if they can't remove sprite then well yea.

    Anyways i gotta go cya everyone and enjoy this credits to people in first post, i just did the simple stuff =D

    Cya FlameSwor10 =P
    Byes
    At least tell them how to change sprites?
    No I do not make game hacks anymore, please stop asking.

  17. #15
    Dead 4 Real's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Canada
    Posts
    336
    Reputation
    11
    Thanks
    83
    My Mood
    Relaxed
    Updated infomation also if you want the program to change sprite just pm

    Enjoy,

Page 1 of 9 123 ... LastLast

Tags for this Thread