thankyou, im going to give it a try and will post a proggy layter =]
thankyou, im going to give it a try and will post a proggy layter =]
Yes. I agree. It has gotten to the point where it's actually hard for me to find an empty world in which to run my script on. Take World 1 for instance, I once saw 5 people at the clay mine there, 4 of which were obviously using my script. Regarding your P.S. - That's really cool mateI'm testing an Iron miner that does the same thing as kbClayBanker, probably won't release it.
Actually yeah, dry clay prices are still going up. That's a main reason I released this script.
Wtf is a sad panda lol?
Once again I do agree. Consider the PestController that was moved to Members+ because of over-use. I really don't want to have to do that to this script.
It's a problem on your side, the script is set to repeat until your player is logged out. This script can run ~15 hours with CRASHSMART enabled.
Indeed it is, SRL needs testers. Most of the time, bugs don't become apparent until after the script has been released/used often.
Awesome, keep botting.
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
Mate to be fair not a lot of people bot on RS, color bots are there but the.amount of botters have certainly declined, so prices may still keep stable.
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
hey KB how much clay/h u can get with this new 1.2 script?thanks
Woop woop, can't wait to see what you changed!
I like your optimisim, but ClusterFuck broke powerbot's RSBot once, and Optimus will probably break it again, along with Simba (at least for a short time).
Slightly more than V1.1
Heh, I'll be uploading it within the hour.
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
Updated!!! V1.2 is out!
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
thank you for v 1.2 will test and post proggie, why did you remove the clay softening?
Awesome, please do.
I removed softening because it takes away from what I wanted the script to be. I envisioned this script to be a badass clay miner. I don't want it to get bogged down with a bunch of other un-necessary features that don't work very well.
I'd rather have a script that does 1 thing flawlessly than a script that does a bunch of things buggishly.
If you want to soften your clay, just use MSI's All-In-One Multi-Script Integrator.
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
so far I have noticed that the banking is more glitchy then in v1.1, it will eventually get it banked but it takes much longer to bank the clay.
edit1: the script messed up the walking and walked down to draynor mannor while returning tho the rocks.
Last edited by bobemen1; 02-08-2012 at 02:31 AM. Reason: updating information
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
Don't use SRL banking procedures and you're fine. Make your own![]()
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
CTS2 with FindColorsTolerance and ATPA split.Tutorials have it
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
If you can understand this, it's yoursIt's from my CTS2 object finder template. I just gave it a test and it should open the bank in EdgeVille without problems. Tweak colors in ACA if it doesn't find it. You should also have the following directives declared at the beginning.
Simba Code:{$DEFINE DEBUG_DRAW} //uncomment if you need debug info
{$IFDEF DEBUG_DRAW}
{$I SRL/SRL/misc/debug.simba}
{$I SRL/SRL/misc/paintsmart.simba}
{$ENDIF}
Simba Code:function CTS2Template: boolean;
var i, tcts: integer;
p: TPoint;
tpa, tpa2: TPointArray;
atpa: T2DPointArray;
begin
Result:=False;
tcts:=GetToleranceSpeed;
SetColorToleranceSpeed(2);
SetColorSpeed2Modifiers(0.2, 0.2);
FindColorsTolerance(tpa, 3819595, MSX1, MSY1, MSX2, MSY2, 5);
SetColorToleranceSpeed(2);
if length(tpa) < 1 then Exit;
atpa:= TPAtoATPAEx(tpa, 20, 10);
if length(atpa) < 1 then Exit;
setLength(tpa2, length(atpa));
for i:=0 to high(tpa2) do
tpa2[i]:= MiddleTPA(atpa[i]);
SortTPAFrom(tpa2, Point(MSCX, MSCY)); //this does the trick
{$IFDEF DEBUG_DRAW}
// SortATPAFrom(atpa, Point(MSCX, MSCY));
debugATPABounds(atpa);
{$ENDIF}
for i:=0 to high(tpa2) do
begin
Mouse(tpa2[i].x, tpa2[i].y, 2, 2, mouse_move);
if WaitUpText('nter', 1000) then
begin
ClickMouse2(mouse_left);
Result:=WaitFunc(@BankScreen, 200, 2000); //maybe pin screen too?
if Result then
begin
writeln('We''re in bank screen!');
break;
end;
end;
end;
end;
Also noticed that it sometimes missclicks, which didn't go to well when it accidentally clicked on a barbarian and it killed me
Also might want to change the front page from saying that banking is bugging, to banking does not work at all. Spins the camera for 10 or so seconds, then walks off in a random direction.
Last edited by Themanhunt1; 02-08-2012 at 05:44 PM.
testing out v1.2 now, cant wait to see proggy![]()
Wow, thanks man! I'll figure that function out and put it in straightaway!
This is probably because your computer is laggy. Set Simba's priority to High in Task Manager, that will fix it.
No. I doubt RSBot/EpicBot will ever come back.
Learn Java if you want to make an RSPS.
Awesome![]()
GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!
<BenLand100> we're just in the transitional phase where society reclassifies guns as Bad™ before everyone gets laser pistols
There are currently 1 users browsing this thread. (0 members and 1 guests)