Page 1 of 3 123 LastLast
Results 1 to 15 of 31
  1. #1
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused

    Exclamation Remote Kill Crashing Me (HELP PL0X)

    Hey guys I was working on Glycerine v1.3 and I decided to get my hands on Remote Kill, for some reason when I activate it and shoot my game crashes. What's the issue, here's the code.

    Code:
    if(GetAsyncKeyState(VK_NUMPAD7) & 1) //Key checks
                {
    			if(bRemoteKill)
    {
    		MemEdit((LPVOID)ADDR_REMOTEKILL1, "\x90\x90\x90", 3);
            MemEdit((LPVOID)ADDR_REMOTEKILL2, "\x90\x90\x90\x90\x90", 5);
            MemEdit((LPVOID)ADDR_REMOTEKILL3, "\x90\x90", 2);
            MemEdit((LPVOID)ADDR_REMOTEKILL4, "\x90\x90\x90", 3);
    }
    			}
    else
    {
    		    
    	MemEdit((LPVOID)ADDR_REMOTEKILL1, "\x0F\x94\xC0", 3);
     	MemEdit((LPVOID)ADDR_REMOTEKILL2, "\xB8\x00\x75\x05\x10", 5);
            MemEdit((LPVOID)ADDR_REMOTEKILL3, "\x5D\x40", 2);
           	MemEdit((LPVOID)ADDR_REMOTEKILL4, "\x0E\x09\x05", 3);
    }
             }
    All addies are correct and the bytes are correct too.

  2. #2
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,584
    Reputation
    5180
    Thanks
    14,177
    My Mood
    Inspired
    Remote Kill doesn't work by NOP'ing those addresses...

    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  3. #3
    AtomicStone's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    827
    Reputation
    18
    Thanks
    476
    My Mood
    Lurking
    A+ Troll. Spaaaaaaaaceeee

  4. #4
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused
    Quote Originally Posted by comando2056 View Post
    Remote Kill doesn't work by NOP'ing those addresses...

    Ok then how will I get it to work?

  5. #5
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,584
    Reputation
    5180
    Thanks
    14,177
    My Mood
    Inspired
    Quote Originally Posted by arun823 View Post
    Ok then how will I get it to work?
    Go look inside Gellins VIP Base and try and understand what's being done.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  6. #6
    Shadow`'s Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    MN
    Posts
    636
    Reputation
    74
    Thanks
    3,014
    My Mood
    Relaxed
    Quote Originally Posted by AtomicStone View Post
    A+ Troll. Spaaaaaaaaceeee
    Nice spam kid. Spaaaaaaaaace

  7. #7
    arun823's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Los Angeles, California
    Posts
    523
    Reputation
    151
    Thanks
    1,899
    My Mood
    Amused
    Quote Originally Posted by comando2056 View Post


    Go look inside Gellins VIP Base and try and understand what's being done.
    I've already looked at Gellin's base and tried that,but whenever I shoot the game crashes, here's the code

    Code:
    void cHacks::RemoteKill( bool Kill )
    {
    	if( Kill )
     	{
     		DWORD dwOldVProtection;
     		VirtualProtect( (void*) ADDR_REMOTEKILL1, 5, PAGE_EXECUTE_READWRITE, &dwOldVProtection );
     		*(BYTE*)ADDR_REMOTEKILL1 = 0xE8;
     		*(DWORD*)ADDR_REMOTEKILL2 = ( (DWORD)IntersectAndPenetrateSegment ) - ( (DWORD)ADDR_REMOTEKILL2 + 0x4 );
     		VirtualProtect( (void*) ADDR_REMOTEKILL1, 5, dwOldVProtection, &dwOldVProtection);
    
    		VirtualProtect( (void*) ADDR_REMOTEKILL3, 5, PAGE_EXECUTE_READWRITE, &dwOldVProtection );
    		*(BYTE*)ADDR_REMOTEKILL3 = 0xE8;
    		*(DWORD*)ADDR_REMOTEKILL4 = ( (DWORD)IntersectAndPenetrateSegment ) - ( (DWORD)ADDR_REMOTEKILL4 + 0x4 );
    		VirtualProtect( (void*) ADDR_REMOTEKILL3, 5, dwOldVProtection, &dwOldVProtection);
     	}
     	else
    	{
     		MemEdit( (PBYTE)ADDR_REMOTEKILL1, (PBYTE)"\x8B\x51\x64\xFF\xD2", 5 );
    		MemEdit( (PBYTE)ADDR_REMOTEKILL3, (PBYTE)"\x8B\x51\x64\xFF\xD2", 5 );
    	}
     }
    All addies are correct what is wrong?

    P.S. - I already defined "IntersectAndPenetrateSegment" and all of that good stuff.

  8. #8
    matypatty's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    864
    Reputation
    229
    Thanks
    2,694
    My Mood
    Amused
    your missing the whole thing, try looking into the "IntersectAndPenetrateSegment" function and see what is actually going on.

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

    [MPGH]Flengo (05-23-2012)

  10. #9
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    this code was patched wasnt it? i have a different way of doing it(or had). ill try to find it for you.

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  11. #10
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,584
    Reputation
    5180
    Thanks
    14,177
    My Mood
    Inspired
    Just randomly defining something won't make it work. Inside the IntersectAndPenetrate Function is what's really going on for remotekill. Something you should look into, like Matypatty said.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  12. #11
    AtomicStone's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    827
    Reputation
    18
    Thanks
    476
    My Mood
    Lurking
    IntersectAndPenetrate function? Interesting.

  13. #12
    pDevice's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    d3d9.h
    Posts
    1,306
    Reputation
    15
    Thanks
    420
    My Mood
    Stressed
    My remotekill does not work when activated



  14. #13
    Shadow`'s Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    MN
    Posts
    636
    Reputation
    74
    Thanks
    3,014
    My Mood
    Relaxed
    Quote Originally Posted by comando2056 View Post
    Just randomly defining something won't make it work. Inside the IntersectAndPenetrate Function is what's really going on for remotekill. Something you should look into, like Matypatty said.
    He said he already defined it..., he didn't "randomly" define it.

  15. #14
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,584
    Reputation
    5180
    Thanks
    14,177
    My Mood
    Inspired
    Quote Originally Posted by Shadow` View Post
    He said he already defined it..., he didn't "randomly" define it.
    He didn't use it in his function though anyways. And I'm pretty sure he didn't get the actual function.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  16. #15
    Shadow`'s Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    MN
    Posts
    636
    Reputation
    74
    Thanks
    3,014
    My Mood
    Relaxed
    Mind showing him the function then? This is a help thread, not a "lets point out what I think he did wrong and not do anything about it" thread.

Page 1 of 3 123 LastLast

Similar Threads

  1. [Help Request] Remote Kill
    By BadBurrito in forum Combat Arms Coding Help & Discussion
    Replies: 9
    Last Post: 04-21-2012, 02:29 PM
  2. [Help Request] problem with crashing game. help :)?
    By lightningss in forum Alliance of Valiant Arms (AVA) Help
    Replies: 2
    Last Post: 07-15-2011, 12:36 PM
  3. Help with Remote kill [On / Off ]
    By franpanpan in forum Combat Arms Coding Help & Discussion
    Replies: 20
    Last Post: 01-29-2011, 06:07 AM
  4. Game CRash NEED HELP
    By xavierman232 in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 12-24-2008, 06:44 PM
  5. HELP PL0x
    By Super Martin in forum General Game Hacking
    Replies: 0
    Last Post: 09-20-2008, 08:29 AM