checkin after

This commit is contained in:
dtookey 2023-08-11 17:30:46 -04:00
parent d831da11b0
commit ec701f6658
3 changed files with 15 additions and 2 deletions

2
.gitignore vendored
View File

@ -5,7 +5,7 @@ build/
!**/src/test/**/build/ !**/src/test/**/build/
### IntelliJ IDEA ### ### IntelliJ IDEA ###
.idea/ .idea/*
### Eclipse ### ### Eclipse ###
.apt_generated .apt_generated

View File

@ -2,6 +2,6 @@ import game_logic.runescape.RunescapeRoutines
fun main() { fun main() {
// RunescapeRoutines.fullRunIncense(0, 4514, 4870, 308) // RunescapeRoutines.fullRunIncense(0, 4514, 4870, 308)
RunescapeRoutines.processInventoryAtFurnace(6888) RunescapeRoutines.createNecromancyInk(2960)
} }

View File

@ -416,4 +416,17 @@ object RunescapeRoutines {
RSOrchestrator.doTravelTask(agent, params) RSOrchestrator.doTravelTask(agent, params)
} }
fun createNecromancyInk(volume: Int, agent: RSOrchestrator = RSOrchestrator.getInstance(), bankPoint: Point = agent.getBankPoint()) {
val params = StandingTaskParams(
volume,
20*13,
bankPoint,
KeyEvent.VK_F6,
KeyEvent.VK_MINUS,
15600,
TICK_DURATION_MS,
)
RSOrchestrator.doStandingTask(agent, params)
}
} }