ttugamer
10-28-2009, 06:51 PM
Does SRL work on a private runescape server(similar to moparscape). Im writing a script for a private server and it compiles correctly but when it gets to some of the SRL functions it goes crazy. This is the script:
program Mopar;
{.include SRL\SRL.scar}
var
x,y: Integer;
begin
Setupsrl;
InvMouse(1,2);
InvMouse(1,3);
if FindSymbol(x,y,'bank') then
MMouse(x,y,10,10);
Wait(100+random(30));
Mouse(x,y,0,0,true);
Flag;
OpenBankFast('edgeville');
Withdraw(1,1,1);
Withdraw(2,1,1);
Closebank;
end.
What it is suppose to do is click on the 2nd and 3rd item in my invo then find the bank,open it and withdraw the 1st and 2nd item. Then close it. Im standing right outside the bank. Do you see anything wrong or does SRL just now work with mopar?
program Mopar;
{.include SRL\SRL.scar}
var
x,y: Integer;
begin
Setupsrl;
InvMouse(1,2);
InvMouse(1,3);
if FindSymbol(x,y,'bank') then
MMouse(x,y,10,10);
Wait(100+random(30));
Mouse(x,y,0,0,true);
Flag;
OpenBankFast('edgeville');
Withdraw(1,1,1);
Withdraw(2,1,1);
Closebank;
end.
What it is suppose to do is click on the 2nd and 3rd item in my invo then find the bank,open it and withdraw the 1st and 2nd item. Then close it. Im standing right outside the bank. Do you see anything wrong or does SRL just now work with mopar?