Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 50
  1. #16
    Yuknowho's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    180
    Quote Originally Posted by REVIVE View Post
    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.
    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

  2. #17
    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 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
    Added this to starting post

    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

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

    Yuknowho (06-27-2012)

  4. #18
    Alcoholsa's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    USA
    Posts
    12
    Reputation
    10
    Thanks
    1
    just want to say thanks, ur *erl remover work perfect with this marco https://www.mpgh.net/forum/201-allian...l-support.html

  5. #19
    Yuknowho's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    180
    Here is the source of the program, I took out the counter though, because it can only delay the process

     
    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


    Hope some people can learn from this
    Last edited by Justin; 06-27-2012 at 08:45 PM.

  6. #20
    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 Yuknowho View Post
    Here is the source of the program, I took out the counter though, because it can only delay the process

     
    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


    Hope some people can learn from this
    Added Virus Scans, Source Code and New Attachment to Opening Post.

    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

  7. #21
    Ken Jeong's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    1,131
    Reputation
    17
    Thanks
    283
    My Mood
    Hungover
    Checked out the source, looks fast and to the point, no useless looping

    Good work, I love seeing aspiring coders/programmers

    On a side note, if I ever catch you hacking in a game I am playing, I will report you, MPGH-ian or not.

    -NghiV
    "Aren't you the guy that made unlimited respawn for CA along time ago? That was epic." - [MPGH]AVGN

  8. #22
    Asgard93's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    6
    Reputation
    21
    Thanks
    3
    I cant change my installed partion of Harddisk
    AVA is istalled in /D not in //c but i cant change it is not there
    no opion to do this in these exes

  9. #23
    Yuknowho's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    180
    Quote Originally Posted by Asgard93 View Post
    I cant change my installed partion of Harddisk
    AVA is istalled in /D not in //c but i cant change it is not there
    no opion to do this in these exes
    You can actually choose a folder on the D:\ drive, just click the 'Edit' button then type "D:\" in the inputbox and click the '...' button, now you can select folders on your D:\ drive!

  10. #24
    rodrigo0901's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    Not working ERL keep dcing me :/

  11. #25
    StaraviaZ's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    0
    Finally an ".erl Remover" that works for me. I tried the others too but this is the only one that works and it's easy to use too. Thank you so much!

  12. #26
    psyman88's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    82
    Reputation
    10
    Thanks
    8
    My Mood
    Busy
    Doesn't delete files that are in use by a process. I've gotten around that on my own (running as admin doesn't work for it).
    Causes GameGuard to crash much faster than it does normally.
    Causes a lot of lag.

    So far I'm not impressed, but I guess I can't complain.

  13. #27
    StaraviaZ's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    0
    Ok, dunno why, but now it's not working anymore. Yesterday the remover deleted everytime about 12 files and more and working, today max 10, maybe a coincidence. The point is that now it seems to be kinda useless.

  14. #28
    Fabre25's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    0
    Hy. Game guard erros pls help :SS Image: https://noob.hu/2012/07/05/Untitled_1.png
    Last edited by Fabre25; 07-05-2012 at 06:34 AM.

  15. #29
    Gall1200's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    2
    Still getting kicked from game adn the erl error.
    even if I use your deleter

  16. #30
    Scouty's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    2
    Also getting erl error

Page 2 of 4 FirstFirst 1234 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