just finished to wrote down what you will see below.
It is a simple AutoIT script which works like this:
- Finds a target
- Hit target until it dies [Normal attack only]
- Loot target
- Check Character HP, If low it rests, otherwise it will loop back from start.
The only part missing in this work is a valid method to bypass HShield.
I have tried the method being used for S4 League:

Injecting FlorensiaEN.bin instead of S4 Client... but I got detected after 5-10 mins....
SO THIS ISN'T A FULLY WORKING RELEASE, DON'T ASK FOR ONE
*IMPORTANT*
1) I would really appreciate suggests on how to bypass HShield.
2) I would really appreciate suggests on how to optimize the "Get Monster HP/Get Character HP" part, cause I really think that GetPixelColor as I am doing isn't the best one...
Note: This is my first time trying on something like this
[Actually optimized for my computer for Pixel retrieving part]
[The game should be set in FullScreen Mode - Resolution: 1024x768x32]
[Automatic LOOT Option should be flagged in-game]
Source of V1.1 - Replaced numbers of skill bars with in-game built actions.
Code:
Sleep(5000)
Call ("FindTarget")
Func FindTarget()
Sleep ( 500 )
Send( "{TAB}" )
Sleep ( 500 )
Call ("Attack")
EndFunc
Func Attack()
Send("{SPACE}")
$MobHP = PixelGetColor(411,37)
If $MobHP = 0x050103 Then
Sleep(1000)
Call("Attack")
Else
Send("{SPACE}")
EndIf
Call ("Loot")
$CharHP = PixelGetColor(143,36)
If $CharHP = 0x611731 Then
Call ("Rest")
Else
Call ("FindTarget")
EndIf
EndFunc
Func Rest()
Send ("{Z}")
sleep (10000)
Send ("{W}")
Call ("FindTarget")
EndFunc
Func Loot()
Sleep(1000)
Send("{X}")
Sleep(3000)
Call ("FindTarget")
EndFunc
The password for the Archive is:






