Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted

    [Dilemma] Another One

    So. im confused guys.

    I found out I have a working hook ( i have 2 working hooks lol). i commented out all hacks and stuff and I still d/c after 2 minutes.

    If its not the hook or hacks, what can it be?

    /dicuss
    Last edited by CAFlames; 03-13-2011 at 06:37 PM.

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  2. #2
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    If you DC how do you know your hook is working and that it is not the problem?

  3. #3
    Threadstarter
    We are the CONTRIBUFORCE
    MPGH Member
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted
    Quote Originally Posted by CodeDemon View Post
    If you DC how do you know your hook is working and that it is not the problem?
    I have 2 hooks that I tried and both work for my friends.

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  4. #4
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Is everything commented out? Make sure literally everything is commented and then just try hooking a completely empty present and reset.
    Last edited by CodeDemon; 03-13-2011 at 07:18 PM.

  5. #5
    Threadstarter
    We are the CONTRIBUFORCE
    MPGH Member
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted
    Quote Originally Posted by CodeDemon View Post
    Is everything commented out? Make sure literally everything is commented and then just try hooking a completely empty present and reset.
    okay.. ill try this tomorrow. im really tired so I'm gonna go to sleep. Thanks.

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  6. #6
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Also make sure you encrypt the text.
    Apparently Hackdshield can detect text such as Chams or Aimbot
    No I do not make game hacks anymore, please stop asking.

  7. #7
    flashlight95's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    12-34 Poopie Street Posts: Over 9000!
    Posts
    127
    Reputation
    10
    Thanks
    15
    Quote Originally Posted by flameswor10 View Post
    Also make sure you encrypt the text.
    Apparently Hackdshield can detect text such as Chams or Aimbot
    Yeah, it's true. Hackshield can detect text strings. :P

  8. #8
    Threadstarter
    We are the CONTRIBUFORCE
    MPGH Member
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted
    I tried encrypting but I could not figure it out.

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  9. #9
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by CAFlames View Post
    I tried encrypting but I could not figure it out.
    Code:
    char * CDTextEncryption(char * text){
    	char * newstring = new char[strlen(text)];
    	for(int i = 0; i < strlen(text); i++){
    		newstring[i] = text[i] + 0x3281829;
    	}
    	return newstring;
    }
    
    char * CDTextDecryption(char * text){
    	char * newstring = new char[strlen(text)];
    	for(int i = 0; i < strlen(text); i++){
    		newstring[i] = text[i] - 0x3281829;
    	}
    	return newstring;
    }
    Whipped that up in like 5 seconds in the quick reply box here, it should work.

  10. #10
    Threadstarter
    We are the CONTRIBUFORCE
    MPGH Member
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted
    @CodeDemon

    Thanks, so I just put that in my base.cpp and thats it?

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  11. #11
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by CAFlames View Post
    @CodeDemon

    Thanks, so I just put that in my base.cpp and thats it?
    Of course, you can use it multiple ways but:

    char * blahblah = CDTextEncryption("YourText");

    PrintText(CDTextDecryption(blahblah), x, y, color, font);

  12. The Following User Says Thank You to CodeDemon For This Useful Post:

    CAFlames (03-14-2011)

  13. #12
    Threadstarter
    We are the CONTRIBUFORCE
    MPGH Member
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted
    Quote Originally Posted by CodeDemon View Post
    Of course, you can use it multiple ways but:

    char * blahblah = CDTextEncryption("YourText");

    PrintText(CDTextDecryption(blahblah), x, y, color, font);
    Okay Cool. Will do, thanks


    EDIT: So for chams on menu, I just do:
    char * cha1 = CDTextEncryption("Chams");
    (later on
    AddItem(CDTextDecryption(cha1) , Opt_on_off , &test5 , 2, MENUITEM);
    Last edited by CAFlames; 03-14-2011 at 02:05 PM.

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  14. #13
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by CAFlames View Post


    Okay Cool. Will do, thanks


    EDIT: So for chams on menu, I just do:
    char * cha1 = CDTextEncryption("Chams");
    (later on
    AddItem(CDTextDecryption(cha1) , Opt_on_off , &test5 , 2, MENUITEM);
    Someone will just hex edit "Chams" into "Penis".

  15. #14
    Threadstarter
    We are the CONTRIBUFORCE
    MPGH Member
    CAFlames's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Where ever my imagination takes me
    Posts
    3,006
    Reputation
    202
    Thanks
    2,944
    My Mood
    Twisted
    Quote Originally Posted by ᴺᴼᴼᴮ View Post


    Someone will just hex edit "Chams" into "Penis".
    so? This is about getting detected. Anyway, I am testing now..

    So far so good.. except it says Chamsá instead of Chams


    EDIT: I Still d.c... this is so annoying
    Last edited by CAFlames; 03-14-2011 at 02:57 PM.

    Current Works:
    ---Horror Game





    [IMG]https://i645.photobucke*****m/albums/uu180/drgnforce9/Siggys/signature3.jpg[/IMG]
    Special thanks to drgnforce9 for my sig picture

    Quote Originally Posted by m_t_h View Post

    CAflames is one epic coder.

    Rep and thanks him.. or you're perma banned.

  16. #15
    D-Vid the DBag's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    146
    Reputation
    10
    Thanks
    13
    My Mood
    Lurking
    Quote Originally Posted by CodeDemon View Post
    Of course, you can use it multiple ways but:

    char * blahblah = CDTextEncryption("YourText");

    PrintText(CDTextDecryption(blahblah), x, y, color, font);
    Hahaha. That shit tweaks the text out.
    When I tried it using whit's v3, it had like 8 extra unicode chars on the end of the text string and some of them kept changing.

    [IMG]https://i33.photobucke*****m/albums/d55/y_owns_you/D-Vid665.png[/IMG]

Page 1 of 2 12 LastLast