Compare commits

..

No commits in common. "437a3b9fee255b4ce732ba02f841e9c4b2d28347" and "d831da11b0e44c9d6a7ffef20cdc42a4d632c494" have entirely different histories.

3 changed files with 3 additions and 21 deletions

9
.gitignore vendored
View File

@ -5,7 +5,7 @@ build/
!**/src/test/**/build/
### IntelliJ IDEA ###
.idea/*
.idea/
### Eclipse ###
.apt_generated
@ -32,9 +32,4 @@ bin/
### Mac OS ###
.DS_Store
out/
/.idea/vcs.xml
/.idea/misc.xml
/.idea/gradle.xml
/.idea/.gitignore
/.idea/inspectionProfiles/
out/

View File

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

View File

@ -416,17 +416,4 @@ object RunescapeRoutines {
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)
}
}