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
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