Compare commits

...

2 Commits

Author SHA1 Message Date
dtookey
437a3b9fee checkin after random workday 2023-08-11 17:31:21 -04:00
dtookey
ec701f6658 checkin after 2023-08-11 17:30:46 -04:00
3 changed files with 21 additions and 3 deletions

7
.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
@ -33,3 +33,8 @@ bin/
.DS_Store .DS_Store
out/ out/
/.idea/vcs.xml
/.idea/misc.xml
/.idea/gradle.xml
/.idea/.gitignore
/.idea/inspectionProfiles/

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)
}
} }