Log in

View Full Version : Does SRL work with..



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?

3Garrett3
10-28-2009, 07:02 PM
Most of the functions wont work with it if there are big changes to the layout and everything.

Making scripts is easier for private servers though, maybe try your hand at it?

Nava2
10-28-2009, 07:04 PM
InvMouse isn't right.. its MouseItem and they shoudl work, but remember, if the server is older, than the functions will need different values and different methods..

ttugamer
10-28-2009, 07:30 PM
ok. Its not too old, but its more similar to the older runescape. Should I download an older SRL and try it?

Main
10-28-2009, 09:13 PM
does the private server's screen move?