Page 21 of 28 FirstFirst ... 111920212223 ... LastLast
Results 501 to 525 of 680

Thread: UltraSteel Heater +CoalBag avg 85k mage xp/ph

  1. #501
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    Mine is update to date lol. I dont have any other problems with the other SRL5 scripts.
    .5a works fine for me but the new one just sits over coal bag. Re-downloaded the script and still same problem.

    Works with the fix without coal bag but without coal bag its pointless lol

  2. #502
    Join Date
    Oct 2006
    Posts
    174
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    super heating mithril bars not working for me :S

    anyone else facing this problem??

  3. #503
    Join Date
    May 2007
    Location
    England/Liverpool
    Posts
    1,004
    Mentioned
    9 Post(s)
    Quoted
    106 Post(s)

    Default

    Quote Originally Posted by Itankbots View Post
    Mine is update to date lol. I dont have any other problems with the other SRL5 scripts.
    .5a works fine for me but the new one just sits over coal bag. Re-downloaded the script and still same problem.

    Works with the fix without coal bag but without coal bag its pointless lol
    send me the version that gets downloaded when you run the new script

  4. #504
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    K. Went dungeonering couple hours. came back and it said new version. so downloaded and opened new version. but when i run that it still says this...

    Checking for script updates...
    0.6a
    0.6
    Newer script version online!
    Autoupdating to newer version.
    New script downloaded to C:\Simba\Scripts\UltraSteelCoalBagHeater V0.6aBy CRU1Z1N.simba!! Please use this one!!
    Successfully executed.

    But im already running UltraSteelCoalBagHeater V0.6aBy CRU1Z1N that version. :s closed simba, reopened and tried again. still get it =/

    Code:
    program SuperHeater;
    {$I SRL/SRL/misc/smart.simba}
    {$I SRL/SRL.simba}
    {$DEFINE SRL5}
    
    const
      BnkTab = 2;
      Mspeed = 18;
      ScriptVersion = '0.6';
      UseAutoChecker = true;
    
    var
      frmDesign: TForm;
      Button1: TButton;
      Label1: TLabel;
      UseCoalBag,WhatBank,BarType: TComboBox;
      Pinn,Pass,UsrName,Profit,HowManyBars: TEdit;
      ItemNum2,iProfit,Tri,iHowManyBars,sx,sy,BarsMade, SupaHeatDTM, Bars: Integer;
      Debug:string;
    
    procedure AutoUpdateMe;
    var Neifile:integer;
        OnlineVersion, NewScript, NeiFeilNennen:string;
    begin
      if UseAutoChecker then
      begin
        writeln('Checking for script updates...');
        OnlineVersion := GetPage('http://cru1z1nsscripts.googlecode.com/git/LatestVersion.txt');
        writeln(OnlineVersion);
        writeln(ScriptVersion)
        if (trim(OnlineVersion) > ScriptVersion) then
        begin
          writeLn('Newer script version online!');
          writeLn('Autoupdating to newer version.');
          NewScript := GetPage('http://cru1z1nsscripts.googlecode.com/git/UltraSteelCoalBagHeater.simba');
    
          NeiFeilNennen := ScriptPath+ 'UltraSteelCoalBagHeater V'+OnlineVersion+'By CRU1Z1N.simba';
          Neifile := Rewritefile(NeiFeilNennen, true);
          try
            WriteFileString(Neifile, NewScript);
          except
            begin
              writeLn('Fatal error writing to '+NeiFeilNennen+'!!');
              terminatescript;
            end;
          end;
          CloseFile(Neifile);
          writeLn('New script downloaded to '+NeiFeilNennen+'!! Please use this one!!');
          TerminateScript;
        end else
          writeLn('You have the latest version of the script!');
      end else
        WriteLn('!!!!! Not checking for latest version, you may be outdated!');
    end;
    
    procedure SetupPlayers;
    begin
       NumberOfPlayers(1);
       CurrentPlayer := 0;
       Players[0].Name := UsrName.Text;
       Players[0].Pass := Pass.Text;
       Players[0].Pin := Pinn.Text;
       Players[0].Active := True;
    end;
    
    Procedure ButtonClick(Sender: TObject);
    Begin
      frmDesign.ModalResult:= mrOk;
      iHowManyBars:= StrToInt(HowManyBars.Text);
      iProfit:= StrToInt(Profit.Text);
    End;
    
    procedure InitForm;
    begin
      frmDesign := CreateForm;
      frmDesign.Left := 100;
      frmDesign.Top := 100;
      frmDesign.Width := 660;
      frmDesign.Height := 200;
      frmDesign.Caption := 'CRU!Z!NS Ultra SuperHeater +CoalBag!';
      frmDesign.Color := 1380316;
      frmDesign.Font.Color := ClBlack;
      frmDesign.Font.Name := 'Comic Sans MS';
    
      Button1 := TButton.Create(FrmDesign);
      Button1.Parent := FrmDesign;
      Button1.Left := 260;
      Button1.Top := 60;
      Button1.Height := 100;
      Button1.Width := 100;
      Button1.Caption := 'Run Script';
      Button1.OnClick := @ButtonClick;
    
      Label1 := TLabel.Create(FrmDesign);
      Label1.Parent := FrmDesign;
      Label1.Top := 60;
      Label1.Left := 370;
      Label1.Caption := 'UserName?';
    
      Label1 := TLabel.Create(FrmDesign);
      Label1.Parent := FrmDesign;
      Label1.Top := 90;
      Label1.Left := 370;
      Label1.Caption := 'Password?';
    
      Label1 := TLabel.Create(FrmDesign);
      Label1.Parent := FrmDesign;
      Label1.Top := 120;
      Label1.Left := 370;
      Label1.Caption := 'Bank Pin?';
    
      Label1 := TLabel.Create(FrmDesign);
      Label1.Parent := FrmDesign;
      Label1.Top := 60;
      Label1.Left := 10;
      Label1.Caption := 'Profit per bar?';
    
      Label1 := TLabel.Create(FrmDesign);
      Label1.Parent := FrmDesign;
      Label1.Top := 90;
      Label1.Left := 10;
      Label1.Caption := 'How Many Bars?';
    
      Label1 := TLabel.Create(FrmDesign);
      Label1.Parent := FrmDesign;
      Label1.Top := 120;
      Label1.Left := 10;
      Label1.Caption := 'Use CoalBag?';
    
      Label1 := TLabel.Create(FrmDesign);
      Label1.Parent := FrmDesign;
      Label1.Top := 150;
      Label1.Left := 10;
      Label1.Caption := 'Where to bank?';
    
    
      UsrName := TEdit.Create(FrmDesign);
      UsrName.Parent := FrmDesign;
      UsrName.Top := 60;
      UsrName.Left := 460;
      UsrName.Width := 100;
      UsrName.Height := 20;
    
      Pass := TEdit.Create(FrmDesign);
      Pass.Parent := FrmDesign;
      Pass.Top := 90;
      Pass.Left := 460;
      Pass.Width := 100;
      Pass.Height := 20;
    
      Pinn := TEdit.Create(FrmDesign);
      Pinn.Parent := FrmDesign;
      Pinn.Top := 120;
      Pinn.Left := 460;
      Pinn.Width := 100;
      Pinn.Height := 20;
    
      Profit := TEdit.Create(FrmDesign);
      Profit.Parent := FrmDesign;
      Profit.Top := 60;
      Profit.Left := 135;
      Profit.Caption := '100';
      Profit.Width := 60;
      Profit.Height := 20;
    
      HowManyBars := TEdit.Create(FrmDesign);
      HowManyBars.Parent := FrmDesign;
      HowManyBars.Top := 90;
      HowManyBars.Left := 135;
      HowManyBars.Caption := '1000';
      HowManyBars.Width := 60;
      HowManyBars.Height := 10;
    
      BarType := TComboBox.Create(FrmDesign);
      BarType.Parent := FrmDesign;
      BarType.Top := 10;
      BarType.Left := 10;
      BarType.Width := 350;
      BarType.Height := 20;
      BarType.Caption := 'BarType';
      BarType.Items.Add('iron');
      BarType.Items.Add('steel');
      BarType.Items.Add('mith');
      BarType.Items.Add('addy');
      BarType.Items.Add('rune-Comingsoon');
    
      UseCoalBag := TComboBox.Create(FrmDesign);
      UseCoalBag.Parent := FrmDesign;
      UseCoalBag.Top := 120;
      UseCoalBag.Left := 135;
      UseCoalBag.Width := 100;
      UseCoalBag.Height := 20;
      UseCoalBag.Caption := 'no';
      UseCoalBag.Items.Add('yes');
      UseCoalBag.Items.Add('no');
    
      WhatBank := TComboBox.Create(FrmDesign);
      WhatBank.Parent := FrmDesign;
      WhatBank.Top := 150;
      WhatBank.Left := 135;
      WhatBank.Width := 100;
      WhatBank.Height := 20;
      WhatBank.Caption := 'WhatBank';
      WhatBank.Items.Add('vwb');
      WhatBank.Items.Add('veb');
      WhatBank.Items.Add('fwb');
      WhatBank.Items.Add('feb');
      WhatBank.Items.Add('db');
      WhatBank.Items.Add('sw');
    end;
    
    procedure SafeInitForm;
    var
      v: TVariantArray;
    begin
      setarraylength(V, 0);
      ThreadSafeCall('InitForm', v);
    end;
    
    procedure ShowFormModal;
    begin
      frmDesign.ShowModal;
    end;
    
    procedure SafeShowFormModal;
    var
      v: TVariantArray;
    begin
      setarraylength(V, 0);
      ThreadSafeCall('ShowFormModal', v);
    end;
    
    procedure GetCoal;
    begin
        repeat
        MouseBox(85, 95, 108, 113, Mouse_Right);
        until(WaitOptionMulti(['ithdraw-All', 'w-A'], RandomRange(250,500)))
    end;
    
    procedure Bnk;
    begin
      case BarType.ItemIndex of
      0: Withdraw(0,0,28);//iron bar
      1:
      begin //steel bar
       if (UseCoalBag.Text='yes') then
      begin
        Withdraw(0,0,17);
        GetCoal;
      end;
       if (UseCoalBag.Text='no') then
       begin
        Withdraw(0,0,9);
        GetCoal;
       end;
      end;
       2:begin //mith bar
       if (UseCoalBag.Text='yes') then
       begin
        Withdraw(0,0,10);
        GetCoal;
       end;
       if (UseCoalBag.Text='no') then
       begin
        Withdraw(0,0,5);
        GetCoal;
       end;
      end;
       3:begin //addy bar
       if (UseCoalBag.Text='yes') then
       begin
        Withdraw(0,0,7);
        GetCoal;
       end;
       if (UseCoalBag.Text='no') then
       begin
        Withdraw(0,0,4);
        GetCoal;
       end;
      end;
     end;
    end;
    
    Procedure  OpenSwBank;
    var bnkT,x,y:integer;
    begin
        bnkT:=0;
        MarkTime(bnkT);
      repeat
        wait(0);
      until (TimeFromMark(bnkT) > 35000) or (FindObjCustom(x,y,['Bank','nk ch','k che','est'], [2963780,10790316,10000542,5921374],3))
        if(TimeFromMark(bnkT) > 35000)then
        begin
          Writeln('failed Banking sorry.......');
          exit;
        end;
        Mouse(x,y,1,1,true);
    end;
    
    procedure DoBanking;
    var
    Tic:integer;
    sm:TInvenItem;
    begin
        Tic:=0;
        Tri:=0;
        MarkTime(Tic);
      if not(LoggedIn) then
      begin
        Exit;
      end;
        if(WhatBank.Text = 'sw')then
        begin
          OpenSwBank;
        end else
       // if OpenBankNPC then
        if (OpenBank(WhatBank.Text, False, False))then
          //ChooseOption('e-q');
       //   if (not (OpenBank(WhatBank.Text, False, False)))then exit;
        Tic:=0;
        MarkTime(Tic);
      repeat
      until(BankScreen) or(TimeFromMark(Tic) > 35000) or (PinScreen)
      if(TimeFromMark(Tic) > 35000)then
      begin
      if (Tri < 2) then
      begin
        DoBanking;
        Inc(Tri);
      end else
          Writeln('failed Banking sorry.......');
          exit;
      end;
      If Pinscreen then
      begin
        InPin(Pinn.Text);
      end;
        Deposit(3,26,true);
        MouseSpeed:= (Mspeed + RandomRange(-1, 3));
      if not CurrentBankTab = 2 then
      begin
        BankTab(BnkTab);
      end;
      if (UseCoalBag.Text='yes') then //for coal bag
      begin
        MouseBox(85, 95, 108, 113, Mouse_Right);
        WaitOptionMulti(['ithdraw-All', 'w-A'], RandomRange(250,500));
        Tic:=0;
        MarkTime(Tic);
      repeat
        sm := GetInven(2);
        MouseBox(sm.ItemBox.X1,sm.ItemBox.Y1,sm.ItemBox.X2,sm.ItemBox.Y2,Mouse_Right);
      until(ChooseOption('ll')or (TimeFromMark(Tic) >= 25000))
     {for i := 6 to 8 do
        if FindChatBoxText('y co',8,0)then
        begin
          Deposit(3,27,true);
        end; }
        if(TimeFromMark(Tic) >= 25000)then
        begin
          Writeln('failed Fill sorry.......');
          exit;
        end;
      end;
      Bnk;
      while CloseBank do
       begin
        MouseSpeed := (Mspeed + RandomRange(-1, +3));
       end;
    end;
    
    procedure proggy;
    begin
      cleardebug;
      writeln(PadR('[---------------  Cru!z!ns Ultra SuperHeater Smelter  --------------', 50) + ']');
      writeln(PadR('[               Ran for '+TimeRunning+'', 50) + ']');
      WriteLn(PadR('[Magic xp : ' + IntToStr(BarsMade*53), 50) + ']');
      WriteLn(PadR('[Magic : ' + FloatToStr(Round((BarsMade*53 * 3600) / (GetTimeRunning / 1000))) + ' Mage XP/Hr', 50) + ']');
      WriteLn(PadR('[Smith : ' + FloatToStr(Round((BarsMade*17 * 3600) / (GetTimeRunning / 1000))) + ' Smith XP/Hr', 50) + ']');
      WriteLn(PadR('[Profit : ' + FloatToStr(Round((BarsMade*iProfit * 3600) / (GetTimeRunning / 1000))) + ' Gp/Hr', 50) + ']');
      WriteLn(PadR('[Profit Made : ' +IntToStr(BarsMade*iProfit), 50) + ']');
      writeln(PadR('[Bars made : '+IntToStr(BarsMade)+'', 50) + ']');
      WriteLn(PadR('[Making : ' + FloatToStr(Round((BarsMade * 3600) / (GetTimeRunning / 1000))) + ' Bars/ph', 50) + ']');
      writeln(PadR('[Debug '+Debug+'', 50) + ']');
    
    end;
    
    procedure DoSmelting(ItemNum,NumBars:integer);
    var
    sm: TInvenItem;
    t,Tic:integer;
    begin
        ItemNum2:=ItemNum;
        SupaHeatDTM := DTMFromString('mbQAAAHicY2VgYJjLxMAwE4inA/EiIF4MxOWMDAxlQFwHxDVAXAnEsoxMDHqMzAx2TMxgGoSxAUYsGAwAHzIGhQ==');
      if not(LoggedIn) then Exit;
        MouseSpeed:= (Mspeed+RandomRange(-2,+3));
        GameTab(tab_magic);
         t:=0;
         MarkTime(Tic);
      repeat
       repeat
      until (FindDTM(SupaHeatDTM,sx,sy,MIX1,MIY1,MIX2,MIY2) or(TimeFromMark(Tic) > 17000))
        if(TimeFromMark(Tic) > 17000)then
        begin
          exit;
        end;
        Mouse(sx,sy,2,2,true);
        wait(RandomRange(50,100));
        repeat
          wait(4);
          inc(t);
        until(GetCurrentTab = tab_inv )or (t > 8000)
        if LevelUp then
        begin
          ClickToContinue;
        end;
        FindNormalRandoms;
        sm := GetInven(ItemNum2);
        MouseBox(sm.ItemBox.X1,sm.ItemBox.Y1,sm.ItemBox.X2,sm.ItemBox.Y2,Mouse_Left);
        t:=0;
        MarkTime(Tic);
       repeat
        if LevelUp then
        begin
          ClickToContinue;
        end;
       until((TimeFromMark(Tic) > 15000))or(GetCurrentTab = tab_magic)
        if(TimeFromMark(Tic) > 15000)and not(GetCurrentTab = (tab_magic))then
        begin
          GameTab(tab_magic);
        end;
        inc(Bars);
        inc(BarsMade);
        proggy;
      Until(Bars>=NumBars);
        MouseSpeed:= (Mspeed+RandomRange(-1,3));
        FindNormalRandoms;
        FreeDTM(SupaHeatDTM);
    end;
    
    Procedure Main;
    begin
        MakeCompass('n');
      repeat
        MouseSpeed := (Mspeed + RandomRange(-1,3));
        DoBanking;
        Bars:=0;
        Tri:=0;
        FindNormalRandoms;
      case BarType.ItemIndex of
       0:DoSmelting(28,26);// iron
       1:begin //steel
       if (UseCoalBag.Text='yes') then
        begin
          DoSmelting(19,17);
        end else
          DoSmelting(10,9);
       end;
       2:begin //mith
       if (UseCoalBag.Text='yes') then
        begin
          DoSmelting(12,10);
        end else
          DoSmelting(6,5);
       end;
       3:begin //addy
       if (UseCoalBag.Text='yes') then
        begin
          DoSmelting(9,7);
        end else
          DoSmelting(5,4);
       end;
      end;
      until (BarsMade>=iHowManyBars);
    end;
    
    begin
        AutoUpdateMe;
        SafeInitForm;
        SafeShowFormModal;
        ClearDebug;
        Smart_Server := 10;
        Smart_Members := False;
        Smart_Signed := True;
        Smart_SuperDetail := False;
        SetupSRL;
        SetupPlayers;
        ActivateClient;
        Debug:='none';
      if not LoggedIn then LogInPlayer;
        SetAngle(SRL_ANGLE_HIGH);
        ClearDebug;
        wait(1000);
        Main;
        Freeform(frmDesign);
    end.
    Thats the script that comes up when i load the latest (.6a), that wont let me even run it. just compiles and says get the newer version...but that is the newer one :s
    Sorry mate not trying to be a pain with the problem, jsut trying to help out.

  5. #505
    Join Date
    May 2007
    Location
    England/Liverpool
    Posts
    1,004
    Mentioned
    9 Post(s)
    Quoted
    106 Post(s)

    Default

    delete that version it downloaded and run the script again use the next version it downlaods

  6. #506
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    Ahhhh i feel so stuipd for not trying that. Thanks. the new version works with coal bag
    Over tired and didnt think of that lol. thank you.

  7. #507
    Join Date
    Oct 2010
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    SCAR Code:
    [---------------  Cru!z!ns Ultra SuperHeater Smelter  --------------]
    [               Ran for 4 Hours, 30 Minutes and 23 Seconds]
    [Magic xp : 350701                                ]
    [Magic : 77823 Mage XP/Hr                         ]
    [Smith : 24962 Smith XP/Hr                        ]
    [Profit : 86633 Gp/Hr                             ]
    [Profit Made : 390403                             ]
    [Bars made : 6617                                 ]
    [Making : 1468 Bars/ph                            ]
    [Debug none                                       ]

    Great script thank you very much , using coal bag and shortened some of the waiting times to try and get a bit more mage xp worked a treat.


    * I change line 422 to S instead of N and the banking procedure is much more stable as I found it never failed or clicked on Nomad.
    Last edited by kingob; 01-10-2012 at 09:09 PM.

  8. #508
    Join Date
    Nov 2011
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you; newest version works. Plan on using this to 99 mage at least, and possibly 99 smithing.

  9. #509
    Join Date
    Dec 2011
    Posts
    392
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ahh, the latest update has been working for me, proggy in the morning ^.^ it's a shame coal and iron are never dropping at the same time. It's either one or the other is pricey lol

  10. #510
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    [ Ran for 5 Hours, 27 Minutes and 19 Seconds]
    [Magic xp : 371212 ]
    [Magic : 68046 Mage XP/Hr ]
    [Smith : 21826 Smith XP/Hr ]
    [Profit : 64194 Gp/Hr ]
    [Profit Made : 350200 ]
    [Bars made : 7004 ]
    [Making : 1283 Bars/ph ]
    [Debug none ]

    Works nicely

  11. #511
    Join Date
    May 2007
    Location
    England/Liverpool
    Posts
    1,004
    Mentioned
    9 Post(s)
    Quoted
    106 Post(s)

    Default

    glad you guys are working again planning on rewriting this on the weekend... is very sloppy i tinks

  12. #512
    Join Date
    Sep 2010
    Location
    Northern Kentuckeh
    Posts
    759
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Progress Report:
    [---------------  Cru!z!ns Ultra SuperHeater Smelter  --------------]
    [               Ran for 4 Hours, 53 Minutes and 16 Seconds]
    [Magic xp : 424371                                ]
    [Magic : 86822 Mage XP/Hr                         ]
    [Smith : 27848 Smith XP/Hr                        ]
    [Profit : -80270 Gp/Hr                            ]
    [Profit Made : 800700                             ]
    [Bars made : 8007                                 ]
    [Making : 1638 Bars/ph                            ]
    [Debug none                                       ]


    Ended because I ran out of ores. I also didn't calculate profit so ignore that.

    EDIT: Would be cool if you added srl stats
    Last edited by doublex8; 01-11-2012 at 06:13 PM.
    Quote Originally Posted by h_king1998 View Post
    how come it does not bank in al-kharid when i do mine 1 drop 1

  13. #513
    Join Date
    May 2007
    Location
    England/Liverpool
    Posts
    1,004
    Mentioned
    9 Post(s)
    Quoted
    106 Post(s)

    Default

    Quote Originally Posted by doublex8 View Post
    Progress Report:
    [---------------  Cru!z!ns Ultra SuperHeater Smelter  --------------]
    [               Ran for 4 Hours, 53 Minutes and 16 Seconds]
    [Magic xp : 424371                                ]
    [Magic : 86822 Mage XP/Hr                         ]
    [Smith : 27848 Smith XP/Hr                        ]
    [Profit : -80270 Gp/Hr                            ]
    [Profit Made : 800700                             ]
    [Bars made : 8007                                 ]
    [Making : 1638 Bars/ph                            ]
    [Debug none                                       ]


    Ended because I ran out of ores. I also didn't calculate profit so ignore that.

    EDIT: Would be cool if you added srl stats
    yeah iv'e got around 37k steel bars to smelt into balls

  14. #514
    Join Date
    Dec 2011
    Posts
    81
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    [Magic xp : 471223 ]
    [Magic : 82743 Mage XP/Hr ]
    [Smith : 26540 Smith XP/Hr ]
    [Profit : -53370 Gp/Hr ]
    [Profit Made : 889100 ]
    [Bars made : 8891 ]
    [Making : 1561 Bars/ph ]
    [Debug none ]

    And after tweaking her a bit :P

    [Magic xp : 29256 ]
    [Magic : 96096 Mage XP/Hr ]
    [Smith : 30823 Smith XP/Hr ]
    [Profit : 181313 Gp/Hr ]
    [Profit Made : 55200 ]
    [Bars made : 552 ]
    [Making : 1813 Bars/ph ]
    [Debug none ]
    Last edited by miketree; 01-12-2012 at 09:07 PM.

  15. #515
    Join Date
    Nov 2011
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    92 smithing! For some reason my Bars per hour has dropped from 950 to 850, but she's still running strong.

  16. #516
    Join Date
    Sep 2010
    Location
    Northern Kentuckeh
    Posts
    759
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Just something I noticed while watching the script run. In SW I noticed that if you are facing the chest is clicks the lower left corner of the chest. Sometimes that Nomad dude will be standing right next to you when this happens and it initiates a convo with him him. Just something I observed.
    Quote Originally Posted by h_king1998 View Post
    how come it does not bank in al-kharid when i do mine 1 drop 1

  17. #517
    Join Date
    Nov 2011
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeah, I couldn't figure out how to fix that. I believe it's because the script uses the white rim around the chest as the color, and he shares that color. It should check for "bank" or whatever, but sometimes it clicks too fast and ends up talking to him.

    This isn't a huge deal, but it takes quite a while to then open the bank successfully. I lowered some wait time, can't remember where and I can't be bothered to look right now. But it basically solved the problem and brought me back up to my 950 bars per hour.

  18. #518
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    [--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
    [ Ran for 5 Hours, 14 Minutes and 14 Seconds]
    [Magic xp : 371212 ]
    [Magic : 70879 Mage XP/Hr ]
    [Smith : 22734 Smith XP/Hr ]
    [Profit : 66867 Gp/Hr ]
    [Profit Made : 350200 ]
    [Bars made : 7004 ]
    [Making : 1337 Bars/ph ] <-- lol at bars per hr
    [Debug none ]
    Successfully executed.

  19. #519
    Join Date
    Dec 2011
    Posts
    81
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Spiffed her up a bit ^^
    [Magic xp : 173151 ]
    [Magic : 105508 Mage XP/Hr ]
    [Smith : 33842 Smith XP/Hr ]
    [Profit : 199072 Gp/Hr ]
    [Profit Made : 326700 ]
    [Bars made : 3267 ]
    [Making : 1990 Bars/ph ]
    [Debug none ]

  20. #520
    Join Date
    May 2007
    Location
    England/Liverpool
    Posts
    1,004
    Mentioned
    9 Post(s)
    Quoted
    106 Post(s)

    Default

    Quote Originally Posted by Itankbots View Post
    [--------------- Cru!z!ns Ultra SuperHeater Smelter --------------]
    [ Ran for 5 Hours, 14 Minutes and 14 Seconds]
    [Magic xp : 371212 ]
    [Magic : 70879 Mage XP/Hr ]
    [Smith : 22734 Smith XP/Hr ]
    [Profit : 66867 Gp/Hr ]
    [Profit Made : 350200 ]
    [Bars made : 7004 ]
    [Making : 1337 Bars/ph ] <-- lol at bars per hr
    [Debug none ]
    Successfully executed.
    1337 proggy for leet script nice prog mate


    @mike your bph is crazy don't release any of your edits please
    I've toned it down to help prices

  21. #521
    Join Date
    Oct 2010
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by doublex8 View Post
    Just something I noticed while watching the script run. In SW I noticed that if you are facing the chest is clicks the lower left corner of the chest. Sometimes that Nomad dude will be standing right next to you when this happens and it initiates a convo with him him. Just something I observed.
    Quote Originally Posted by JLV View Post
    Yeah, I couldn't figure out how to fix that. I believe it's because the script uses the white rim around the chest as the color, and he shares that color. It should check for "bank" or whatever, but sometimes it clicks too fast and ends up talking to him.

    This isn't a huge deal, but it takes quite a while to then open the bank successfully. I lowered some wait time, can't remember where and I can't be bothered to look right now. But it basically solved the problem and brought me back up to my 950 bars per hour.

    Quote Originally Posted by kingob View Post
    * I change line 422 to S instead of N and the banking procedure is much more stable as I found it never failed or clicked on Nomad.

  22. #522
    Join Date
    May 2007
    Location
    England/Liverpool
    Posts
    1,004
    Mentioned
    9 Post(s)
    Quoted
    106 Post(s)

    Default

    Quote Originally Posted by kingob View Post
    nvm

  23. #523
    Join Date
    Dec 2011
    Posts
    81
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by JLV View Post
    Yeah, I couldn't figure out how to fix that. I believe it's because the script uses the white rim around the chest as the color, and he shares that color. It should check for "bank" or whatever, but sometimes it clicks too fast and ends up talking to him.

    This isn't a huge deal, but it takes quite a while to then open the bank successfully. I lowered some wait time, can't remember where and I can't be bothered to look right now. But it basically solved the problem and brought me back up to my 950 bars per hour.
    Step 1 : Insert Writeln(x) + Writeln(y) statements after script finds chest
    Step 2 : Monitor these values to find a valid range of X and Y coordinates
    Step 3 : Replace FindBankChestColor procedure/function with a safe RandomRange Mouse function
    Step 4 : Problem Solved.

  24. #524
    Join Date
    Dec 2011
    Posts
    99
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Will never forget this script :-)

  25. #525
    Join Date
    Nov 2011
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ah, Muchas Gracias mike.

    edit: Also, 95 smithing! Almost there.

Page 21 of 28 FirstFirst ... 111920212223 ... LastLast

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
  •