heres a lil fast thing. no multiplayer, no walking there :P
position your player in front of the bag, put your mouse over the bag and do ctrl+alt+R.
you can leave the computer for about 10 mins and come back nad you should have attack 8 by then.
SCAR Code:
program DummyHitter;
{.include srl/srl.scar}
var
x, y, hits: integer;
begin
SetupSRL;
GetMousePos(x, y);
repeat
Mouse(x, y, 3, 3, True);
wait(5000+Random(1000))
hits:= hits+1;
ClearDebug;
writeln('hits dummy '+IntToStr(hits)+' times');
until (hits >= 180)
end.