I want to make a rsc bot,
I decided to use Scar cause it uses the clients outer-frame (Colors, coordinates, bitmaps...) then code in itself (a.k.a RSBot = Javascript;)
But I don't know how to pull off something like this..
I'm working on a script that allows me to ratio the amount of fail attempts and successed of theiving (text in bottem left screen)..
I'd also like to know how much exp I make average-hour -just like proggies.
Anyway to pull this off?
I'll post my coding so far please help!
[b]program[/b] ProggieTheiv;
[b]var[/b]
x, y, a, b, c : Integer;
[b]procedure[/b] FindSucesses;
[b]begin[/b]
[color="#008000"] {if find sucess then
b := b + 1;}[/color]
Wait(50);
[b]end; [/b]
[b]procedure[/b] FindFails;
[b]begin[/b]
c := 0;
[b]repeat[/b]
c := c + 1;
Wait(500);
[color="#008000"]{if find fail then
a := a + 1;}[/color]
Wait(50);
[b]FindSucesses;[/b]
Wait(50);
[b]until[/b](c > 250);
[b]end;[/b]
[b]begin[/b]
c := 0;
[b]repeat[/b]
c := c + 1;
[b] FindFails;[/b]
Wait(20+random(500));
[color="#008000"] {report a := ?,
report b := ?;}
[/color][b]until[/b](c > 500);
[b]end.[/b]