RE: Auto It

08/22/2009 13:32 beansprout#1
Previously I used Auto It without getting detected by HackShield, nothing happened until recently..

Auto Pot is ok, not detected. But when im using Skill spammer skill, my game close without any notice. No hackshield or bug trap.

This mean it's detected? IF it's not what's happen? :rolleyes:

Auto pot
Code:
;HotKey for terminating the script
HotKeySet("{F11}", "Terminate") 

$i = 1
;Window title for dragonica should be changed after every patch
$WinTitle = "Dragonica (Client Ver : 0.1.27)"	

;Force focus on dragonica
WinActivate($WinTitle)	

;Continuous looping
While $i <> 0	
	if $i = 2 Then
		Sleep(500)
		$i = 1
	Else
		;If the game exist check for hp and mp
		If (WinExists($WinTitle)) Then
			checkHp70()
		EndIf
		$i = 2
	EndIf
WEnd

Func checkHp70()
	$size = WinGetPos($WinTitle)
	;checking if hp falls below 70%
	$checkHp70 = Hex(PixelGetColor( $size[0]+675 , $size[1]+730 ), 6)
	
	;If hp falls below 70% autopot
	If $checkHp70 = '343434' Then
		ControlSend($WinTitle,'','','{1}');Uses hp pots
		Sleep(10000)
	EndIf
EndFunc

Func Terminate()
    Exit 0
EndFunc
spam script
Code:
HotKeySet("{ESC}", "Terminate")
HotKeySet("{-}", "AutoAttackToggle")

Global $Flag = False
$i=1

While 1
    Sleep(10)
WEnd

Func Terminate()
    Exit 0
EndFunc

Func AutoAttackToggle()
	$Flag = Not $Flag
    If $Flag Then
        AutoAttack()
    Else
        AutoAttackOff()
    EndIf
EndFunc

Func AutoAttack()
	While 1
			ControlSend('Dragonica (Client Ver : 0.1.27)','','','{s}')
			Sleep(2000)
			ControlSend('Dragonica (Client Ver : 0.1.27)','','','{d}')
			Sleep(2000)
			ControlSend('Dragonica (Client Ver : 0.1.27)','','','{f}')
			Sleep(2000)
			ControlSend('Dragonica (Client Ver : 0.1.27)','','','{w}')
			Sleep(2000)
	WEnd
EndFunc

Func AutoAttackOff()
	While 1
		Sleep(100)
	WEnd
EndFunc
08/23/2009 11:08 neogohan1#2
apparently some members have had the same problem too, and it's hackshield autoclosing their client from what i've read. I myself havn't had any autoit problems yet, using auto-skill rebuff, and x spamming.
08/23/2009 14:48 sh3v#3
neogohan would u mind sharing ur auto-skill buff script? maybe its purely the script that is causing the autoclosing
08/23/2009 16:12 y2k13780#4
i run scrip but nothings hapen is just show an icon on bottom of my tasking bar and also beside the clock there.... pls help =(
08/23/2009 17:13 hikki21#5
thank god
i tot im the only one with this problem
am using windows xp, running Fdragonica 1.27test1

Neogohan, may i know which version of Fdragonica u're using?
08/24/2009 01:22 beansprout#6
Yeah my auto pot script suddenly stopped working on my XP, havent tried it on Vista. Vista sucked..

Previously i used both script on my Vista, both worked well until recently the 1.27 patch..

Auto spam make the game close w/o error after few min (vista)..
Auto pot works but then suddenly just stop working yesterday.. (XP)

Using FD v1.27 Test 1 on my XP, auto pot still cant be used. Auto skill script works fine..
08/24/2009 01:49 micecats#7
Quote:
Originally Posted by beansprout View Post
Previously I used Auto It without getting detected by HackShield, nothing happened until recently..

Auto Pot is ok, not detected. But when im using Skill spammer skill, my game close without any notice. No hackshield or bug trap.

This mean it's detected? IF it's not what's happen? :rolleyes:
Try increasing the AutoAttackOff sleep by 100ms, until it doesn't d/c you anymore. (you might have to increase the first sleep as well)