I don't mind and put it in Simba tags so your pretty much not taking up the entire thread
I don't mind and put it in Simba tags so your pretty much not taking up the entire thread
Current Project: Retired
Sorry about that, let me know what you think, if there's anything you can incorporate, please don't hesitate!
The only flaw I've noticed is the 2nd trip, the character arrives and sometimes even attacks but then loops back to bank. I'll try to kink this out if I can.
That happens if auto color fails
Current Project: Retired
Leechers are really fucking abusing your script!!! To date, seen over 3-4 folks using your script in the same world, twice. I'm still working on adding a world switch for my own ass and if I get it, I'll post...gotta few kinks right now but this is going to be the banzor hammer soon, just sayin'.
Why do you call Reason?Simba Code:procedure FailSafe2 (Reason:String);
var
Z:TPoint;
begin
Z:= SPS_GetMyPos;
if (Not (Distance(Z.X, Z.Y, 3377, 2700) < 10)) then//Change the 25 to whatever you want your distance checking to be.
Begin
BoredHuman;
SPS_WalkToPos(Point(3377, 2700));
end;
end;
Standards :sSimba Code:procedure AntiBan;
begin
if(not(LoggedIn))then
exit;
FindNormalRandoms;
case Random(2) of
0:
begin
WriteLn('Skill Check');
HoverSkill('Random', False);
Wait(1000 + Random(200));
end;
end;
end;
should actually beSimba Code:function PickupLoot:Boolean;
var
x, y: Integer;
begin
FindNormalRandoms;
If FindLoot(x, y) Then
begin
While IsMoving do
Wait(25);
FindNormalRandoms;
Wait(RandomRange(300,400));
Mouse(x, y, 0, 0, False);
ChooseOption('ide');
Result := True;
end;
end;
Always set the result false in the beginning of calling the function.Simba Code:function PickupLoot:Boolean;
var
x, y: Integer;
begin
Result := False;
if FindNormalRandoms then
if not LoggedIn then
terminatescript;
If FindLoot(x, y) Then
begin
While IsMoving do
Wait(25);
if FindNormalRandoms then
if not LoggedIn then
terminatescript;
Wait(RandomRange(300,400));
Mouse(x, y, 0, 0, False);
WaitOpTion('ide',750);
Result := True;
end;
end;
Your main loop -
is flawed, it should beSimba Code:begin
Smart_Signed := TRUE;
Smart_Members := MEMBERS;
Smart_SuperDetail := FALSE;
Smart_Server := 24;
ActivateClient;
SetupSRL;
DeclarePlayers;
if not (LoggedIn) then
LoginPlayer;
Wait(4000+random(400));
Repeat
WalkToCows;
KillCows;
PickupLoot;
AntiBan;
if InvFull then
WalkToBank;
Banking;
Report;
Until(False)
end.
Otherwise it's just going to continue banking every main loop cycle.Simba Code:begin
Smart_Signed := TRUE;
Smart_Members := MEMBERS;
Smart_SuperDetail := FALSE;
Smart_Server := 24;
ActivateClient;
SetupSRL;
DeclarePlayers;
if not (LoggedIn) then
LoginPlayer;
Wait(4000+random(400));
Repeat
WalkToCows;
KillCows;
PickupLoot;
AntiBan;
if InvFull then
begin
WalkToBank;
Banking;
end;
Report;
Until(False)
end.
Thanks for the pointers Sin
Current Project: Retired
was this tested with low level account? seems to be a bit slow reaction on my lvl 60 that keeps 1 hitting the cow then kills another 5 and then gets one cowhide and lets the rest disappear and also picks up meat and bones besides that its flawless lol great work
quick question? i have a newb att/str pure who has been members b4 but if i renew membership and my nub gets banned for bottin while killing cows would they track my credit card info to my main? n ban both?? some1 get back to me plz appreciate it
For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip
I'll look into it since it's mostly this but different walking and stuff. Also reply to your testing thread![]()
Current Project: Retired
Good script... haven't used extensively as I am working on my script (hence the sig).
I'll donate to you some time this week after I buy myself 70 prayer.
Good luck on that. Around this week or next week after I get my stats up.
For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip
Not sure why, but for me it doesn't loot.
Problem is, he kills 10 cows, and only 1 of them killed loots.
- The bad news is time flies, but the good news is you're the pilot.
I'm trying this script out now. Lets hope it works
Thanks alot man!
couldnt get the script to do anything till i took it to the cows
Edit: oops not true wrong bank start in Taverly bank not burthorpe or at cows
RUNS FOREVER, Nice job keep up the good work
Gucci maybe you should make a smither thats better than supper savvy we need one and your talented.
Last edited by gashwagon; 05-07-2012 at 10:29 PM.
Only Problem it doesnt loot!
hi gucci.. when are you updating the problems with this script.. as it keeps coming up as sps error then cutting off after 30 mins or less
There are currently 1 users browsing this thread. (0 members and 1 guests)