Results 1 to 19 of 19

Thread: Air Supreme

  1. #1
    Join Date
    Oct 2011
    Location
    Vegas :D
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Air Supreme

    Not Much To Be Said.. Air RuneCrafter
    Must use ObjDTM's heres is the guide => http://villavu.com/forum/showthread.php?p=847813

    YOU MUST HAVE ESS IN THE FIRST BANK SLOT

    Simba Code:
    program new;
    {$DEFINE SMART}
    {$I SRL/SRL.simba}
    {$I ObjectDTM\ObjDTMInclude.simba}
    var
    x,y : Integer;
    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      CurrentPlayer := 0;
      SetLength(Players, HowManyPlayers);
      Players[0].Name := '';
      Players[0].Pass := '';
      Players[0].Member := True;
      Players[0].Active := True;
    end;
    function GetAlterBlueColor: Integer;
    var
      arP: TPointArray;
      arC: TIntegerArray;
      tmpCTS, i, arL: Integer;
      X, Y, Z: Extended;
    begin
      tmpCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.25, 2.88);

      FindColorsSpiralTolerance(MSCX, MSCY, arP, 15972996, MSX1, MSY1, MSX2, MSY2, 5);
      if (Length(arP) = 0) then
      begin
        Writeln('Failed to find the color, no result.');
        ColorToleranceSpeed(tmpCTS);
        SetColorSpeed2Modifiers(0.2, 0.2);
        Exit;
      end;

      arC := GetColors(arP);
      ClearSameIntegers(arC);
      arL := High(arC);

      for i := 0 to arL do
      begin
        ColorToXYZ(arC[i], X, Y, Z);

        if (X >= 39.82) and (X <= 48.75) and (Y >= 43.38) and (Y <= 53.07) and (Z >= 81.84) and (Z <= 100.59) then
        begin
          Result := arC[i];
          Writeln('AutoColor = ' + IntToStr(arC[i]));
          Break;
        end;
      end;

      ColorToleranceSpeed(tmpCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);

      if (i = arL + 1) then
        Writeln('AutoColor failed in finding the color.');
    end;
    function GetAlterObj(var fx, fy: Integer): Boolean;
    var
      arP, arAP: TPointArray;
      arC, arUC: TIntegerArray;
      ararP: T2DPointArray;
      tmpCTS, i, j, arL, arL2: Integer;
      P: TPoint;
      X, Y, Z: Extended;
    begin
      tmpCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(2.09, 0.05);

      if not(FindColorsTolerance(arP, 5722966, MSX1, MSY1, MSX2, MSY2, 2)) then
      begin
        Writeln('Failed to find the color, no object found.');
        ColorToleranceSpeed(tmpCTS);
        SetColorSpeed2Modifiers(0.2, 0.2);
        Exit;
      end;

      arC := GetColors(arP);
      arUC := arC;
      ClearSameIntegers(arUC);
      arL := High(arUC);
      arL2 := High(arC);

      for i := 0 to arL do
      begin
        ColorToXYZ(arC[i], X, Y, Z);

        if (X >= 7.93) and (X <= 9.31) and (Y >= 8.15) and (Y <= 9.54) and (Z >= 9.52) and (Z <= 11.04) then
        begin
          for j := 0 to arL2 do
          begin
            if (arUC[i] = arC[j]) then
            begin
              SetLength(arAP, Length(arAP) + 1);
              arAP[High(arAP)] := arP[j];
            end;
          end;
        end;
      end;

      SortTPAFrom(arAP, Point(MSCX, MSCY));
      ararP := SplitTPAEx(arAP, 10, 10);
      arL := High(ararP);

      for i := 0 to arL do
      begin
        if (Length(ararP[i]) < 10) then Continue;
        P := MiddleTPA(ararP[i]);
        MMouse(P.x, P.y, 5, 5);
        Wait(100 + Random(100));
        if ( Pos('Altar' , GetUpText) > 0) then
        begin;
          Result := True;
          Break;
        end;
      end;

      ColorToleranceSpeed(tmpCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);

      if (i = arL + 1) then
      begin
        Writeln('FindObject could not find object.');
        Exit;
      end;

      GetMousePos(fx, fy);
    end;
    function GetPortalObj(var fx, fy: Integer): Boolean;
    var
      arP, arAP: TPointArray;
      arC, arUC: TIntegerArray;
      ararP: T2DPointArray;
      tmpCTS, i, j, arL, arL2: Integer;
      P: TPoint;
      X, Y, Z: Extended;
    begin
      tmpCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.03, 0.85);

      if not(FindColorsTolerance(arP, 4359044, MSX1, MSY1, MSX2, MSY2, 12)) then
      begin
        Writeln('Failed to find the color, no object found.');
        ColorToleranceSpeed(tmpCTS);
        SetColorSpeed2Modifiers(0.2, 0.2);
        Exit;
      end;

      arC := GetColors(arP);
      arUC := arC;
      ClearSameIntegers(arUC);
      arL := High(arUC);
      arL2 := High(arC);

      for i := 0 to arL do
      begin
        ColorToXYZ(arC[i], X, Y, Z);

        if (X >= 10.08) and (X <= 28.55) and (Y >= 11.77) and (Y <= 32.63) and (Z >= 3.73) and (Z <= 16.36) then
        begin
          for j := 0 to arL2 do
          begin
            if (arUC[i] = arC[j]) then
            begin
              SetLength(arAP, Length(arAP) + 1);
              arAP[High(arAP)] := arP[j];
            end;
          end;
        end;
      end;

      SortTPAFrom(arAP, Point(MSCX, MSCY));
      ararP := SplitTPAEx(arAP, 10, 10);
      arL := High(ararP);

      for i := 0 to arL do
      begin
        if (Length(ararP[i]) < 10) then Continue;
        P := MiddleTPA(ararP[i]);
        MMouse(P.x, P.y, 5, 5);
        Wait(100 + Random(300));
        if ( Pos('Enter Portal' , GetUpText) > 0) then
        begin;
          Result := True;
          Break;
        end;
      end;

      ColorToleranceSpeed(tmpCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);

      if (i = arL + 1) then
      begin
        Writeln('FindObject could not find object.');
        Exit;
      end;

      GetMousePos(fx, fy);
    end;
    function FindAlter(var fx, fy: Integer): Boolean;
    var
      arP, arAP: TPointArray;
      arC, arUC: TIntegerArray;
      ararP: T2DPointArray;
      tmpCTS, i, j, arL, arL2: Integer;
      P: TPoint;
      R, G, B: Integer;
      X, Y, Z: Extended;
    begin
      tmpCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.33, 5.04);

      if not(FindColorsTolerance(arP, 15515277, MSX1, MSY1, MSX2, MSY2, 5)) then
      begin
        Writeln('Failed to find the color, no object found.');
        ColorToleranceSpeed(tmpCTS);
        SetColorSpeed2Modifiers(0.2, 0.2);
        Exit;
      end;

      arC := GetColors(arP);
      arUC := arC;
      ClearSameIntegers(arUC);
      arL := High(arUC);
      arL2 := High(arC);

      for i := 0 to arL do
      begin
        ColorToRGB(arC[i], R, G, B);

        if (R >= 110) and (R <= 162) and (G >= 179) and (G <= 211) and (B >= 214) and (B <= 254) then
        begin
          ColorToXYZ(arC[i], X, Y, Z);

          if (X >= 39.82) and (X <= 52.12) and (Y >= 43.38) and (Y <= 59.04) and (Z >= 70.54) and (Z <= 101.57) then
          begin
            for j := 0 to arL2 do
            begin
              if (arUC[i] = arC[j]) then
              begin
                SetLength(arAP, Length(arAP) + 1);
                arAP[High(arAP)] := arP[j];
              end;
            end;
          end;
        end;
      end;

      SortTPAFrom(arAP, Point(MSCX, MSCY));
      ararP := SplitTPAEx(arAP, 10, 10);
      arL := High(ararP);

      for i := 0 to arL do
      begin
        if (Length(ararP[i]) < 10) then Continue;
        P := MiddleTPA(ararP[i]);
        MMouse(P.x, P.y, 5, 5);
        Wait(100 + Random(100));
           if (Pos('Enter' , GetUpText) > 0) then
        begin;
          Result := True;
          Break;
        end;
      end;

      ColorToleranceSpeed(tmpCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);

      if (i = arL + 1) then
      begin
        Writeln('FindObject could not find object.');
        Exit;
      end;

      GetMousePos(fx, fy);
    end;
    function IsInBank : Boolean;
    begin
      //result := ObjDTM_InArea('80:80:9:1:7:49:96:10:7:69:91:10:7:69:78:10:7:69:70:10:7:69:62:10:7:69:53:10:7:69:45:10:7:116:49:10:7:116:74:4:63:98:62:33:132:33:132:98',True);
      result := ObjDTM_InArea('80:80:5:1:7:22:50:10:7:61:92:10:7:62:45:10:7:109:41:10:7:109:76:4:54:99:53:36:124:32:125:97',True);
    end;
    function IsAtAlter: Boolean;
    begin
      result := ObjDTM_InArea('80:80:5:1:7:107:71:1:7:103:116:1:7:86:133:1:7:61:107:1:7:57:53:4:108:101:67:102:66:58:107:59',True);
    end;
    function IsAtInnerAlter : Boolean;
    begin
      if( ObjDTM_InArea('80:80:10:1:7:29:71:1:7:37:87:1:7:37:104:1:7:54:120:1:7:70:112:1:7:86:108:1:7:103:108:1:7:25:55:1:7:120:108:1:7:136:103:4:118:88:42:86:55:13:121:9',True)
      or ObjDTM_InArea('80:80:5:1:7:88:123:1:7:31:69:1:7:45:26:1:7:41:117:1:7:119:124:4:47:106:42:20:125:24:143:112',True) or ObjDTM_InArea('80:80:3:1:7:90:123:1:7:42:103:1:7:33:39:4:55:103:51:22:133:29:143:107',True) ) then
      begin
        result := True;
        Exit;
      end;

      //result := ObjDTM_InArea('80:80:10:1:7:29:71:1:7:37:87:1:7:37:104:1:7:54:120:1:7:70:112:1:7:86:108:1:7:103:108:1:7:25:55:1:7:120:108:1:7:136:103:4:118:88:42:86:55:13:121:9',True);
      //result := ObjDTM_InArea('80:80:5:1:7:88:123:1:7:31:69:1:7:45:26:1:7:41:117:1:7:119:124:4:47:106:42:20:125:24:143:112',True);
    end;
    function WalkToCenter : Boolean;
    begin
      result := ObjDTM_Walk('89:71:8:1:7:29:56:1:7:29:72:1:7:33:88:1:7:42:104:1:7:42:121:1:7:75:128:1:7:91:124:1:7:107:123:7:64:84:61:39:106:35:114:47:118:80:107:91:76:91',3,80,200,True);
    end;
    function WalkToPortal : Boolean;
    begin
      result := ObjDTM_Walk('80:80:4:1:7:86:121:1:7:24:66:1:7:36:100:1:7:53:134:4:57:52:113:80:69:114:53:73',0,80,15,True);
    end;
    function IsAtClickingPortal : Boolean;
    begin
      result := ObjDTM_InArea('80:80:4:1:7:86:121:1:7:24:66:1:7:36:100:1:7:53:134:4:57:52:113:80:69:114:53:73',True);
      //result := ObjDTM_InArea('68:96:15:1:7:28:94:1:7:36:109:1:7:35:125:1:7:82:129:1:7:97:129:1:7:112:129:1:7:24:79:1:7:24:63:1:7:28:48:1:7:36:36:1:7:128:125:1:7:139:102:1:7:139:87:1:7:128:79:1:7:128:64:4:60:98:60:86:84:86:81:99',True);
    end;
    function WalkToAlter : Boolean;
    var
    Path : TStringArray;
    I : Integer;
    begin             //'89:102:6:10:7:69:43:10:7:69:59:10:7:70:87:10:7:113:38:10:7:113:62:10:7:113:70'
      Path := ['78:83:14:1:7:45:95:10:7:66:91:10:7:65:71:10:7:65:79:10:7:65:63:10:7:65:54:10:7:65:46:10:7:109:41:10:7:109:58:10:7:109:49:10:7:110:66:10:7:110:74:10:7:110:82:0:7:79:39'
      ,'32:121:3:1:7:49:95:10:7:69:91:1:7:33:50',
      '48:121:5:1:7:98:55:1:7:66:94:1:7:78:115:1:7:57:130:1:7:41:111',
      '13:72:8:1:7:90:86:1:7:74:91:1:7:74:107:1:7:90:111:1:7:106:108:1:7:102:120:1:7:62:79:1:7:74:67',
      '37:107:7:1:7:82:71:1:7:62:75:1:7:46:71:1:7:42:91:1:7:58:107:1:7:46:115:1:7:58:127',
      '59:108:8:1:7:82:91:1:7:98:90:1:7:110:102:1:7:110:118:1:7:35:75:1:7:40:126:1:7:79:133:1:7:94:67'];
      for I := 0 to High(Path) do
       begin
        Writeln('Current Path =>' + Path[I]);
        ObjDTM_Walk(Path[I],0,80,200,True);
         RunEnergy(60);
        if(I = High(Path)) then
        begin                        //Expand radius of is in area alter, and fixing better walkto bank
          result := IsAtAlter;
        end;
       end;
    end;
    function WalkToBank : Boolean;
    var
    Path : TStringArray;
    I : Integer;
    begin
      Path := ['123:61:7:1:7:98:71:1:7:95:115:1:7:54:107:1:7:79:132:1:7:115:70:1:7:49:54:1:7:37:104',
      '125:60:9:1:7:86:83:1:7:74:91:1:7:59:92:1:7:70:67:1:7:87:103:1:7:95:106:1:7:73:46:1:7:90:50:1:7:110:46',
      '128:71:5:1:7:70:71:1:7:49:75:1:7:33:72:1:7:46:108:1:7:49:55',
      '130:61:6:1:7:110:73:1:7:86:91:1:7:74:103:1:7:87:115:1:7:103:110:1:7:123:94',
      '122:67:3:1:7:62:98:1:7:75:119:1:7:95:59',
      '87:62:6:1:7:54:75:1:7:22:115:10:7:74:70:10:7:74:58:10:7:74:50:10:7:74:42',
      '54:80:7:10:7:41:44:10:7:42:59:10:7:85:39:10:7:85:63:10:7:42:87:10:7:42:75:10:7:85:70']
         for I := 0 to High(Path) do
       begin
        Writeln('Current Path =>' + Path[I]);
         RunEnergy(60);
        ObjDTM_Walk(Path[I],2,80,200,True);
        if(I = High(Path)) then
        begin
          repeat
          until not IsMoving;
          //ObjDTM_Walk('78:83:14:1:7:45:95:10:7:66:91:10:7:65:71:10:7:65:79:10:7:65:63:10:7:65:54:10:7:65:46:10:7:109:41:10:7:109:58:10:7:109:49:10:7:110:66:10:7:110:74:10:7:110:82:0:7:79:39',0,80,100,True);                        //Expand radius of is in area alter, and fixing better walkto bank
          result := IsInBank;
        end;
       end;
    end;
    procedure CrashSMART;
    begin
      Writeln('You are using CRASHSMART, so we are going to reload your client after the RS update!');
      SmartgetFieldObject(1488,'crash'); // will crash SMART (and Simba).
      // IF THIS DOES NOT CRASH YOUR SIMBA, YOU ARE NOT USING THE PROPER PLUGIN
      // AN ACCESS VIOLATION HERE IS NOT THE CRASH; MAKE SURE YOU MOVED THE EDITED PLUGIN
      Wait(5000);
      WriteLn('CRASHSMART Failed: Make sure you are using the proper plugin!');
      WriteLn('Read more about this feature at villavu.com/forum/showthread.php?t=67864');
      TerminateScript;
    end;
    begin
     Smart_Server := 5;
      Smart_Members := False;
      Smart_Signed := False;
      Smart_SuperDetail := False;
      ClearDebug;
      SetupSRL;
      SRL_Procs[srl_OnRSUpdate] := @CrashSMART;
      ObjDTM_Setup;
      ObjDTM_Debug := True;
      DeclarePlayers;
      if not LoggedIn then
      begin
         LogInPlayer;
      end;
      repeat
      if(IsInBank)then
      begin
        if( (InvCount = 0) or (InvCount < 28) ) then
        begin
          if not (BankScreen) then
          begin
            OpenBankFast('veb');
          end
          else
          begin
            DepositAll;
            Withdraw(0,0,0);
            Sleep(800);
          end;
        end
        else
        begin
          if( InvCount = 28 ) then
          begin
            WalkToAlter;
            Sleep(1000);
          end;
        end
      end;
      Writeln('GET');
      writeln(IsAtInnerAlter);
      if(IsAtAlter) then
      begin
        if(InvCount = 28) then
        begin
          writeln('GOGO');
          if(FindAlter(X,Y)) then
          begin
            Mouse(X,Y,0,0,mouse_Left);
            Sleep(1000);
          end;
        end
        else
        begin
          WalkToBank;
        end
      end;
      if(IsAtInnerAlter) then
      begin
        if(InvCount = 28) then
        begin
          Writeln('Herp');
         if(GetAlterObj(X,Y)) then
         begin
          Writeln('HERRRRP');

           Mouse(X,Y,0,0,mouse_Left);
         end
         else
         begin
         WalkToCenter;
         end;
        end;
        if(InvCount < 28) then
        begin

          if(IsAtClickingPortal) then  // WalkToPortal
          begin
            if(GetPortalObj(X,Y)) then
            begin
              Mouse(X,Y,0,0,mouse_Left);
              Sleep(1000);
            end
            else
            WalkToPortal;

          end
          else
          begin
            if not (WalkToPortal) then
            begin
              writeln('Attempting Manual Click');
              if(GetPortalObj(X,Y)) then
              begin
                Mouse(X,Y,0,0,mouse_Left);
              end;
            end;
          end;
        end;
      end;
      until False;
    end.

  2. #2
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    first! will try out.

  3. #3
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    very nice script indeed, ran for 6 hours, please add progress reports and pins though.

  4. #4
    Join Date
    Oct 2011
    Location
    Vegas :D
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by cookies1 View Post
    very nice script indeed, ran for 6 hours, please add progress reports and pins though.
    Cool Thanks. Will Do it in the next version.

  5. #5
    Join Date
    Jan 2012
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It takes some time to click the Mysterious Ruins and to click the Altar, but the walking is very good
    btw you forgot to add pin support

  6. #6
    Join Date
    Nov 2011
    Location
    Florida
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Amazing script, I have been waiting for a working air runecrafter to come out. I might add a progress report so I can post it.

  7. #7
    Join Date
    Oct 2011
    Location
    Vegas :D
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by ppgab View Post
    It takes some time to click the Mysterious Ruins and to click the Altar, but the walking is very good
    btw you forgot to add pin support
    Well Be added in next version. Thanks for the idea.
    Quote Originally Posted by enjoi. View Post
    Amazing script, I have been waiting for a working air runecrafter to come out. I might add a progress report so I can post it.
    Progress report next version

  8. #8
    Join Date
    Feb 2012
    Location
    Somewhere, over the rainbow...
    Posts
    2,272
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

    Default

    I can't wait for the next version! Currently its a bit slow but its very reliable - doesn't need babysitting like the MSI Air RC script needs.

    Please think about integrating a 'rest' or 'listen to music' feature when the player has run out of energy, this would increase the amount of loads per hour by a good 10 loads, as it currently takes about 3-4 minutes walking to regenerate energy.

    Thanks, good script so far

  9. #9
    Join Date
    Nov 2011
    Posts
    45
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Mine doesnt work with Smart. It fails to put the Compass facing North to be able to click the altar.

    Edit: Got it working after putting the camera angle Completely UP.

    Wonderful script. Would like to suggest 2 things ( That I see so far )

    1. Make the script put the Camera in the UP position when starting the script after logging in.
    ( I believe its
    MakeCompass('N');
    SetAngle(SRL_ANGLE_HIGH); )

    if I am not mistaken.

    2. Everytime it goes to Varrock West Bank, iit runs to the corner of the bank before clicking the banker.
    Last edited by C3NTRIX5; 02-21-2012 at 09:53 PM.

  10. #10
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    gonna test this out now will reply

    love it awesome script man thank you, might be some of the slowest rc exp in the game but at least it's rc exp
    Last edited by kyocera; 02-21-2012 at 11:25 PM.

  11. #11
    Join Date
    Dec 2011
    Location
    Ontario, Canada
    Posts
    1,735
    Mentioned
    5 Post(s)
    Quoted
    89 Post(s)

    Default

    Really great script. Working well for me. Ive had 2 6hour runs for sure and a few smaller ones Ive stopped cuz I was logging off. Just a suggestion:
    Add Proggy reports as already said, and as stated above, the angle needs to be set to north and high otherwise it cant see the altar to click it. I have changed this also but I had to do it manually to start. Other then that works really well.
    FEEL FREE TO PM ME ABOUT ANYTHING! Will help over Teamviewer...just ask!! "WITH A NEW QUESTION COMES A NEW CHALLENGE"
    Silentcore's AIO Service team !!! Pm me if you want questing done or service done or post on thread ofc

  12. #12
    Join Date
    Feb 2012
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Wow this script is perfect!

  13. #13
    Join Date
    Nov 2011
    Posts
    83
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Im loving the script, but i havnt noticed anything which turns run back on... has gotten stuck in only one place, right b4 entering the altar my guy got stuck once so far.

  14. #14
    Join Date
    Feb 2012
    Location
    Texas
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    The script is great! Keep up the good work

    Edit:
    The only complaints I have are that it doesn't rotate the screen, and sits at end locations such as the alter & bank for quite sometime before it does anything...
    Last edited by EpicEuphoria; 03-16-2012 at 04:23 PM.

  15. #15
    Join Date
    Aug 2006
    Posts
    338
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    cool script, using it for 5 mins now, works great, the only thing is missed is the bank pin

  16. #16
    Join Date
    Feb 2012
    Location
    SRL Jail
    Posts
    1,319
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I like it, but maybe in the next update you should make the file an attachment?

  17. #17
    Join Date
    Mar 2012
    Location
    Ca
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    wow reliable unlike some others ive tried! thanks for this. if you could add a rest feature be much appreciated

  18. #18
    Join Date
    Mar 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Works great so far, good work.

  19. #19
    Join Date
    Mar 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    not huge errors but possible minor fixes to make script better:
    -script speed(theres many times you could shorten waiting time between clicks)
    -walking to bank in the corner before doing anything(you can skip walking to the corner "Not needed"
    -clicking faster when you get to alter or going back to bank there are a decent timed wait before running
    -rest feature makes rcing alot faster then walking the whole time
    -moving screen feature to make ban rate alot less(scripts without antiban are 40% more likely to be caught and banned to users)

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •