Free Chaos Dungeon - Room 1 bot (AHK)

04/17/2022 17:32 Shaokahn#196
Works great on my zerker. Sadly it does not do Stage 2 where the real value lies (Leapstones and Upgrade Crystals) but seeing as it only uses AHK it should be relatively safe unless you get manually reported.
04/18/2022 16:24 milan4oht#197
Hey, thanks for the code :)
Any idea if i can make it work for 1366*768?
Got an older smaller laptop who can run it and u know :)
04/19/2022 05:52 harrisonchew10#198
Quote:
Originally Posted by milan4oht View Post
Hey, thanks for the code :)
Any idea if i can make it work for 1366*768?
Got an older smaller laptop who can run it and u know :)
use f3 get coordinate and edit the script.
04/19/2022 13:06 milan4oht#199
Quote:
Originally Posted by harrisonchew10 View Post
use f3 get coordinate and edit the script.
Update: Too much work to edit the code..
I just connected the laptop to an old TV which supports 1920*1080 and it works.
Thanks anyway : - )
04/19/2022 15:57 Instinct44#200
Quote:
Originally Posted by HuanSoh View Post
i'm getting error at line 390
switch farmregion
- this line does not contain a recognized action

can anyone help ?
Had the same issue. You probably run a lower version of AHK like I did. I updated to v1.1.33.10 and now the error is gone.

To update AHK, just open "C:\Program Files\AutoHotkey\Installer.ahk"

Fortunately, it is really simple and quick. Hope it helps!
04/22/2022 19:29 dr3dg10n#201
Was surprised with a message this morning when I logged into Lost Ark. Thought I was banned but it was a warning for Abusive Language... lmfao what a joke.
04/23/2022 19:44 Driverin#202
Can we make this work without staying focused on the screen? So, I can use the computer for other things while this works?
Perhaps someone with AHK knowledge can convert commands to controlclick and controlsend ?
04/24/2022 10:46 baggioh06#203
best script thank you
04/24/2022 16:09 Comprehensive_Socks156#204
anyone notice room 1 chaos dungeon shards got nerfed?
05/01/2022 12:14 byoda#205
does this still work?
05/01/2022 16:42 chompy2#206
It works great. I had to edit it, the positions could be just a little off but there is a setting for that in the code. Like someone stated above you should randomize some of the timers. I pretty much run it 24/7 doing the highest dungeon. I'm able to buy enough juice materials for 2 hones a day. Not the greatest. 2nd room would make it way more profitable but then you need an injection bot and I personally wouldn't run that.
05/02/2022 02:04 byoda#207
Quote:
Originally Posted by chompy2 View Post
It works great. I had to edit it, the positions could be just a little off but there is a setting for that in the code. Like someone stated above you should randomize some of the timers. I pretty much run it 24/7 doing the highest dungeon. I'm able to buy enough juice materials for 2 hones a day. Not the greatest. 2nd room would make it way more profitable but then you need an injection bot and I personally wouldn't run that.
how do i randomize some of the timers? do u mean edit the delay settings everytime i run it?
05/03/2022 19:17 foooball#208
Quote:
Originally Posted by chompy2 View Post
It works great. I had to edit it, the positions could be just a little off but there is a setting for that in the code. Like someone stated above you should randomize some of the timers. I pretty much run it 24/7 doing the highest dungeon. I'm able to buy enough juice materials for 2 hones a day. Not the greatest. 2nd room would make it way more profitable but then you need an injection bot and I personally wouldn't run that.
I clear second room, it's not that difficult but trying to get it to go into red/gold portal is another thing... probably can get it to work but then I spend more time deving and not playing.
05/06/2022 00:43 LuffyDMoake#209
Need dev help/another pair of eyes/@Siion;

Instead of randomized attacks...Trying to utilize the pixelsearch concept and apply it to enemies on the minimap. Then translate minimap position (using offset) to mouse cursor center of your actual character in-game. This should move the mouse in the direction of the enemy, however, nothing's happening...sad.

In the settings file, I added:
Code:
BasicTargetAttacks := true
In the main file, I added:
Code:
UseBasicTargetAttack() {
	global 

	if (!BasicTargetAttacks || !InBattle) {
		return
	}

	Sleep, BasicAttackDelay

;Defining target colour variable detection

	DetectedTargetColour := PixelSearch, MiniTargetX, MiniTargetY, 1724, 228, 1764, 188, 0xD01818, 8, Fast

	MiniTargetXOffset := MiniTargetX - 1744
	MiniTargetYOffset := MiniTargetY - 208

	gameWidthOffsetTarget := MiniTargetXOffset * 2.5
	gameHeightOffsetTarget := MiniTargetYOffset * 2.5

	gameWidthCenter := (gameWidth / 2)
	gameHeightCenter := (gameHeight / 2)

	TargetX := gameWidthCenter + gameWidthOffsetTarget
	TargetY := gameHeightCenter + gameHeightOffsetTarget

	if (DetectedTargetColour) {
	; Log(">> BasicTargetAttacks: " TargetX " / " TargetY)

	RightClickPosition(TargetX, TargetY)
	}
}
05/08/2022 09:50 kyune#210
Quote:
Originally Posted by foooball View Post
I clear second room, it's not that difficult but trying to get it to go into red/gold portal is another thing... probably can get it to work but then I spend more time deving and not playing.
Would you by chance be able to share the second room ahk coding? I'm also trying to set one up as well but not sure what I'm doing wrong. Much appreciated if you decide to share thanks!