Looking for a good tut now...you really could search and find one easy
http://www.srl-forums.com/forum/tuto...ners-f176.html
http://www.villavu.com/forum/showthread.php?t=3293
By different scripting languages I assume you mean regular and reflection. Regular SRL scripting isn't too tough to learn. I don't know about reflection but it would be a good idea to learn regular first.
You can tell if a script is updated by when it was posted. If it was posted more than a month or two ago, isn't updated.
As to the script...
SCAR Code:
{.include SRL/SRL.Scar}
Procedure MapThing;
Begin
MakeCompass('W');
end;
Procedure Clikin;
Begin
mouse(667, 252, 3, 3, true);
Wait(500)
mouse(272, 120, 3, 3, true);
end;
begin
Setupsrl
repeat
Clikin
until(false);
end.
try this...
SCAR Code:
program Cursor;
{.include SRL/SRL.Scar}
Procedure MapThing; //you don't need so many spaces
Begin
MakeCompass('W'); //you didn't actually use this in your main loop
end;
Procedure Clikin;
Begin
mouse(667, 252, 3, 3, true); // I don't know what this clicks but
Wait(500); //try not to do direct coordinate clicks
mouse(272, 120, 3, 3, true); // make sure that you follow your lines
end; //with semicolons
begin
SetupSRL; //missed another semi colon
MakeCompass('w'); //one line things don't need their own procedure
repeat
Clikin; //missed another
until(false); //never have an endless loop
end.