Results 1 to 4 of 4

Thread: Banking in deposit box

  1. #1
    Join Date
    Dec 2011
    Posts
    88
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Banking in deposit box

    Simba Code:
    Procedure Banking;
     Var
    Coal ,x, y:integer;
     Begin
      Coal := DTMFromString('mAAEAAHic42FgYBAAYiYGCOACYj4glgRiKSCWB2JpIBYDYiEg5gZifigtDsWyUBokzgnErFDzYGYqKUnBRZxMVZFkcWHSACOJGBkAAM+KAo4=');
      If FindDTM(Coal, X, Y, MSX1, MSY1, MSX2, MSY2) then
      WriteLn('We Found it');
      MMouse(x, y, 7, 7);
      Mouse(x, y, 0, 0, False);
      If IsUpText('All') then
      ChooseOption('All');
      End;
    Basically it right click on coal What should i do next to make it deposit all?
    anyone help ?

  2. #2
    Join Date
    Dec 2011
    Posts
    59
    Mentioned
    1 Post(s)
    Quoted
    11 Post(s)

    Default

    I know I'm no help atm but if a public script you know does this, why don't you check out the source of it to see?

  3. #3
    Join Date
    Dec 2011
    Posts
    209
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Be sure to identify your var's:
    Simba Code:
    var
      X, Y, T:integer;
    You need it to open up the deposit box so:
    Simba Code:
    OpenDepositBox;
    begin
      result := false;
      If(not(LoggedIn)) then exit;
      begin
        if FindObjTPA(x, y, 7108477, 10, -1, 30, 30, 200, ['deposit']) then
    You also need to use the function:
    Simba Code:
    DepositAll;

  4. #4
    Join Date
    May 2008
    Location
    ;)
    Posts
    576
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Deposit(fromslot,toslot,type) would be the way to go if you wanted the option to hold the pickaxe

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
  •