EDIT: ull need SRL for this if u dont have it.. I made it compile not quite sure if it will work.. =/ BEWARE: if u use it has no antirandom/antiban so watch it lol.. p.s did u make this? or was it just an old script?
SCAR Code:
program EarthRunePickup;
{.include SRL/SRL.scar}
const
ERuneColor = 936815; // Put earth rune color here.
Procedure FindRune;
begin
if(FindColor(x,y,ERuneColor,245,151,284,186))then
begin
mouse(x,y,1,1,False);
if(IsUpText('Take Earth Rune'))then
begin
Mouse(x,y,1,1,False);
ChooseOption(x, y, 'ake');
end;
end;
end;
begin
Repeat
FindRune;
Until(false);
end.
on ur version u had written
SCAR Code:
(FindColor(x,y,936815,245,151,284,186)
if(FindColor(x,y,936815,245,151,284,186))then
it twice XD also
SCAR Code:
if(IsTextUp('Take Earth rune')=true)then
is incorrect. u dont need the "=true"
it should be
SCAR Code:
if(IsUpText('Take Earth Rune'))then
well hope i could help.. =]