Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Question How do i enable developer mode on runemate app please

Joined
Jun 10, 2026
Messages
1
cd "C:\Program Files\RuneMate"
java -jar RuneMate.jar -sdk
OR
run from intellij with this build.gradle.kts click on the reload botton on the elephant in the right after pasting this,

plugins {
// Apply the Java plugin to your Gradle project
java

// Apply the RuneMate plugin to your Gradle project
// The latest version of the Gradle plugin can be found here: Gradle - Plugin: com.runemate
id("com.runemate") version "1.5.2"
}

//Used to configure various aspects of the RuneMate plugin
runemate {
devMode.set(true)
autoLogin.set(true)

manifests {
create("partykillerBot") {
mainClass = "com.runemate.partykiller.partykillerBot"
tagline = "Knifecom.runemate.partykiller.partykillerBot"
description = "to assist in bot development."
version = "2.5.1"
internalId = "devkitcom.runemate.partykiller.partykillerBot"

//Optional: Everything else
// access = Access.PUBLIC
hidden = false
//categories(Category.DEVELOPER_TOOLS)
tags("devkit", "debug")
resources {
include("css/DevelopmentToolkitPage.css")
include("fxml/DevelopmentToolkitPage.fxml")
include("fxml/QueryBuilderPage.fxml")
}

//Tailors the variant pricing of the bot, can omit entirely for free bots
variants {
variant("Premium", 0.20)
}

//Tailors the trial for premium bots
trial {
//window = Duration.ofDays(7) //or window("ISO-8601 duration format")
//allowance = Duration.ofHours(3) //or allowance("ISO-8601 duration format")
}

//Advanced (Optional): Used to declare the use and optionality of advanced features
//This is required if using direct input, optional otherwise
features {
// required(FeatureType.DIRECT_INPUT)
}

//Advanced (Optional): Used to tailor obfuscation
obfuscation {
exclude("class.i.dont.want.to_Obfuscate")
}

//Optional: Enabling this will cause the plugin to skip this manifest during the generation phase
skip = false

//Optional: Enabling this will effectively delete the bot from the store
hidden = false
}
}


}

//Sets the project language level to 17
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}

settings.gradle.kts

rootProject.name = "partykiller"

pluginManagement {
repositories {
gradlePluginPortal()
}
}

now go in the elephant's list ans seach for runemate -> runClient this will istart dev mode. make sure to set the extra plugin folder to your idea prject folder built jar location like:


C:\Users\mannu\IdeaProjects\partykiller\build\libs

so this will load that bot, just rebuilt your bot and reload in runemate to run the new version. no need to restart runescape or runemate..
 
Top