ApocalypsePlease wrote:I was the one who messaged Teck on skype due to your request, messaged him again now.
painhertz wrote:It's alt-F3
// Alt+F3: stop script execution
} else if (code == KeyEvent.VK_F3 && ev.isAltDown()) {
Engine.getInstance().stop()
return true
// Multiply, stop script execution
} else if (code == KeyEvent.VK_MULTIPLY) {
Engine.getInstance().stop()
return true
} else if (code == KeyEvent.VK_PAGE_DOWN) {
Engine.getInstance().stop()
return trueborka wrote:my guess is you're missing the
- Code: Select all
// Alt+F3: stop script execution
} else if (code == KeyEvent.VK_F3 && ev.isAltDown()) {
Engine.getInstance().stop()
return true
code in your haven.groovy in Pande client when it's default - so it's Multiply or page down:
- Code: Select all
// Multiply, stop script execution
} else if (code == KeyEvent.VK_MULTIPLY) {
Engine.getInstance().stop()
return true
} else if (code == KeyEvent.VK_PAGE_DOWN) {
Engine.getInstance().stop()
return true
Users browsing this forum: Claude [Bot], Google [Bot] and 0 guests