Results 1 to 8 of 8

Thread: Deposit Bank..

  1. #1
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default Deposit Bank..

    hey guys ..i have a small problem..
    I want to make my script deposit all the stuff from 15,28 but I dont know how to...I am using this procedure but this what it does is clicks the first item in the inventory then clicks deposits all , then it clicks the 15th item and click deposit all...for some reason its clicking the 1st item and clicking deposit all before it clicks the 15th...can someone help me..

    this is the procedure...
    SCAR Code:
    procedure Bankit;
    begin
      if (not(LoggedIn)) then Exit;
      FixBank;
      case Random(4) of
      0: begin
           Wait(250 +random(50));
           MouseItem(15,false);
           Deposit(15, 28, True);
           Wait(450 +random(100));
           WithDraw(1,1,14);
           Wait(100+ random(100));
           CloseBank;
         end;
      1: begin
           Wait(250 +random(50));
           MouseItem(16,false);
           Deposit(15, 28, True);
           Wait(450 +random(100));
           WithDraw(1,1,14);
           Wait(100+ random(100));
           CloseBank;
          end;
      2:  begin
            Wait(250 +random(50));
            MouseItem(17,false);
            Deposit(15, 28, True);
            Wait(450 +random(100));
            WithDraw(1,1,14);
            Wait(100+ random(100));
            CloseBank;
          end;
      3:  begin
            Wait(250 +random(50));
            MouseItem(18,false);
            Deposit(15, 28, True);
            Wait(450 +random(100));
            WithDraw(1,1,14);
            Wait(100+ random(100));
            CloseBank;
            Myrandom;
          end;
      end;
    end;

  2. #2
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    Deposit(15, 28, 1);
    It will deposit the items from 15 to 28 slot. Check Bank.scar


  3. #3
    Join Date
    Mar 2007
    Posts
    1,223
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Cazax View Post
    SCAR Code:
    Deposit(15, 28, 1);
    It will deposit the items from 15 to 28 slot. Check Bank.scar
    yes, i cheked bank.scar and I dont want to deposit 1 by 1...so shud the 1 in your thing be all? if yes...its the same thing that i have -_-

  4. #4
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Here:
    SCAR Code:
    Deposit(15,28,2)
    The 2 on the end does them fast.

    Hope I Helped

  5. #5
    Join Date
    May 2008
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I am having the same issue my script says Deposit(2,28,27) what happens is it first clicks on the item in slot one (my pick) and then tries to deposit 27 of them then it goes onto slot 2 and deposits 27 of them which i what i want it to do. how do i make it so that it doesn't go to the first slot. i thought that my typing it the "2" it would start at slot to but it doesn't. any help would be great think you.

  6. #6
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Deposit(2, 28, True)

    There now a TVariant in it

  7. #7
    Join Date
    May 2008
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I put True in and that puts all the ore in which helped but i am still having the issue where it first puts all my picks in slot one in and then puts all my ore in the rest of the slots in i want it to start in slot two and put all the ore in and skip over the pick. this is my code
    Procedure opbank;
    begin
    OpenBankQuiet('feb')
    Deposit(2,28,True);
    CloseBank;
    end;

    maybe you can see what i am doing wrong

  8. #8
    Join Date
    May 2008
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Got it fixed my issue was i was running SRL 15 and i just updated to 16 and it works quite well. sorry about the trouble

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. deposit(2, 28, true);
    By orange in forum OSR Help
    Replies: 9
    Last Post: 08-15-2008, 01:58 PM
  2. deposit to bank..
    By faster789 in forum OSR Help
    Replies: 2
    Last Post: 04-20-2008, 08:39 PM
  3. Deposit Box(er?)
    By whatsthat in forum OSR Help
    Replies: 22
    Last Post: 12-20-2007, 09:53 PM
  4. Deposit Box Procedure?
    By wtf i sp4nk in forum OSR Help
    Replies: 2
    Last Post: 12-17-2006, 11:43 PM

Posting Permissions

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