Results 1 to 13 of 13
  1. #1
    BloodSkin's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Columbus, OH
    Posts
    353
    Reputation
    11
    Thanks
    63

    [CN BASE] crashing

    ok, using the resulting base from CN's tut, w/ lt client set to 0x3778BFB0 and my esp set to -2-7+9+4, a custom function created containing the following ptc commands and memcpy addresses:

    Code:
    	//SAT CHAMS
    	PTC("SkelModelStencil 1" );
    
    	//BOX ESP
    	PTC("ModelDebug_DrawBoxes 1" );
    
    	//NO FOG
    	PTC("FogEnable 1" );
    
    	//NO SWAY
    	PTC("WeaponSway 0.000000" );
    
    	//NO SPREAD
    	PTC("PerturbRotationEffect  0.000000" );
    	PTC("PerturbIncreaseSpeed 0.000000" );
    	PTC("PerturbWalkPercent 0.000000" );
    	PTC("PerturbFiringIncreaseSpeed 0.000000" );
    	PTC("PerturbRecoil 0.000000" );
    	PTC("FireMovePerturb 0.000000" );
    	PTC("ZoomedFireMoveDuckPerturb 0.000000" );
    	PTC("ZoomedFireMovePerturb 0.000000" );
    	PTC("ZoomedFireDuckPerturb 0.000000" );
    
    	//NO RECOIL
    	memcpy((LPVOID)0x3741A550, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3740AA99, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3741A564, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3741A567, "\x90\x90\x90", 3);
    	memcpy((LPVOID)0x3741A570, "\x90\x90\x90", 3);
    a sleep of 91 ms before my custom function containing the ptc and memcpy commands, and literally no other modifications. what would cause me to crash after moments in game? is it one of the NR addies?

    PTC is just CN's pushtoconsole function just shortened because im lazy

    EDIT: memcpy addies are from bloods post, PTC commands are from DeadLinez
    EDIT 2: all pushes and memory copies work, Engine.exe just crashes is all.
    Last edited by BloodSkin; 07-21-2010 at 11:15 AM.

  2. #2
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    If you are using !CN's Console Push it does not work with LT Clients, you need CN Addies which I posted in my !CN ConsolePush Thread.

  3. The Following User Says Thank You to CoderNever For This Useful Post:

    BloodSkin (07-21-2010)

  4. #3
    BloodSkin's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Columbus, OH
    Posts
    353
    Reputation
    11
    Thanks
    63
    Quote Originally Posted by CoderNever View Post
    If you are using !CN's Console Push it does not work with LT Clients, you need CN Addies which I posted in my !CN ConsolePush Thread.
    well, what im using right now is

    Code:
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( REPLACE-THIS-TEXT-WITH-THE-LT-CLIENT );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }
    from https://www.mpgh.net/forum/207-combat...arms-hack.html

    i will look into your other posts.

  5. #4
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    Replace that entire code with that and it should fix your commands

    [php]void PTC(const char* Command) {
    DWORD CNADDIE = 0x007d9200;
    void* Send = ( void* )*( DWORD* )(CNADDIE);
    __asm
    {
    /* CREDITS TO CN */
    push Command;
    call Send;
    add esp, -3-1+2+6;
    }
    } [/php]

  6. The Following User Says Thank You to CoderNever For This Useful Post:

    BloodSkin (07-21-2010)

  7. #5
    BloodSkin's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Columbus, OH
    Posts
    353
    Reputation
    11
    Thanks
    63
    so just change the dword from *ltclient to CNADDIE (or something memorable) and szCommand to Command?

    and what i was actually using was

    Code:
    void __cdecl PTC( const char* szCommand )
    {
    	DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );
    	void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    	__asm
    	{
    		push szCommand;
    		call CONoff;
    		add esp, -7-2+9+4;
    	}
    }
    looks like i have a lot more learning to do.

    and my first 3 lines of my code are
    //THANKS TO CODERNEVER FOR MAKING THE AMAZING TUTORIAL
    //THAT ENABLED ME TO MAKE THIS POSSIBLE AS WELL AS ALL
    //THE HELP HE PROVIDED WITH MY TROUBLE SHOOTING.

    EDIT: that worked. care to explain why? i dont understand how changing the name of a function could do that. i am guessing it has something to do with szCommand.
    Last edited by BloodSkin; 07-21-2010 at 11:43 AM.

  8. #6
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    No....
    You must change the Actually Client addie too.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  9. The Following User Says Thank You to whatup777 For This Useful Post:

    BloodSkin (07-21-2010)

  10. #7
    BloodSkin's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Columbus, OH
    Posts
    353
    Reputation
    11
    Thanks
    63
    Quote Originally Posted by whatup777 View Post
    No....
    You must change the Actually Client addie too.
    oh wow. i even looked at it and told myself that it was the same. this is what i get for LUI (learning under the influence). thanks for pointing it out.

    i appreciate the patience everyone is having with me. i just want to be able to help contribute to the community.

    ill use the search function to find as much info as i can on finding the LTC so i can update it when they change it.

    next question, would i need to learn how to decompile and read (forgive me if im saying that wrong) cshell in order to find the PTC commands like DeadLinez did?
    Last edited by BloodSkin; 07-21-2010 at 11:56 AM.

  11. #8
    Disturbed's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    10,472
    Reputation
    1267
    Thanks
    2,587
    Quote Originally Posted by BloodSkin View Post
    oh wow. i even looked at it and told myself that it was the same. this is what i get for LUI (learning under the influence). thanks for pointing it out.

    i appreciate the patience everyone is having with me. i just want to be able to help contribute to the community.

    ill use the search function to find as much info as i can on finding the LTC so i can update it when they change it.

    next question, would i need to learn how to decompile and read (forgive me if im saying that wrong) cshell in order to find the PTC commands like DeadLinez did?
    You would have to unpack it and run it through a disassembler, or dump it. Plenty of tuts for both, though a lot of the known working PTC commands are easily available.


  12. #9
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    so are you all set, or need help?
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  13. #10
    BloodSkin's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Columbus, OH
    Posts
    353
    Reputation
    11
    Thanks
    63
    i got this one figured out, thanks bud. /close please

  14. #11
    killerld's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    345
    Reputation
    11
    Thanks
    193
    My Mood
    Twisted
    Doesnt Work for me
    BloodSkin Can you show me your HackSource I want to compare :S
    Please =D
    your name will appear in Credits !


    Sorry for my bad English ! I'm French Canadian !

    - When you use my hack, Please Thank Me

    Release some Hacks []
    Able to code in PhP / Mysql []
    Able to code in VB []
    Able to code in C# []
    Able to do VB Injector []
    Release an Injector []
    Active Member in the Community []
    Member who help small Hacker []

  15. #12
    DeadLinez's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    https://mpgh.net Sexy Points: 989,576,420
    Posts
    465
    Reputation
    11
    Thanks
    500
    My Mood
    Psychedelic
    dont use memcpy use memoria

  16. #13
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Quote Originally Posted by BloodSkin View Post
    i got this one figured out, thanks bud. /close please
    /Closed .
    -Rest in peace leechers-

    Your PM box is 100% full.

Similar Threads

  1. [Solved] CA crashing com hacks com base whit/we11
    By rxd in forum Combat Arms Brazil Help
    Replies: 5
    Last Post: 05-27-2011, 05:15 PM
  2. [Solved] How to crash a hamachi based minecraft server?
    By Unicow in forum Minecraft Help
    Replies: 22
    Last Post: 02-18-2011, 09:04 AM
  3. Crash's Base Generator v0.1 - Beta
    By Crash in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 29
    Last Post: 09-23-2010, 05:43 AM
  4. Hans Base Crash
    By whatup777 in forum Combat Arms Help
    Replies: 2
    Last Post: 07-06-2010, 06:19 AM