I am having trouble walking from the mining guild to the bank (from the ladders at the guild) no problem walking form the bank to the guild any suggestions anyone?
I am having trouble walking from the mining guild to the bank (from the ladders at the guild) no problem walking form the bank to the guild any suggestions anyone?
Use radial walk =] its my favorite.i made a script that walks me from lumby to varock east with it lol
~ Metagen
RadialWalk would be best.
If the bank symbol is visible you can walk to bank via that.
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
I have tried that but when i try to walk on the grass it just keeps clicking everywhere in the grass is there a way around this?
Tried the findsymbol?
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
is there a function for that or do i have to make one with a bitmap?
SCAR Code:if FindSymbol(x, y, 'bank')then
begin
Mouse(x,y,4,4,true);
wait(150+random(250));
Flag;
end;
Sample there
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
O that helps me, because I had problems getting from karjama to the fairy ring in the fight pits
Is there something similar to this FindObjCustom(x2, y2, ['Mine', 'Rock'], [2636603], i) but instead it doesnt have the part with 'Mine', 'Rock' it would be used for finding autocoloring like the floor of the bank on a minimap and the color of rocks on the minimap?
FindObjCustom is actually finding the Object, like Rock etc.
You can find the road color if that helps, and do radialwalking from there..
Whats the problem with using the bank symbol?
Rogeruk's Al-Kharid Tanner V1.1 [Released]
Rogeruk's Barbarian Crafter [Coming Soon]
Rogeruk's Guild Fisher [Coming Soon]
!! - Taking Requests - !!
I finaly got the bank walking part working but now my problem is the color of the rocks change and I want to auto color them is so is there something like findobjectcustom but instead of finding an object on the main screen it would just look for color. I want to do this so I can set a default color then with increasing the tolerance slowly I could find what the color has changed to and it would auto color example below:
something like that but instead of findobject it would find it just by the color and not by the word in the top left cornor then return the cords for where the oject was found so I could get color.Code:Procedure FindColorCoal; begin If Not LoggedIn then exit; for i := 0 to 10 do //Autocolor Help From Starblaster100// begin if(FindObjCustom(x2, y2, ['Mine', 'Rock'], [2636603], i))then begin CoalColor := GetColor(x2, y2); Writeln('Coal color is '+IntToStr(CoalColor)); Exit; end; end; end;
FindColorSpiralTolerance();
and if your having issues with radialwalk use radialroadwalk and FindFallyRoadColor
The truth finally came out...
Thank you that was what i was looking for and ya I ended up using radialroad walk thank you guys for everything.
hahaha this is way over my head :| -.-
Better go review my basic coding before coming back to even try and understand this lol
how about(this is pseudo code as i dont know the names of the actual procedures):
aligncompass('N')
mouse(random place in the general direction of the bank)
repeat
wait(500);
until(findbitmap/finddtm(banksymbol));
Blah. Just finished my miner. Findcolorspiral walking ftw![]()
SymbolAccuracy := 0.4; - Works great!
But that only works if the symbol isnt covered so you better hope your not somewhere crowed like verroc east west what I did was just have it radial walk close to the bank then have another procedure find the color of the stalls the bankers are at then click and wait till it makes it there.
Decreasing the symbol accuracy makes it click all of the time. Trust me.
There are currently 1 users browsing this thread. (0 members and 1 guests)