Jump to content

Counter-Strike: Source OB Memory Forcer (Help)!


Recommended Posts

Hey all,

Ok so, I've searched something called Bypasser.

It's just forcing some addresses and that's it...

So i found one that have been released at 2008... and I've tested it on the old engine of Counter-Strike: Source, And It's really working.

But till now the addresses has been changed and i got them...

I Can't just change addresses and let it work ... dont know why...

If some one can really help I'll be very happy.

The Source:

#NoTrayIcon
#include <NomadMemory.au3>
#include <GUIConstants.au3>
#include <GUIConstantsEx.au3>
#include <Misc.au3>
#include <Array.au3>
#include <GUIConstants.au3>
#include <WindowsConstants.au3>
#Include <Constants.au3>
#include <EditConstants.au3>

Opt("GuiOnEventMode", 1)
;hotkeys
HotKeySet("{ESC}","_exit")
HotKeySet("{F12}","consistency")
HotKeySet("{F11}","svcheats")
HotKeySet("{F10}","pure")

;variables
$consistency=1
$svcheats=1
$pure=1
$GuiWidth = 175
$GuiHeight = 300
$xPos = (@DesktopWidth - $GuiWidth) / 2
$yPos = (@DesktopHeight - $GuiHeight) / 2

;does the game exist?
If ProcessExists("hl2.exe") Then
    $exist=1
    else 
    $exist=0
EndIf
if $exist=0 then
        MsgBox(0, "Error", "Start CS:S First!")
        exit
EndIf


;sv_consistency bypass
Func consistency()
if $consistency=1 then
   $ID=_MemoryOpen(ProcessExists("hl2.exe"))
   $Address=0x54AB30
   _MemoryWrite($Address, $ID, 1)
   _MemoryClose($ID)
    GUICtrlCreateInput("Consistency Bypass On", 5, 270, 295, 20, $ES_READONLY,  $WS_EX_TRANSPARENT)
    GUICtrlSetBkColor(-1, 0x000000)
    GUICtrlSetColor(-1, 0xff0000)
ElseIf $consistency=0 Then
   $ID=_MemoryOpen(ProcessExists("hl2.exe"))
   $Address=0x54AB30
   _MemoryWrite($Address, $ID, 1)
   _MemoryClose($ID)
   GUICtrlCreateInput("Consistency Bypass Off", 5, 270, 295, 20, $ES_READONLY, $WS_EX_TRANSPARENT)
   GUICtrlSetBkColor(-1, 0x000000)
   GUICtrlSetColor(-1, 0xff0000)
EndIf
 If $consistency = 1 Then
    $consistency = 0
Else
    $consistency = 1
EndIf
EndFunc

;Replicated cvar bypass
 Func svcheats()
if $svcheats=1 then
   $ID=_MemoryOpen(ProcessExists("hl2.exe"))
   $Address=0x54A8F0
   _MemoryWrite($Address, $ID, 1)
   _MemoryClose($ID)
   GUICtrlCreateInput("Sv_cheats Bypass On", 5, 270, 295, 20, $ES_READONLY, $WS_EX_TRANSPARENT)
   GUICtrlSetBkColor(-1, 0x000000)
   GUICtrlSetColor(-1, 0xff0000)
ElseIf $svcheats=0 Then
   $ID=_MemoryOpen(ProcessExists("hl2.exe"))
   $Address=0x54A8F0
   _MemoryWrite($Address, $ID, 1)
   _MemoryClose($ID)    
   GUICtrlCreateInput("Sv_cheats Bypass Off", 5, 270, 3295, 20, $ES_READONLY, $WS_EX_TRANSPARENT)
   GUICtrlSetBkColor(-1, 0x000000)
   GUICtrlSetColor(-1, 0xff0000)
EndIf
 If $svcheats = 1 Then
    $svcheats = 0
Else
    $svcheats = 1
EndIf
EndFunc

;sv_pure bypass
Func pure()
if $pure=1 then
   $ID=_MemoryOpen(ProcessExists("hl2.exe"))
   $Address=0x5345DC
   _MemoryWrite($Address, $ID, 1)
   _MemoryClose($ID)
    GUICtrlCreateInput("Pure Bypass On", 5, 270, 295, 20, $ES_READONLY,  $WS_EX_TRANSPARENT)
    GUICtrlSetBkColor(-1, 0x000000)
    GUICtrlSetColor(-1, 0xff0000)
ElseIf $pure=0 Then
   $ID=_MemoryOpen(ProcessExists("hl2.exe"))
   $Address=0x5345DC
   _MemoryWrite($Address, $ID, 1)
   _MemoryClose($ID)
   GUICtrlCreateInput("Pure Bypass Off", 5, 270, 295, 20, $ES_READONLY, $WS_EX_TRANSPARENT)
   GUICtrlSetBkColor(-1, 0x000000)
   GUICtrlSetColor(-1, 0xff0000)
EndIf
 If $pure = 1 Then
    $pure = 0
Else
    $pure = 1
EndIf
EndFunc
 
 ;exit
 Func _exit()
     Exit
 EndFunc
 ;info
  Func info()
MsgBox(0, "Autoit CSS Bypasser",)
EndFunc
 
 
;The GUI
GUICreate("Gui", $GuiWidth, $GuiHeight, $xPos, $yPos, $WS_POPUP)
GUICtrlCreateLabel(" ", 0, 0, 175, 150, $ES_CENTER, $GUI_WS_EX_PARENTDRAG)
GUICtrlCreatePic("gui.bmp", 0, 0, 175, 300)
GuiCtrlSetState(-1,$GUI_DISABLE)
GUISetBkColor(000000)
GUICtrlCreateInput("Please make a selection....", 5, 230, 295, 20, $ES_READONLY, $WS_EX_TRANSPARENT)
GUICtrlSetBkColor(-1, 0x000000)
GUICtrlSetColor(-1, 0xff0000)
GuiCtrlSetState(-1,$GUI_DISABLE)


$Button1 = GUICtrlCreateButton ( "Exit", 130, 195 ,40,20 )
GUICtrlSetOnEvent($Button1, "_exit")
GUISetState()

$Button2 = GUICtrlCreateButton ( "Consistency", 5, 155 ,100 ,20 )
GUICtrlSetOnEvent($Button2, "consistency")
GUISetState()

$Button3 = GUICtrlCreateButton ( "Cvar Bypass", 5, 175 ,100 ,20 )
GUICtrlSetOnEvent($Button3, "svcheats")
GUISetState()

$Button4 = GUICtrlCreateButton ( "Pure Bypass", 5, 195 ,100 ,20 )
GUICtrlSetOnEvent($Button4, "pure")
GUISetState()

$Button5 = GUICtrlCreateButton ( "Info", 130, 175 ,40,20 )
GUICtrlSetOnEvent($Button5, "info")
GUISetState()
;gui end------>>

While 1
    Sleep(100)
    wend

The Process: hl2.exe

Addresses are:

engine.dll+54AB30 - sv_consistency
engine.dll+54A8F0 - sv_cheats
engine.dll+5345DC - sv_pure

All Basically i want just Force those addresses with a Value 1

Thanks to all who will try to help.

Link to comment
Share on other sites

Did you read this about Game Bots?

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

its sooo fucking lame that it's against the rules to talk about game bots keyloggers etc.

So you would love it if all the little script dickheads were flooding the internet with their "lol its just a laugh" keyloggers, and waking up every morning to all your compiled scripts being flagged by antiviruses the world over, some even just go ahead and delete them ?

Yeah, I suppose so, lets have a keyIogger forum dedicated to developing spyware eh spymare , oh isnt it funny how an M is like an upside down W ?

No wonder you are for such a thing, your username isnt exactly ingognito genius.

AutoIt Absolute Beginners    Require a serial    Pause Script    Video Tutorials by Morthawt   ipify 

Monkey's are, like, natures humans.

Link to comment
Share on other sites

  • Developers

its sooo fucking lame that it's against the rules to talk about game bots keyloggers etc.

Just go somewhere else if you don't agree or else simply shut up.

Jos

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...