Page 1 of 4 123 ... LastLast
Results 1 to 15 of 50
  1. #1
    Yuknowho's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    180

    Delete GameGuards .erl Files *Updated*

    Hi There MPGH,

    I downloaded AVA a few weeks ago, and I noticed that when you would use e.g. cheat engine it would crash and GameGuard would give a message that there were some .erl files in a folder that I would have to send to an email address. I started playing with the idea to delete the files, and this is the result. I kept it for private use, but I decided I wanted to release it, and since I have downloaded lots of hacks from mpgh I decided I would release it here.

    I did notice that some other people on this site had the same idea, but I checked their threads and this program is quite a bit different from the ones that are already posted. Oh, and maybe I will later also post the source.

    What does it do?
    This program extends the time before AVA crashes while using for example Cheat Engine.

    ScreenShots:

    With Counter


    Without Counter


    How to use:
    - Unrar the archive and save both files to the same folder
    - Open the program (as admin)
    - Click edit and type or choose the path to your GameGuard folder
    - Click Start and run Ava

    Quote Originally Posted by Yuknowho View Post
    The close button does not work while the program is active, to quit the program press F9 (Then it will stop looping), and then press the close button, it should work


    Virus Scans With Counter
    VirusTotal
    Jotti

    Virus Scan Without Counter
    Jotti
    VirusTotal

    I don't know why the virusscan gives false positives, probably because it is coded in AutoIt.

     

    Code:
    ;Delete AVA .erl files by Yuknowho
    
    #AutoIt3Wrapper_run_obfuscator=y
    #Obfuscator_parameters=/striponly
    
    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #include <File.au3>
    
    #RequireAdmin
    
    #region ### START Koda GUI section ### Form=D:\Program Files\Koda\Forms\AVA erl Delete v1.kxf
    $MainForm = GUICreate("AVA .erl Delete | v1.2 | Yuknowho - Mpgh", 347, 58, 192, 124)
    
    ;Labels:
    $MpghLabel = GUICtrlCreateLabel("MPGH", 240, 28, 78, 28)
    GUICtrlSetFont(-1, 18, 400, 2, "Palatino Linotype")
    GUICtrlSetColor(-1, 0x000080)
    
    ;Inputs:
    $PathInput = GUICtrlCreateInput("C:\", 8, 8, 329, 21)
    GUICtrlSetData( -1, IniRead( 'Path.ini', 'GameGuard .erl Files', 'Path', 'C:\' ) )
    GUICtrlSetState(-1, $GUI_DISABLE)
    
    ;Buttons:
    $Edit = GUICtrlCreateButton("Edit", 96, 32, 83, 25)
    $Start = GUICtrlCreateButton("Start", 8, 32, 83, 25)
    $ChoosePath = GUICtrlCreateButton("...", 184, 32, 27, 25)
    GUICtrlSetState(-1, $GUI_DISABLE)
    
    GUISetState(@SW_SHOW)
    #endregion ### END Koda GUI section ###
    
    HotKeySet( '{F9}', '_ToggleQuit' )
    
    Global $EditToggle = False
    Global $StartToggle = False
    
    While 1
    	$nMsg = GUIGetMsg()
    	Switch $nMsg
    		Case $GUI_EVENT_CLOSE
    			Exit
    		Case $Edit
    			_EditPath()
    		Case $ChoosePath
    			_SetPath()
    		Case $Start
    			_StartDelete()
    	EndSwitch
    WEnd
    
    Func _EditPath()
    	If $EditToggle = False Then
    		GUICtrlSetState( $Start, $GUI_DISABLE )
    		GUICtrlSetState( $PathInput, $GUI_ENABLE )
    		GUICtrlSetState( $ChoosePath, $GUI_ENABLE )
    		GUICtrlSetData( $Edit, 'Save' )
    	Else
    		IniWrite( 'Path.ini', 'GameGuard .erl Files', 'Path', GUICtrlRead( $PathInput ) )
    		GUICtrlSetState( $Start, $GUI_ENABLE )
    		GUICtrlSetState( $PathInput, $GUI_DISABLE )
    		GUICtrlSetState( $ChoosePath, $GUI_DISABLE )
    		GUICtrlSetData( $Edit, 'Edit' )
    	EndIf
    
    	$EditToggle = Not $EditToggle
    EndFunc ;==>_EditPath()
    ;EndFunc
    
    Func _SetPath()
    
    	Local $FilePath = ''
    
    	$FilePath = FileSelectFolder( 'Select GameGuard folder where .erl files are stored', GUICtrlRead( $PathInput ) )
    
    	If $FilePath = Not '' Then
    		GUICtrlSetData( $PathInput, $FilePath )
    	EndIf
    
    EndFunc ;==>_SetPath()
    ;EndFunc
    
    Func _StartDelete()
    	Local $Path = GUICtrlRead( $PathInput )
    	Local $Files
    
    	GUICtrlSetData( $Start, 'Quit: F9' )
    	GUICtrlSetState( $Start, $GUI_DISABLE )
    	GUICtrlSetState( $Edit, $GUI_DISABLE )
    
    	$StartToggle = True
    
    	While $StartToggle = True
    		$Files = _FileListToArray( $Path, '*.erl', 1 )
    
    		If IsArray( $Files ) Then
    			For $i = 1 To Ubound( $Files ) - 1
    					FileDelete( $Path & '\' & $Files[$i] )
    			Next
    		EndIf
    
    		;Sleep( 10 )
    	WEnd
    
    	GUICtrlSetData( $Start, 'Start' )
    	GUICtrlSetState( $Start, $GUI_ENABLE )
    	GUICtrlSetState( $Edit, $GUI_ENABLE )
    EndFunc ;==>_StartDelete()
    ;EndFunc
    
    Func _ToggleQuit()
    	If $StartToggle = True Then
    		$StartToggle = False
    	EndIf
    EndFunc ;==>_ToggleQuit()
    ;EndFunc

    Have Fun!
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Justin; 06-27-2012 at 08:49 PM. Reason: Added No Counter Attachment and Affiliated Virus Scans and Source Code

  2. The Following 180 Users Say Thank You to Yuknowho For This Useful Post:

    15kika15 (11-04-2012),171alioguzhan (07-12-2012),1Thing (10-10-2012),211070 (07-20-2012),22pajar (07-02-2012),27ecastudent (06-28-2012),9412 (06-30-2012),Adan106 (06-27-2012),ads23 (12-31-2012),agnwstos (07-05-2012),akmarster (02-22-2013),Alcoholsa (06-27-2012),AlexTinezzz (09-10-2012),alimin1993 (10-21-2012),Alroundeath (07-09-2012),AlwaysRaGe (07-11-2012),amirsofer9 (06-30-2012),ammarzuqi (06-27-2012),ample (10-06-2012),antonice22 (07-10-2012),asweetlove (06-28-2012),avagamer (07-17-2012),azneita03 (12-30-2012),Ba.avr1 (07-04-2012),BassGenn (09-29-2012),besofezo (02-14-2013),BigSean (07-01-2012),BlingBoyOto (07-11-2012),boranapak (07-06-2012),Botaychamcom (07-09-2012),bullseye732 (07-15-2012),carlos1345 (10-05-2012),ccman32 (06-26-2012),ChampC (07-17-2012),chuotconleader (06-29-2012),Ciacra123 (07-24-2012),ComeStain (07-14-2012),crack0n (07-01-2012),crack151431 (07-19-2012),crazyskull (07-17-2012),dadacoi (07-03-2012),DajZk (06-29-2012),darkimran94 (07-08-2012),DarkSt0rmX (06-27-2012),Darkstar241 (07-19-2012),darkwingsown (07-29-2012),davidof22 (07-22-2012),deathsknight0 (06-26-2012),Diegostreet (07-02-2012),DipuZz (07-31-2012),doclong (10-17-2012),Dreinor (08-01-2012),dsaadss (07-02-2012),dumper115 (07-23-2012),edmundedmund (07-14-2012),elquetelometio (07-07-2012),emlorp (07-16-2012),emomike (07-19-2012),Eragon2589 (07-08-2012),executorsk (07-09-2012),ExpressNaab (07-04-2012),Fabre25 (06-28-2012),Fantoooooooooom (07-16-2012),freak420 (07-18-2012),funky308 (06-26-2012),Fuytugi (07-11-2012),gallaceja1 (07-17-2012),GansterPro (07-20-2012),garbec (07-16-2012),gatjinho (07-14-2012),gf4ever2 (12-27-2012),Giek (07-03-2012),grayhiller6 (06-28-2012),GreenBird201 (06-26-2012),guga4 (09-14-2012),habooblax (10-12-2012),hakam123. (07-17-2012),Hallootjes123 (07-14-2012),himuro75 (07-14-2012),holvis (07-17-2012),Hubert2 (10-09-2012),hypekiller1 (07-07-2012),iamnumber4 (06-26-2012),ikaheel (07-27-2012),ILoveParaWithMacro (07-01-2012),inshamaji (07-16-2012),IsaKato (07-19-2012),JahRastaman (07-04-2012),jirost (08-16-2012),jjh1709 (06-26-2012),jkljkl218 (07-10-2012),joker__4ever (07-02-2012),JosephPeru (07-17-2012),juanga8905 (07-09-2012),kaanhasan1 (09-03-2012),kaanmay (09-18-2012),Kampec (06-29-2012),KaroshiS (07-10-2012),khurana5 (07-17-2012),Kirua (07-04-2012),konvirushacker (11-22-2012),kumicho (08-20-2012),Laxifax (07-12-2012),lilpac (06-26-2012),LinkinPark644 (07-22-2012),liorturok1 (07-11-2012),lolzky (07-09-2012),lucanapoli21 (07-11-2012),LuvJaime (10-10-2012),m7mad00 (07-31-2012),mamioukos (07-12-2012),Mariana69 (07-06-2012),matheusmts (07-10-2012),Mattyas (07-11-2012),maurigoku12 (07-16-2012),MetaDr0id (07-01-2012),mevirovingio (07-12-2012),mikepr0z101 (07-11-2012),Monsta1 (07-20-2012),Moshe Kasa (11-05-2012),mrchuchu (09-02-2012),mrflasha (06-29-2012),MrLubetube (07-09-2012),MrRomero (01-14-2013),mrtzx (07-05-2012),nbasuns (06-30-2012),neiku_1115 (07-23-2012),nonickorname (07-06-2012),Occidi de Pax (07-08-2012),oneidy (07-14-2012),OrNahum7 (07-17-2012),outrun123 (07-04-2012),owidat1 (07-10-2012),petersonsilvva (10-12-2012),pipi81 (10-06-2012),Ponzo (09-20-2012),PrimoVongola (02-14-2013),princegucci2 (10-05-2012),ProHackas (07-02-2012),prokilla_1 (10-07-2012),pz65 (07-11-2012),rage1989 (09-18-2012),raulpro (06-28-2012),Richardz03 (07-14-2012),robgnia (07-14-2012),rody07 (07-01-2012),roy979 (07-05-2012),Rygart (11-12-2012),saleh09 (08-23-2012),samdaman95 (07-15-2012),shadown3 (07-14-2012),shm0ke (07-10-2012),SomeoneNoneOfYourConcern (06-28-2012),son_devil (07-15-2012),speedy006 (07-14-2012),SteelSkinz (07-12-2012),swiftyxxx (07-22-2012),tahrick (07-14-2012),theorc (07-17-2012),tong321 (07-09-2012),TORCIDO (07-13-2012),urfrid (07-10-2012),vitopippo (07-18-2012),vrbnjak14 (07-15-2012),wGRWGHWGRERGrgergergrg (07-04-2012),whosCarbon (07-13-2012),williambrons (07-13-2012),wowseb (08-16-2012),xFishFace (07-09-2012),xSu (07-18-2012),xXCommanderHXx (09-24-2012),XXshadow (10-07-2012),yanakay (07-15-2012),ylbaa6220271 (07-21-2012),YouGotOwned99 (06-26-2012),Zaker (08-19-2012),zedblaze (07-30-2012),zero3000 (06-25-2012),zikrietan (06-26-2012),zizzee (06-28-2012)

  3. #2
    Justin's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    7,085
    Reputation
    1339
    Thanks
    2,868
    My Mood
    Inspired
    Just letting you guys know that I have seen this thread and will run the checks when I get home from work, unless @Pie sees this, but I agree having too many .erl programs will eventually become annoying. I will allow a maximum of four to be released at a time.
    Last edited by Justin; 06-25-2012 at 10:44 PM.

    Minion Statistics

    Ex-Console Minion: 13/01/2011 ~ 19/04/2011
    Console Re-Minion: 14/06/2012 ~ 27/02/2013
    AVA Minion: 22/06/2012 ~ 12/11/2012
    Battlefield Minion: 04/02/2013 ~ 27/02/2013

  4. #3
    iamnumber4's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    210
    Reputation
    10
    Thanks
    5
    My Mood
    Confused
    WHEN i click downnload and Thnx or normal download its write
    This attachment has not been approved yet. Please go back and read or respond to the thread

  5. #4
    Justin's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    7,085
    Reputation
    1339
    Thanks
    2,868
    My Mood
    Inspired
    Quote Originally Posted by iamnumber4 View Post
    WHEN i click downnload and Thnx or normal download its write
    This attachment has not been approved yet. Please go back and read or respond to the thread
    That's because I need to check it for viruses and make sure it safe. I'll do that in 3 hours when I've finished work!

    Minion Statistics

    Ex-Console Minion: 13/01/2011 ~ 19/04/2011
    Console Re-Minion: 14/06/2012 ~ 27/02/2013
    AVA Minion: 22/06/2012 ~ 12/11/2012
    Battlefield Minion: 04/02/2013 ~ 27/02/2013

  6. #5
    Yuknowho's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    180
    Yup I noticed, but this one has a GUI and it checks if there are files present (and also what files), and then deletes them.

  7. #6
    AVA PlaYe's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    delusional
    Posts
    1,486
    Reputation
    36
    Thanks
    3,713
    Quote Originally Posted by Yuknowho View Post
    Yup I noticed, but this one has a GUI and it checks if there are files present (and also what files), and then deletes them.
    mine has a GUI too :P also my version check if they exist before delete too
    I Miss the old time


  8. #7
    Yuknowho's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    180
    Quote Originally Posted by AVA PlaYe View Post
    mine has a GUI too :P also my version check if they exist before delete too
    oh, because in the source you posted you don't do that.. awh nvm this will let you easily set the GameGuard path and I just wanted to do something for the community and release this

  9. #8
    AVA PlaYe's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    delusional
    Posts
    1,486
    Reputation
    36
    Thanks
    3,713
    Quote Originally Posted by Yuknowho View Post
    oh, because in the source you posted you don't do that.. awh nvm this will let you easily set the GameGuard path and I just wanted to do something for the community and release this
    i said, my version check if they exist but it doesn't matter if you check if they exist or not...
    I Miss the old time


  10. #9
    Yuknowho's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    180
    Quote Originally Posted by AVA PlaYe View Post
    i said, my version check if they exist but it doesn't matter if you check if they exist or not...
    I believe it does matter, because I think the program can perform the loop faster when it only checks if the files exist then when it keeps trying to delete non existing files (not 100% sure though). Also this program checks if there are any .erl files in the given folder, and deletes them all. When this gets approved I might release the source so you can see how I did this.

  11. #10
    Ken Jeong's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    1,131
    Reputation
    17
    Thanks
    283
    My Mood
    Hungover
    Quote Originally Posted by Yuknowho View Post
    I believe it does matter, because I think the program can perform the loop faster when it only checks if the files exist then when it keeps trying to delete non existing files (not 100% sure though). Also this program checks if there are any .erl files in the given folder, and deletes them all. When this gets approved I might release the source so you can see how I did this.
    Post source as a comment
    "Aren't you the guy that made unlimited respawn for CA along time ago? That was epic." - [MPGH]AVGN

  12. #11
    Liz's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    179° 56′ 39.4″, +0° 2′ 46.2″, 7,940 ± 420 parsecs
    Posts
    37,183
    Reputation
    5621
    Thanks
    20,746
    My Mood
    Tired
    Closed until minions can check it with the game. @REVIVE we do not disallow content simply because others exist. Same thing that applies to injectors applies to other tools as well. As long as it is safe, and works, it is allowed.
    Last edited by Liz; 06-26-2012 at 08:35 PM.

    If anyone claims to be me via any other source outside of MPGH private or visitor messages, IT'S NOT ME!
    They are trying to trick or scam you. Report them immediately and PM me here for verification.
    "Don’t confuse my personality with my attitude. My personality is who I am. My attitude depends on who you are." — Frank Ocean
    Moderator: 5/2009-10/2009 | GMod: 10/2009-10/2010 | Staff Administrator: 10/2010-Present
    I
    do not do requests via PM. Post in the appropriate section.
     
    Stupid/Pointless Private messages = SPAM, SPAM = BAN.

  13. The Following User Says Thank You to Liz For This Useful Post:

    Justin (06-26-2012)

  14. #12
    Justin's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    7,085
    Reputation
    1339
    Thanks
    2,868
    My Mood
    Inspired
    Initial Assessment of the Attachment warrants a clean status.

    Warning: File is Packed

    /Approved

    @Liz Roger That Boss

    Minion Statistics

    Ex-Console Minion: 13/01/2011 ~ 19/04/2011
    Console Re-Minion: 14/06/2012 ~ 27/02/2013
    AVA Minion: 22/06/2012 ~ 12/11/2012
    Battlefield Minion: 04/02/2013 ~ 27/02/2013

  15. The Following 2 Users Say Thank You to Justin For This Useful Post:

    Lehsyrus (06-27-2012),[MPGH]Liz (06-26-2012)

  16. #13
    Ken Jeong's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    1,131
    Reputation
    17
    Thanks
    283
    My Mood
    Hungover
    @Yuknowho Congrats on getting it approved, your first AVA release


    Anyways, post the source somewhere so I can analyze and compare/contrast with the other 2 .erl removers?
    "Aren't you the guy that made unlimited respawn for CA along time ago? That was epic." - [MPGH]AVGN

  17. #14
    Justin's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    7,085
    Reputation
    1339
    Thanks
    2,868
    My Mood
    Inspired
    I have found a flaw though, Your close button in the main program does not work, if you wish to exit this program then do say via the system tray near the time (Bottom Right) by right clicking on the AVA symbol and clicking exit.

    Minion Statistics

    Ex-Console Minion: 13/01/2011 ~ 19/04/2011
    Console Re-Minion: 14/06/2012 ~ 27/02/2013
    AVA Minion: 22/06/2012 ~ 12/11/2012
    Battlefield Minion: 04/02/2013 ~ 27/02/2013

  18. #15
    Lu3x's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    3
    My Mood
    Relaxed
    Nice release bro but this dont bypass gamegurad ;-)

Page 1 of 4 123 ... LastLast

Similar Threads

  1. Error 1003 gameguard ERL FILES
    By capullom in forum Alliance of Valiant Arms (AVA) Help
    Replies: 4
    Last Post: 09-18-2012, 04:27 AM
  2. How Delete GameGuards .erl files
    By AriesGunter in forum Alliance of Valiant Arms (AVA) Help
    Replies: 11
    Last Post: 07-07-2012, 04:25 PM
  3. .ERL files in gameguard
    By rahaga99 in forum Alliance of Valiant Arms (AVA) Help
    Replies: 1
    Last Post: 02-26-2012, 02:11 AM
  4. Combat Arms Critical Files UPDATED! [10-12-2009]
    By wilsonlam97 in forum Combat Arms Discussions
    Replies: 14
    Last Post: 11-05-2009, 01:25 PM
  5. Combat Arms .REZ File Update
    By whitten in forum Combat Arms Discussions
    Replies: 12
    Last Post: 09-30-2009, 06:47 AM