Hello.
I wrote the code for auto-entry into the bomber royal.
To run it, you need to have an
AutoHotkey.
Next, create an AHK file on the desktop:
(right click > create > AutoHotkey Script)
Open it with a
notepad (any one) and insert the code that will be below.
It is recommended to remove all mods that change the bomber interface and set the user interface size to x1.00 (esc > settings > miscellaneous)
It is necessary that
all Trove windows are in window mode.
Everything should work both on 1 account and on several
The bot can be launched from any place of the game (hub, delve, club world, etc.)
To launch the bot, the F1 key is used (by default).
To stop - F10.
If you find any errors, write under the post below.
Code:
f1:: ;hotkey for activate, you can change it
WinGet, id, list, Trove
offsetX := 0
offsetY := 0
Loop, %id%
{
this_id := id%A_Index%
WinMove, ahk_id %this_id%, , offsetX, offsetY, 300, 200
offsetX := offsetX + 302
if(offsetX > 1200)
{
offsetY := offsetY + 235
offsetX := 0
}
}
while(true)
{
Loop, %id%
{
this_id := id%A_Index%
WinActivate, ahk_id %this_id%
Loop, 2
{
SendInput, {LCtrl Down}
Sleep, 100
SendInput, {b down}
Sleep, 100
SendInput, {b up}
Sleep, 100
SendInput, {LCtrl up}
Sleep, 200
}
WinGetPos, X, Y
Click %X% + 130, %Y% + 116
Sleep, 100
Click %X% + 188, %Y% + 202
Sleep, 100
Click %X% + 270, %Y% + 202
Sleep, 100
}
Sleep, 20000
}
return
f10:: reload ;hotkey for deactivate, you can change it