Что нового

Rld.dll Pes 2012 -

Rld.dll Pes 2012 -

If you downloaded PES 2012 from a non-official source, the crack file might have been corrupted during the download process, or the archive (.rar/.zip) might have been incomplete.

First, a quick history lesson. rld.dll is not an official Konami file. It is a crack file created by the warez group RELOADED. rld.dll pes 2012

Crucially: A clean, official digital version of PES 2012 (if you bought it on a platform like Steam before it was delisted) does not use this file. If you downloaded PES 2012 from a non-official

First, let’s demystify the file. The rld.dll file is not an official Microsoft Windows file, nor does it come with the original retail disc version of PES 2012 from Konami. Instead, rld.dll is associated with a cracking group known as RELOADED. Crucially: A clean, official digital version of PES

In the gaming community, RELOADED is a well-known team that releases "cracks" for games—modified executables and library files that allow users to play games without inserting the original DVD or using an official license key. Therefore, if your PES 2012 installation contains an rld.dll file, you are almost certainly running a cracked or no-CD version of the game.

If you have a backup of the cracked files:

Автор
T

Tuxzer92

Новичок
Сообщения
65
Репутация
0
Код:
#include <GUIConstantsEx.au3>
#include <ButtonConstants.au3>

Local $nCh1, $nCh2, $nCh3, $nCh4, $nCh5, $nCh6, $msg, $text, $FileSize
$TotalSize=0
$DownloadSize=3
$Free="9"
GUICreate("My GUI Checkbox") ; Создаёт окно в центре экрана
$Label=GUICtrlCreateLabel($text,10,50,100,50)
$Label2=GUICtrlCreateLabel($Free,50,50,100,50)
$nCh1 = GUICtrlCreateCheckbox("Checkbox 1", 10, 10, 120, 20)
$nCh2 = GUICtrlCreateCheckbox("Checkbox 2", 10, 90, 120, 20)
$nCh3 = GUICtrlCreateCheckbox("Checkbox 3", 10, 150, 120, 20)
GUISetState() ; показывает созданное окно

; Запускается цикл опроса GUI до тех пор пока окно не будет закрыто
While 1
    $msg = GUIGetMsg()
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
   Switch $msg
	  Case $nCh1
		 Check($msg)
	  Case $nCh2
		 Check($msg)
	  Case $nCh3
		 Check($msg)
   EndSwitch
WEnd

Func Check($msg)
   If GUICtrlRead($msg) = $GUI_CHECKED Then
	  $TotalSize+=$DownloadSize
	  GUICtrlSetData ($Label, $TotalSize )
	  If $TotalSize >= $Free Then
		 MsgBox(16,"","ERROR")
	  EndIf
   EndIf
   If GUICtrlRead($msg) = $GUI_UNCHECKED Then
	   $TotalSize-=$DownloadSize
	  GUICtrlSetData ($Label, $TotalSize )
   EndIf
EndFunc

Решил так.
 
Верх