I got the walking down =]
But im stuck on how to make a procedure for climbing down stairs..
Example:
Lumbridge Flax spinner..
How can i get the script to climb down the stairs and open the door?
I got the walking down =]
But im stuck on how to make a procedure for climbing down stairs..
Example:
Lumbridge Flax spinner..
How can i get the script to climb down the stairs and open the door?
"Our youth are not failing the system; the system is failing our youth. Ironically, the very youth who are being treated the worst are the young people who are going to lead us out of this nightmare." - Rachel Jackson
What I would do is
1. Walk to MM stair using FindLadderColor.
2. Use TPAs with ColorToleranceSpeed 2 or maybe even 3 to search for the wooden part of the stair.
Scripts: Varrock Smither! | Fight Caves Runner! | Kebab Buyer! | L.A.M.E. (Outdated)
Tutorials: SRL user-defined procedures | JaGex UID files | Printing your scripts
Applications: StartUp Notepad | SCAR Assistant
Misc: FREE Delphi 7 v2 | Official SRL Graphics
Could you give me an example it would be easier for me.
If you dont mind
"Our youth are not failing the system; the system is failing our youth. Ironically, the very youth who are being treated the worst are the young people who are going to lead us out of this nightmare." - Rachel Jackson
Go To Tutorials, intermidiate section and look at a tutorial called
"The Simple TPA Power"
use the function described in there to help you find the ladder.
you might also want to use AutoColorAid v2.0 (ACA2) to help you choose the best color.
~RM
I got an amazing walking up the stair+ door opener 0.o searching my old file
just search in there for a while theres an dtm to get up etc
~Hermen
I dont think he know TPA's. You can use FindObjCusom or FindObj(Check Object.scar), if you want something "easier" use FindColorTolerance or FindColorSipralTolerance.
Actually, take a look at FindObjTPA. Easy, but the best objectfinder in object.scar.
Scripts: Varrock Smither! | Fight Caves Runner! | Kebab Buyer! | L.A.M.E. (Outdated)
Tutorials: SRL user-defined procedures | JaGex UID files | Printing your scripts
Applications: StartUp Notepad | SCAR Assistant
Misc: FREE Delphi 7 v2 | Official SRL Graphics
Yes sometimes FindObjCustom doesn't always click the ladder, for this you could use:
SCAR Code:repeat
If (not(loggedin)) then Break;
if FindObj(x,y,'Ladder',2050652,10) then
begin
case Random(3) of
0: begin
Mouse(x,y,1,1,true)
end;
1,2: begin
Mouse(x,y,1,1,false)
Wait(800+Random(800))
ChooseOption('imb')
end;
end;
FFlag(0);
InGuild:=True
Wait(4000+Random(700))
MakeCompass('E')
end;
until(InGuild)
end;
But please not you might need to add extra ends and so on.
Also InGuild needs to be a boolean;
Hope I Helped![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)