[QUOTE=lnal2;15352403]

Originally Posted by
lnal2
Allright yall i know this is fast but heres a updated form.
The auto ship script is a tool that automates mouse clicks and keystrokes in the Trove game. It's perfect for cleaning ships or doing other repetitive tasks. The script detects the Trove window and only works within the game, so you don't have to worry about it interfering with other applications. You can start and stop the script by pressing the F5 and F10 keys, and a message box will appear to confirm that the script is enabled or disabled. If you want to customize the script, you can easily edit the code in any text editor.
my bad yall heres the script for the new update i accidently relesed the old one again also forgot to mention that this will auto pickup loot
#Persistent
SetTitleMatchMode, 2
Gui, Add, Text, x20 y10 w200 h20, Script Status:
Gui, Add, Text, x130 y10 w200 h20, Stopped
Gui, Add, Button, x20 y40 w100 h30 gStartButton, Start
Gui, Add, Button, x140 y40 w100 h30 gStopButton, Stop
Gui, Show, w280 h80, Trove AutoClicker
return
StartButton:
GuiControl, Disable, StartButton
GuiControl, Enable, StopButton
GuiControl, , 2, Running
SetTimer, AutoClick, 1000
return
StopButton:
GuiControl, Enable, StartButton
GuiControl, Disable, StopButton
GuiControl, , 2, Stopped
SetTimer, AutoClick, Off
return
AutoClick:
WinGet, activeWin, ProcessName, A
If (activeWin = "trove.exe" or activeWin = "Trove.exe")
{
; Hold down the left mouse button for 5 seconds
Send {LButton down}
Sleep 15000
Send {LButton up}
; Rest for 2 seconds while holding down 'E' key
Send {e down}
Sleep 2000
Send {e up}
}
; Update the script status
GuiControlGet, status, , 2
If (status = "Running")
{
GuiControl, , 2, Running
}
else
{
GuiControl, , 2, Stopped
}
return
; Hotkey to start the script
F5::
SetTimer, AutoClick, 1000
GuiControl, Disable, StartButton
GuiControl, Enable, StopButton
GuiControl, , 2, Running
MsgBox, The script has been started.
return
; Hotkey to stop the script
F10::
SetTimer, AutoClick, Off
GuiControl, Enable, StartButton
GuiControl, Disable, StopButton
GuiControl, , 2, Stopped
MsgBox, The script has been stopped.
return