google-site-verification: googlebaca44933768a824.html lowlevel sv_cheats bypass - Old Royal Hack Forum

Announcement

Collapse
No announcement yet.

lowlevel sv_cheats bypass

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    lowlevel sv_cheats bypass

    Hi

    i meant to make this as lowlevel as possible BUT without any code modification

    Code:
    inline void ForceCheats()
    {
    	_asm
    	{
    		MOV EAX, DWORD PTR DS:[0x2051F780];
    		MOV DWORD PTR DS:[EAX+0x2C], 1;
    	}
    }
    I call this in a frame based function ie your panels Paint or PaintTraverse

    and i still get

    ] sv_cheats
    "sv_cheats" = "0"
    so its probably undetected by server anticheats too. :)

    #2
    Lawgiver how can we make out of this , sv_consistency bypass0r too?

    Comment


      #3
      Originally posted by PikachuMaster View Post
      Lawgiver how can we make out of this , sv_consistency bypass0r too?
      Maybe with Olly? party21
      Big thanks Lawgiver, I think I will use that in my hack (you already have credits). :)

      Comment


        #4
        Stealthy lowlevel german ninjas, coming with submarines, moving underground, silently killing everyone you love.
        lolmaoman: Germans are born with a lifetime x22 login engraved into their birth certificates. True story.
        I DONT HAVE TEAMVIEWER AND IM NOT GOING TO GIVE ANY 24/7 ONLINE SUPPORT VIA STEAM, XFIRE OR OTHER IM PROGRAMS SO DONT BOTHER ASKING. THANKS.

        Comment


          #5
          Originally posted by mencore View Post
          Stealthy lowlevel german ninjas, coming with submarines, moving underground, silently killing everyone you love.
          Dnt scare me :/:char0114:
          Originally posted by v3n0m4

          Sam: All us PC boys will go to hell
          wtf: hahahaha
          Sam: according to the bible masturbation is not aloud
          wtf: so much win for the guy who made internet a reality
          wtf: he damned everyone on earth at once
          Sam: lmao
          wtf: mass banhammer
          wtf: forfeit your souls idiots clik on me instead
          Sam: BOOM
          Sam: BAN HAMMER
          wtf: but for sure all women come too
          wtf: wich will make it a very cool place
          Sam: all hot women
          Sam: and ugly women
          Sam: to make us food
          wtf: forced to rape all these bitch for eternity sounds like a great scenario to me
          Sam: sandwiches
          wtf: sandwich for us semen for them
          wtf: in bread maybe semwich

          Comment


            #6
            Originally posted by mencore
            This might be wrong since im horrible at asm and i cant try it because i dont yet have compiler installed on my PC but try it:

            Code:
            inline void ForceConsistency()
            {
            	_asm
            	{
            		MOV EAX, DWORD PTR DS:[0x2051F588];
            		MOV DWORD PTR DS:[ECX+0x28], 0;
            	}
            }
            Im sure that when Lawgiver comes online he will tell me how wrong i am but it was worth a try ;)
            Well it certainly won't work if you are attempting to access a member of ECX, when you are moving it into EAX.

            Code:
            	_asm
            	{
            		MOV ECX, DWORD PTR DS:[0x2051F588];
            		MOV DWORD PTR DS:[ECX+0x28], 0;
            	}

            Comment


              #7
              Originally posted by badsta View Post
              Well it certainly won't work if you are attempting to access a member of ECX, when you are moving it into EAX.
              Ooops, you are right, my bad and thank you, i didnt pay enough attention :)

              EDIT: FUCK IT, i make new thread since this is messy:
              Last edited by mencore; 08-29-2009, 03:57 PM.
              lolmaoman: Germans are born with a lifetime x22 login engraved into their birth certificates. True story.
              I DONT HAVE TEAMVIEWER AND IM NOT GOING TO GIVE ANY 24/7 ONLINE SUPPORT VIA STEAM, XFIRE OR OTHER IM PROGRAMS SO DONT BOTHER ASKING. THANKS.

              Comment


                #8
                nice job
                /* fibre */

                Comment


                  #9
                  Originally posted by Jenson View Post
                  Dnt scare me :/:char0114:
                  you better be paranoid,
                  for that sig im gonna kill rape and roast you!
                  check your six!






                  gibs coins @
                  1KatP9B8KG7mvcoFhdLGua1isG88nYZE8C

                  Comment


                    #10
                    cool german codens for in my copypasta, thx lawy

                    Comment


                      #11
                      Re: lowlevel sv_cheats bypass

                      just saying that u need new offsets ;)

                      Comment


                        #12
                        Re: lowlevel sv_cheats bypass

                        funny post if you dont tell them:

                        Code:
                        sv_consistency:
                        2004BD58    8B0D B0F55120                       MOV ECX,DWORD PTR DS:[2051F5B0]               ; engine.2051F598
                        2004BD5E    8379 2C 00                          CMP DWORD PTR DS:[ECX+2C],0
                        
                        _asm
                        {
                        	MOV ECX, DWORD PTR DS:[0x2051F5B0];
                        	MOV DWORD PTR DS:[ECX+0x2C], 0;
                        }
                        
                        sv_cheats:
                        2004FBAF    8B0D 60F75120                       MOV ECX,DWORD PTR DS:[2051F760]               ; engine.2051F748
                        2004FBB5    8379 2C 00                          CMP DWORD PTR DS:[ECX+2C],0
                        
                        _asm
                        {
                        	MOV ECX, DWORD PTR DS:[0x2051F760];
                        	MOV DWORD PTR DS:[ECX+0x2C], 1;
                        }

                        Comment


                          #13
                          Re: lowlevel sv_cheats bypass

                          sorry i was gonna post it but im busy because i have big exam now -.-

                          Comment


                            #14
                            Re: lowlevel sv_cheats bypass

                            MOV DWORD PTR DS:[EAX+AC], 1; now

                            IDK ac offset
                            Last edited by zip; 12-03-2010, 06:17 PM.
                            ??m?

                            Comment


                              #15
                              Re: lowlevel sv_cheats bypass

                              *sigh*

                              Code:
                              pSvCheats = g_pCvar->FindVar ( "sv_cheats" );
                              
                              if ( pSvCheats )
                              {
                              	pSvCheats->m_nValue = 1;
                              }

                              Comment


                                #16
                                Re: lowlevel sv_cheats bypass

                                ConVar *SvCVar = k_CvarInterface->FindVar("sv_cheats");
                                if(SvCVar != NULL){

                                SvCVar->SetValue(1);
                                }
                                ??m?

                                Comment


                                  #17
                                  Re: lowlevel sv_cheats bypass

                                  Originally posted by pcfaker View Post
                                  ConVar *SvCVar = k_CvarInterface->FindVar("sv_cheats");
                                  if(SvCVar != NULL){

                                  SvCVar->SetValue(1);
                                  }
                                  No, no and no.

                                  This is supposed to be low level, your code is detectable by server sided anti cheats.

                                  Comment


                                    #18
                                    Re: lowlevel sv_cheats bypass

                                    ok thx badsta =)
                                    ??m?

                                    Comment

                                    Working...
                                    X