PDA

View Full Version : [508] Run Button next to minimap [pali]



UnitedScape
June 22nd, 2010, 09:41
Well i wanted to fix the run button next to the minimap. Its a simple 10 second job, but some noobs dont know what they are doing

Knowledge - Copy paste find
Dificulty - 0 / 10

Open up Actionbuttons.java and find,



case 750

Which looks like this,



case 750:
/*
* Running button next to minimap.
*/
break;

Change it to this,



case 750:
if (!p.isRunning) {
p.isRunning = true;
p.frames.setConfig(p, 173, 1);
} else {
p.isRunning = false;
p.frames.setConfig(p, 173, 0);
}
break;


Hope this helped :D

Faab234
June 22nd, 2010, 11:57
Thanks united scape.

red merlin
June 22nd, 2010, 16:19
I not sure what this does maybe could you explain what it does (btw it wrks on bulby fine repp++)

XxBryantD
June 22nd, 2010, 16:20
hmm if this is what makes it clickable do it