Welcome!

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

Sign up now!
RuneMate will permanently shut down on August 7, 2026
due to events outside our control. You can continue using RuneMate until this date after which it will no longer be available. Thank you to everyone that contributed to RuneMate's success and to the community for the opportunity to serve you all these years.

  • Learn about RuneMate Vault and how its zero knowledge local encryption already protects your sensitive information.
  • Edit or delete your RuneMate account from your Account Settings.
  • All account upgrade subscriptions have been cancelled. No action required.

Question Start developing

Joined
Jan 15, 2019
Messages
4
Hello there,

I have some basic knowledge of programming and I want to start learning to write scripts for Runemate, most tutorials seem very outdated.

Is the Overview (RuneMate Game API 1.15.2) the only thing that could help me write my first script?
 
cuppa.drink(java);
Joined
Mar 13, 2018
Messages
9,257
Here's the advice I usually give:
YouTube tutorial of an entire basic TreeBot:
To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
A basic IDE setup tutorial (eg Michaud's): Tutorial - [2022] Setting up IntelliJ
Runemate API jdocs: Overview (RuneMate Game API 1.15.2)

Beyond that, I'd just recommend playing around with it and finding example bots online. If you google "runemate github" you can actually find a lot of examples.
 
Joined
Jan 15, 2019
Messages
4
Here's the advice I usually give:
YouTube tutorial of an entire basic TreeBot:
To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
A basic IDE setup tutorial (eg Michaud's): Tutorial - [2022] Setting up IntelliJ
Runemate API jdocs: Overview (RuneMate Game API 1.15.2)

Beyond that, I'd just recommend playing around with it and finding example bots online. If you google "runemate github" you can actually find a lot of examples.

Thanks for the reply, so the treebot video is still viable?(I guess cause else you wouldn't mention it) also is the structure used in coding still the right way to approach most projects? Is the treebot coding structure the way you approach problems? Or is it the easy way and there are harder but better ways to approach ? Or is Treebot the best skeleton for a project or the only way?
 
Bot Author
Joined
Jan 29, 2016
Messages
1,294
Thanks for the reply, so the treebot video is still viable?(I guess cause else you wouldn't mention it) also is the structure used in coding still the right way to approach most projects? Is the treebot coding structure the way you approach problems? Or is it the easy way and there are harder but better ways to approach ? Or is Treebot the best skeleton for a project or the only way?

Most developers on here will use LoopingBot rather than Tree/Branch but it's all down to personal preference.

With LoopingBot you have a bit more freedom. I would take a look at a few open sources that were released a few years back and see which you'd prefer to work with.
 
cuppa.drink(java);
Joined
Mar 13, 2018
Messages
9,257
Thanks for the reply, so the treebot video is still viable?(I guess cause else you wouldn't mention it) also is the structure used in coding still the right way to approach most projects? Is the treebot coding structure the way you approach problems? Or is it the easy way and there are harder but better ways to approach ? Or is Treebot the best skeleton for a project or the only way?
I usually recommend starting with Treebot because it helps guide you towards good bot development patterns (like one action per loop). But you can use whichever. I use loopingbot, but taskbot also seems good.
 
Top