THIS HACK WILL WORK ONLY ON EP2 SERVERS!
Hi.
For this hack you need 5+BoX+x
Ok, as always launch cabal, launch CE
Change Value type to Text,
And if your char is for example: warrior type in search box item_desc789 for BoF+4
for Wizz item_desc794 for BoS+4
[Earrings]:
Earring Of Guard +0 = item_desc805
+1 = item_desc806
+2 = item_desc807
+3 = item_desc808
+4 = item_desc809
---------------------------------------
Force Regeneration Earring +0 = item_desc810
+1 = item_desc811
+2 = item_desc812
+3 = item_desc813
+4 = item_desc814
---------------------------------------
Vampiric Earring +0 = item_desc815
+1 = item_desc816
+2 = item_desc817
+3 = item_desc818
+4 = item_desc819
---------------------------------------
Earring Of Seven Coins +0 = item_desc820
+1 = item_desc821
+2 = item_desc822
+3 = item_desc823
+4 = item_desc824
[Bracelets]:
Bracelet Of Fighter +0 = item_desc785
+1 = item_desc786
+2 = item_desc787
+3 = item_desc788
+4 = item_desc789
----------------------------------------
Bracelet Of Sage +0 = item_desc790
+1 = item_desc791
+2 = item_desc792
+3 = item_desc793
+4 = item_desc794
----------------------------------------
Extortion Bracelet +0 = item_desc795
+1 = item_desc796
+2 = item_desc797
+3 = item_desc798
+4 = item_desc799
----------------------------------------
Bracelet of Seven Coins+0 = item_dec800
+1 = item_desc801
+2 = item_desc802
+3 = item_desc803
+4 = item_desc804
And you should have about 2 adresses on the list, click on the first one with right mouse button, pick memory browse, and in memory browse search for this string 21 00 00 00 00 00 FF FF FF(or something like that) click right mouse button on 21 and add adress to the list.
Change value to 15, paste the adresses in to ustawienia.ini in the place that is marked on the screen, save file.
Prepare 3 BoX+x you must have a 2 pieces already in bracelet slots, the same kind example: if you are using BoF+3 then all of bracelets must be BoF+3, click on them manually (at first time u must wear rings)
and your BoX+x should "jump" in to ring slot and when BoX will "jump" in to ring slot.
Now launch dmghack.exe and press start, in this place u can manually click on the third bracelet, but its better tu use some macro.

If you are done click'n stop the program(its on the bottom right of your screen autoIT icon)
And change in CE value to 33, click few times on the rings, nex click few times on the BoX+x, in order to prevent dupe effect.

Dmg disappears after relog.
Tip: Start clickn in warp zone, like that in Port lux, amp will stack faster
Ok, here is AutoIT script:

Script doesn't belong to me, author:Kabuki-yo
Screens:
Virus total report of compiled script:
And here you have source
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Res_Fileversion=1.1
#AutoIt3Wrapper_Run_Obfuscator=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <nomadmemory.au3>
Global $CID = ProcessExists("CabalMain.exe")
Global $ADRES = IniRead("settings.ini", "SETTINGS", "ADRES", 0)
Global $ZMIENN1A = IniRead("settings.ini", "SETTINGS", "VALUE1A", 15)
Global $ZMIENN1B = IniRead("settings.ini", "SETTINGS", "VALUE1B", 33)
Global $Type
Global $ADR
Global $DELAY
$TYPE = "byte"
$MEMARRAY = _MEMORYOPEN($CID)
$ADR = _MEMORYREAD($ADRES, $MEMARRAY, "byte")
_MEMORYCLOSE($CID)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("DMG", 145, 131, 192, 129)
$Label1 = GUICtrlCreateLabel("Adress:", 8, 16, 34, 17)
$Label2 = GUICtrlCreateLabel("Value:", 8, 48, 36, 17)
$Label3 = GUICtrlCreateLabel($ADRES, 48, 16, 74, 17)
$Label4 = GUICtrlCreateLabel($ADR, 48, 48, 28, 17)
$START = GUICtrlCreateButton("Start", 11, 72, 59, 41, $WS_GROUP)
$Exit = GUICtrlCreateButton("Exit", 80, 72, 59, 41, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Start
DMG()
case $Exit
exit
EndSwitch
WEnd
Func DMG()
$DELAY = IniRead("settings.ini", "SETTINGS", "DELAY", 1000)
While 2
$MEMARRAY = _MEMORYOPEN($CID)
_MEMORYWRITE($ADRES, $MEMARRAY, $ZMIENN1A, $TYPE)
$ADR = _MEMORYREAD($ADRES, $MEMARRAY, $TYPE)
GUICtrlSetData($LABEL4, $ADR)
Sleep($DELAY)
_MEMORYWRITE($ADRES, $MEMARRAY, $ZMIENN1B, $TYPE)
$ADR = _MEMORYREAD($ADRES, $MEMARRAY, $TYPE)
GUICtrlSetData($LABEL4, $ADR)
_MEMORYCLOSE($CID)
Sleep($DELAY)
WEnd
EndFunc