OK, im in rs2 right now, in the guild.
What is a very successful way of finding ore, but not clicking the black and not clicking the ground? Is it possible to use a 2 point dtm and find a point to the side of the black line?
OK, im in rs2 right now, in the guild.
What is a very successful way of finding ore, but not clicking the black and not clicking the ground? Is it possible to use a 2 point dtm and find a point to the side of the black line?
Yea, your probably right, that talking is a big way to alert people I'm botting
Last edited by RedIce; 03-17-2010 at 08:01 PM.
Use a TPA to find the color of the vein![]()
i just searched forum tuts, no tpa, but im sure i have heard of it and it is something i should know, lol. Where can i learn it?
http://villavu.com/forum/showthread.php?t=49067
Read that tutorial.
There used to be something meaningful here.
Auto coloring with FindObjTPA ftw.http://villavu.com/forum/showpost.ph...53&postcount=3
Thank you both
...I looked at both those, and i have learned that a TPA is an array of points, so whats the difference between a DTM and TPA? I searched the whole site and got no hits for tpa...
Well, DTM has many other values in the points too, TPA has just the points.
For example, heres my AttackGuard function.
SCAR Code:function AttackGuard( GuardColor: Integer ): Boolean;
var GuardTP: TPoint;
GuardTPA: TPointArray;
GuardATPA: T2DPointArray;
i, GuardHigh: Integer;
begin
if ( FindColorsSpiralTolerance( x, y, GuardTPA, GuardColor, MSX1, MSY1, MSX2, MSY2, 3 ) ) then
begin
SortTPAFrom( GuardTPA, Point( MSCX, MSCY ) );
GuardATPA := TPAtoATPAEx( GuardTPA, 20, 20 );
GuardHigh := High( GuardATPA );
for i := 0 to GuardHigh do
begin
GuardTP := MiddleTPA( GuardATPA[i] );
MMouse( GuardTP.X, GuardTP.Y, 3, 3 );
if ( IsUpTextMultiCustom( ['ttack', 'uard', 'ck Gu'] ) ) then
begin
GetMousePos( x, y );
if not ( IsFightAt( x, y ) ) then begin
Mouse( x, y, 0, 0, True );
Flag;
Wait( 200 + Random( 500 ) );
Result := True;
Break;
end else begin
Result := False;
Break;
end;
end;
end;
end;
end;
There used to be something meaningful here.
Oh, OK. I have been thinking of DTMs as TPAs. haha. that makes sense, but how would i click the brwn part of a coal rock... since with shadows and camera movement the rocks colors change
There are several things you should have the basic idea of, TPoint, TPointArray, T2DPointArray, TIntegerArray, TStringArray. Prefer using those instead of "Array of String" or "Array of Integer".
For the color i would recommend getting all the colors with some tolerance, lets say 5-10 and store them into TPA. And work with that, the tutorial i already linked here will teach you on that and you can check my function for guidance.
There used to be something meaningful here.
How do I find a point perpendicular to a DTM?( so i can click beside the color line in a rock instead of on it)
I dont understand what you want exactly.
There used to be something meaningful here.
A good idea would be to print out scripts that work for you to examine the flow. Some good old outdated scripts to print out maybe:
Wizzup/Fakawi's MultiMiner
Wizzup's Powerminer (5k downloads!)
or perhaps even our old Mining Guild Miner (4k downloads!)
Also: it is vital to become in sync with runescape. Once you have a script up and running you need to watch it for a loooong time and iron out all the little things that go wrong that lead to disaster. Been there many times
Start small, dont overdo it. Make something beautiful![]()
SRL is a Library of routines made by the SRL community written for the Program Simba.We produce Scripts for the game Runescape.
For a first script, I'm making this something to be proud of, lol, thanks for the links/idea. I'll do that now. Thanks
I would recommend like making power miner or miner that banks for some place.
There used to be something meaningful here.
Can I get the rotation of a dtm in the main-screen? I want this so I can click the area beside the vein after finding the direction the vein is pointing.
This script, still in its infancy, is confined to the mining guild. I will worry about banking after I finish it as a powerminer
Last edited by RedIce; 03-17-2010 at 09:10 PM.
A good iron miner for al kharid up north mining zone that banks would be nice
The only true authority stems from knowledge, not from position.
You can contact me via matrix protocol: @grats:grats.win or you can email me at the same domain, any user/email address.
I highly doubt you're going to get a DTM to work for object finding on the main screen. If you're talking about not clicking the "vein" of ore in the rocks every time, just have it click an offset of the TPA found (i.e. increase the randomness of the MMouse procedure):
SCAR Code:MMouse(x, y, 10, 10);
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
if I use offset and if the vein color is picked at the edge of the rock then wont it move the mouse over the ground next to the vein, instead of straight to the rock?
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
You dont think jagex will notice the mouse go near a rock then leave?
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
...I like that idea. couldnt be a every 10 times though, because then its repetitive.. like every 4 + random(10) clicks.
There are currently 1 users browsing this thread. (0 members and 1 guests)