Page 39 of 68 FirstFirst ... 29373839404149 ... LastLast
Results 951 to 975 of 1676

Thread: Multi City Miner & Banker!!!

  1. #951
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by somelse View Post
    Cool, that would be amazing. By the way, I can't find thepart in the script to change the new bankscreen problem. Can anyone help me out? I've already looked at the front page too, lol.
    Open up your includes folder for SCAR, double click SRL, double click SRL again, double click core, double click bank.scar. In the BankScreen function around line 30 or something, change the 185 in GetTextAtEx (or something like that) to 184. Then save it and you should be good

  2. #952
    Join Date
    Jun 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for the help man! But this is what it had when I opened it.. wtf? lol

    {************************************************* ******************************
    function BankScreen: Boolean;
    by: SRL Dev Team
    Description: Finds Bankscreen. Returns true if Found.
    ************************************************** *****************************}

    function BankScreen: Boolean;
    var
    x, y: Integer;
    begin
    if FindColor(x, y, 2070783, 22, 31, 473, 52) then
    Result := IsTextAtEx(x, y - 2, 'The Bank of', 0, upchars, True, False, 0, 0,
    2070783)
    else if FindColorTolerance(x, y, 2070783, 22, 31, 473, 52, 30) then
    Result := IsTextAtEx(x, y - 2, 'The Bank of', 30, upchars, True, False, 0, 0,
    GetColor(x, y));
    end;

  3. #953
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by somelse View Post
    Thanks for the help man! But this is what it had when I opened it.. wtf? lol

    SCAR Code:
    {*******************************************************************************
    function BankScreen: Boolean;
    by: SRL Dev Team
    Description: Finds Bankscreen. Returns true if Found.
    *******************************************************************************}


    function BankScreen: Boolean;
    var
      x, y: Integer;
    begin
      if FindColor(x, y, 2070783, 22, 31, 473, 52) then
        Result := IsTextAtEx(x, y - 2, 'The Bank of', 0, upchars, True, False, 0, 0,
          2070783)
      else if FindColorTolerance(x, y, 2070783, 22, 31, 473, 52, 30) then
        Result := IsTextAtEx(x, y - 2, 'The Bank of', 30, upchars, True, False, 0, 0,
          GetColor(x, y));
    end;
    Lol... You probably added one other guy's bank fixing, go to bank fixing site (link in my first post), copy the bankscreen function from there, and like JAD said, there must be 184, not 185.

  4. #954
    Join Date
    Jun 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey Pentti or JAD, can one of you guys post what that part of the bankscript says for me so I can copy, paste and doc up my scipt so it works properly.. I'm not too confident in randomely deleted script lines and replacing things that should already be there when they're not, lol.. Now Pentti's auto miner can't function because there is a line 12 error with the bank..

  5. #955
    Join Date
    Jun 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey Pentti or JAD, can one of you guys post what that part of the bankscript says for me so I can copy, paste and doc up my scipt so it works properly.. I'm not too confident in randomely deleted script lines and replacing things that should already be there when they're not, lol.. Now Pentti's auto miner can't function because there is a line 12 error with the bank..

  6. #956
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by somelse View Post
    Hey Pentti or JAD, can one of you guys post what that part of the bankscript says for me so I can copy, paste and doc up my scipt so it works properly.. I'm not too confident in randomely deleted script lines and replacing things that should already be there when they're not, lol.. Now Pentti's auto miner can't function because there is a line 12 error with the bank..
    Quote Originally Posted by Pentti View Post
    Lol... You probably added one other guy's bank fixing, go to bank fixing site (link in my first post), copy the bankscreen function from there, and like JAD said, there must be 184, not 185.
    Yup....

  7. #957
    Join Date
    Jun 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Edit - very sorry for the double post, at the time my internet was messing up alot. I have read the bank screen thing. If I have indeed dloaded someone else's bank script. Please inform me on how to change it PROPERLY, lol, without further problems.. I'm still new to scar, but learning from every answer you guys give

    If this is what my whole bankscreen script has, what do I add, or remove.. considering there isn't a 185 anywhere. Once again I must thank you guys for your time and patience.

    {************************************************* ******************************
    function BankScreen: Boolean;
    by: SRL Dev Team
    Description: Finds Bankscreen. Returns true if Found.
    ************************************************** *****************************}

    function BankScreen: Boolean;
    var
    x, y: Integer;
    begin
    if FindColor(x, y, 2070783, 22, 31, 473, 52) then
    Result := IsTextAtEx(x, y - 2, 'The Bank of', 0, upchars, True, False, 0, 0,
    2070783)
    else if FindColorTolerance(x, y, 2070783, 22, 31, 473, 52, 30) then
    Result := IsTextAtEx(x, y - 2, 'The Bank of', 30, upchars, True, False, 0, 0,
    GetColor(x, y));
    end;

  8. #958
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by somelse View Post
    Code:
    Edit - very sorry for the double post, at the time my internet was messing up alot. I have read the bank screen thing. If I have indeed dloaded someone else's bank script. Please inform me on how to change it PROPERLY, lol, without further problems.. I'm still new to scar, but learning from every answer you guys give ;) 
    
    If this is what my whole  bankscreen script has, what do I add, or remove.. considering there isn't a 185 anywhere. Once again I must thank you guys for your time and patience.
    
    {************************************************* ******************************
    function BankScreen: Boolean;
    by: SRL Dev Team
    Description: Finds Bankscreen. Returns true if Found.
    ************************************************** *****************************}
    
    function BankScreen: Boolean;
    var
    x, y: Integer;
    begin
    if FindColor(x, y, 2070783, 22, 31, 473, 52) then
    Result := IsTextAtEx(x, y - 2, 'The Bank of', 0, upchars, True, False, 0, 0,
    2070783)
    else if FindColorTolerance(x, y, 2070783, 22, 31, 473, 52, 30) then
    Result := IsTextAtEx(x, y - 2, 'The Bank of', 30, upchars, True, False, 0, 0,
    GetColor(x, y));
    end;
    Quote Originally Posted by Pentti View Post
    Lol... You probably added one other guy's bank fixing, go to bank fixing site (link in my first post), copy the bankscreen function from there, and like JAD said, there must be 184, not 185.
    You are welcome... again.

  9. #959
    Join Date
    Jan 2007
    Posts
    40
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hy Pentti !
    I`m having some trouble with the script , after 2 hours (more or less) it get an error , " unable to draw canavans " . Or something like that ...
    Do u have any idea , why , and if i can fix `it

    and a final question , I`d like to add a few players , do i have do change some variable , or they are declared dynamically ?...

    Edit :

    I`v forget the most important bug , It dosen`t detect gas ( 80% of the time ...)

    I think i shod mention i`m running the script on Scar Divi SRL 8 ! ...
    PEOPLE PLEASE AUTO PROPERLY

  10. #960
    Join Date
    Jun 2007
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    found a small problem, couldn't detect the road color...

  11. #961
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by dudutzu View Post
    Hy Pentti !
    I`m having some trouble with the script , after 2 hours (more or less) it get an error , " unable to draw canavans " . Or something like that ...
    Do u have any idea , why , and if i can fix `it

    and a final question , I`d like to add a few players , do i have do change some variable , or they are declared dynamically ?...

    Edit :

    I`v forget the most important bug , It dosen`t detect gas ( 80% of the time ...)

    I think i shod mention i`m running the script on Scar Divi SRL 8 ! ...
    It works with SRL 3.8? Oh, I didn't know that.

    And gas detecting is not the best part in it.

    And your error "Canvas does not allow darwing in line blabla.." is probably in gas detecting system, and its taken from SRL, so I can't do much with it.

  12. #962
    Join Date
    Jan 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    iam back just dled ur script going to test it today get u a proggy or error msg tomorrow but i did try on loptop vbright 32bit scar 2.03 srl 3.07 all most worked i tryed powermining wouldent find the rock just keept going to minning spot btw i wasent at any suggested spots eather its all myfault i know i need srl3.06 so going to try it right today thanks

    p.s. will it work with 3.07

  13. #963
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by barry View Post
    iam back just dled ur script going to test it today get u a proggy or error msg tomorrow but i did try on loptop vbright 32bit scar 2.03 srl 3.07 all most worked i tryed powermining wouldent find the rock just keept going to minning spot btw i wasent at any suggested spots eather its all myfault i know i need srl3.06 so going to try it right today thanks

    p.s. will it work with 3.07
    SRL 3.6 + pick up new rockcolorsin script (CTRL + P)

  14. #964
    Join Date
    Jan 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok got it working will have a proggy tonight walked perfectly one load but i have to be off for work now uber thanks for this btw i just made 7 new iron miners just have to up there combat lvls tonight b4 i run it

  15. #965
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by barry View Post
    ok got it working will have a proggy tonight walked perfectly one load but i have to be off for work now uber thanks for this btw i just made 7 new iron miners just have to up there combat lvls tonight b4 i run it
    Alright, thats good.
    7 miners should get good proggy.

  16. #966
    Join Date
    Feb 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Jeez 2,725 lines Ive been looking for one that works and finally found it! Every other one i use lags my computer cause its so shitty and old. Im gonna need to get iron to get 99 smithing Thanks again!

  17. #967
    Join Date
    Feb 2007
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i have a problem swithching players, they never seem to switch. i also have a problem with randoms that teleport you to places. can anyone help?

  18. #968
    Join Date
    Jun 2007
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    When i try to run the setup for SRL 3.06, i get an error saying that the location on my desktop "is not a valid Win32 application"

    Any advice would be greatly appreciated. thanks (:

  19. #969
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by terkoiz View Post
    Jeez 2,725 lines Ive been looking for one that works and finally found it! Every other one i use lags my computer cause its so shitty and old. Im gonna need to get iron to get 99 smithing Thanks again!
    Cool! And I would like if you posted some proggys too.
    Quote Originally Posted by sharlene212 View Post
    i have a problem swithching players, they never seem to switch. i also have a problem with randoms that teleport you to places. can anyone help?
    Player switching works as long as you set players active to True which you are using, and it will change to next player till your current player has done Players[#].Integer1 loads.

    Randoms will work if you set your nickname correct.
    Quote Originally Posted by king0dark View Post
    When i try to run the setup for SRL 3.06, i get an error saying that the location on my desktop "is not a valid Win32 application"

    Any advice would be greatly appreciated. thanks (:
    Really dont know...

  20. #970
    Join Date
    Jun 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It's not working properly and i have to adjust the path all the time :/

  21. #971
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by btryan View Post
    It's not working properly and i have to adjust the path all the time :/
    What isnt working in it?


    UPDATE ALMOST READY

  22. #972
    Join Date
    Jan 2007
    Posts
    40
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Here is the error !!
    Code:
     
    [Runtime Error] : Exception: Canvas does not allow drawing in line 2047 in script C:\Documents and Settings\DuDuTzU\Desktop\Pentti Multi City Miner & Banker 0.31.scar
    And the progres report !
    Code:
    Total loads done: 7 (09:14:34 AM)
    Total ores mined: 196 (09:14:34 AM)
    Pick head colors... 1583412 2111560 1913152 1913924 2440784
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ------------------------------------------------------------
    |     Multi City Miner & Banker  By: Pentti                |
    -----------------------------------------------------------|
    0: ### is not in use,                                  |
    1: ### is in use,                                    |
    2: ### is in use,                                     |
    3: ### is in use,                                     |
    4: ### is Powermining, Mined 168 ores,  M-lvl: 50     |
    5: ### is Lost,  M-lvl: 1                               |
    6: ### is No rocks,  M-lvl: 3                         |
    7: ### is Powermining, Mined 28 ores,  M-lvl: 6      |
    8:  is not in use,                                         |
    9:  is not in use,                                         |
    10:  is not in use,                                        |
    11:  is not in use,                                        |
    12:  is not in use,                                        |
    13:  is not in use,                                        |
    14:  is not in use,                                        |
    ------------------------------------------------------------
                    [Worked: 0:59:59]
    
    
    Found mining symbol. (09:14:58 AM)
    Found mining symbol. (09:15:09 AM)
    Found mining symbol. (09:15:22 AM)
    Found mining symbol. (09:15:42 AM)
    Found mining symbol. (09:17:26 AM)
    Mention The first players (2,3,4) are enable , valid and range in lvl from 50 to 58 ...
    I can`t understand what happened !
    What UPDATE ?

    Tell me what can i do to fix this ! :|
    Is the update version more compatible with divi and srl8 ?

    Thx for the time !

    I`ll try now with an older version of scar and srl
    PEOPLE PLEASE AUTO PROPERLY

  23. #973
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by dudutzu View Post
    Here is the error !!
    Code:
     
    [Runtime Error] : Exception: Canvas does not allow drawing in line 2047 in script C:\Documents and Settings\DuDuTzU\Desktop\Pentti Multi City Miner & Banker 0.31.scar
    And the progres report !
    Code:
    Total loads done: 7 (09:14:34 AM)
    Total ores mined: 196 (09:14:34 AM)
    Pick head colors... 1583412 2111560 1913152 1913924 2440784
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    ------------------------------------------------------------
    |     Multi City Miner & Banker  By: Pentti                |
    -----------------------------------------------------------|
    0: ### is not in use,                                  |
    1: ### is in use,                                    |
    2: ### is in use,                                     |
    3: ### is in use,                                     |
    4: ### is Powermining, Mined 168 ores,  M-lvl: 50     |
    5: ### is Lost,  M-lvl: 1                               |
    6: ### is No rocks,  M-lvl: 3                         |
    7: ### is Powermining, Mined 28 ores,  M-lvl: 6      |
    8:  is not in use,                                         |
    9:  is not in use,                                         |
    10:  is not in use,                                        |
    11:  is not in use,                                        |
    12:  is not in use,                                        |
    13:  is not in use,                                        |
    14:  is not in use,                                        |
    ------------------------------------------------------------
                    [Worked: 0:59:59]
    
    
    Found mining symbol. (09:14:58 AM)
    Found mining symbol. (09:15:09 AM)
    Found mining symbol. (09:15:22 AM)
    Found mining symbol. (09:15:42 AM)
    Found mining symbol. (09:17:26 AM)
    Mention The first players (2,3,4) are enable , valid and range in lvl from 50 to 58 ...
    I can`t understand what happened !
    What UPDATE ?

    Tell me what can i do to fix this ! :|
    Is the update version more compatible with divi and srl8 ?

    Thx for the time !

    I`ll try now with an older version of scar and srl
    Thanks for your post!
    [Runtime Error] : Exception: Canvas does not allow drawing in line 2047 in script
    *Ill check that error before I release updated version.

    New updated version will work on SCAR 2.03 & SRL 3.6 and on SCAR Divi + SRL 3.8->.

    Its almost ready.

  24. #974
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Need testers for my updated Multi City Miner & Banker 0.4!
    PM me, Ill answer back if Ill let you test it!

  25. #975
    Join Date
    Jun 2007
    Location
    new zealand
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Awesome script, the best miner I have seen by far.
    Satan

Page 39 of 68 FirstFirst ... 29373839404149 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SRL4] Varrock City - Clay Miner, Pottery Crafter and Banker
    By HellBoyz in forum RS3 Outdated / Broken Scripts
    Replies: 34
    Last Post: 10-27-2007, 10:37 PM
  2. Compiling problem w/ Pentti Multi City Miner
    By frogboy in forum OSR Help
    Replies: 2
    Last Post: 05-01-2007, 08:34 AM

Posting Permissions

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