Compare commits
2 Commits
d831da11b0
...
437a3b9fee
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
437a3b9fee | ||
|
|
ec701f6658 |
9
.gitignore
vendored
9
.gitignore
vendored
@ -5,7 +5,7 @@ build/
|
|||||||
!**/src/test/**/build/
|
!**/src/test/**/build/
|
||||||
|
|
||||||
### IntelliJ IDEA ###
|
### IntelliJ IDEA ###
|
||||||
.idea/
|
.idea/*
|
||||||
|
|
||||||
### Eclipse ###
|
### Eclipse ###
|
||||||
.apt_generated
|
.apt_generated
|
||||||
@ -32,4 +32,9 @@ bin/
|
|||||||
### Mac OS ###
|
### Mac OS ###
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
out/
|
out/
|
||||||
|
/.idea/vcs.xml
|
||||||
|
/.idea/misc.xml
|
||||||
|
/.idea/gradle.xml
|
||||||
|
/.idea/.gitignore
|
||||||
|
/.idea/inspectionProfiles/
|
||||||
|
|||||||
@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -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)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user