Hello,
just started with scripting and I am trying to figure what would be the fastest way to test changes made in my script.
Currently I have to do this way,
- Edit script
- Save & Build (output goes to OSBot script folder)
- Run script on OSBot
- Editing script
- Close OSBot and reopen just to try out the new changes..
Updating the post, this worked for me.
// Open a Grand Exchange window
NPC clerk = getNpcs().closest("Grand Exchange Clerk");
if (clerk!=null) {
clerk.interact("Exchange");
}