i fixed it now
SCAR Code:
program BulkItemSeller;
{.include SRL/SRL.scar}
procedure HoverItem; //By PvH
begin
mmouse(698,470,2,2);//this hovers the item with random
wait(1000+random(300)); // waits to look more human
end;
procedure sellitem; // By PvH
begin
mouse(698,470,2,2,false); //right clicks the item
wait(500+random(200)); // waits to look more human
ChooseOption('All'); // will sell all
writeln('We sold everything!');
end;
begin // by PvH
SetupSRL;
Activateclient;
HoverItem;
sellitem;
end.
thats it^^