-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Description
Describe the solution you'd like
Hello, everyone!
I'm having trouble automating the "get everything" routine for the Rodex function.
Reading some forum issues and the wiki, I noticed that there isn't a "getAll" function for Rodex yet, which would be an extension of the "getItems" command.
Currently, I'm using a simple eventMacro that collects the items by going through each email and deleting them. But due to the number of emails, the process for a complete collection is taking more than a day on average.
This is my simple code that I'm currently using:
macro getallRodex{
while ($.weightpercent < 69) {
do rodex open
pause 10 #delay necessary to open all itens Rodex
do rodex read 0
pause 5
do rodex getitems
pause 1
do rodex delete 0
pause 1
do rodex refresh
pause 1
}
}
I would appreciate suggestions or ideas, please, on some functionality similar to "Get All" for Openkore.
Additional context
No response