Page 8 of 9 FirstFirst ... 6789 LastLast
Results 176 to 200 of 221

Thread: [SRL4] QuickPowerMiner

  1. #176
    Join Date
    May 2007
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by TheVoiceInYourHead View Post
    Change line 1507 to:
    SCAR Code:
    if FindObjOre(cx,cy,'ocks',orecolor,tol,mincount)then
    .

    It compiles once you do that.
    thank u very much... it compiles now.. ill test asap.. then post proggie
    http://www.fenjer.com/adnan/SRLStats/1750.png

    http://stats.srl-forums.com/be/SRL-S...rbars/1750.png

    http://www.draynor.net/skill/glossyb...whiteboi4u.png

    Thanx / Rep Me if i helped you in any way


    if u have a really good scripts that either cuts willows or yews send me an email auz_boi_2_nv@hotmail.com

    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly . - put this in your sig

  2. #177
    Join Date
    Apr 2008
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    [SRL4] QuickPowerminer 3.0 by Timothegreat
    ----------------------------------------
    Time Running: 1 Hours, 18 Minutes and 2 Seconds
    Ores Mined: 675
    Loads: 25
    Ores/hr: 519
    Responded: 0 Times
    Broken Picks: 0
    Gasses found: 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    | SRL 4 Randoms Report |
    | www.srl-forums.com |
    |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    | Talks : 4 |
    | Old Men : 1 |
    | Lamps Solved : 2 |
    | Frog Solved : 1 |
    | Capn Hand[s] : 1 |
    | Boxes Solved : 1 |
    \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    Biggest problem I have is with gasses, but I think I solved them (quick and dirty fix, but performance is fine). Here are my main edits...
    In powermine proc, I replaced a portion with this:
    ...
    end;
    if (w_wizzupgas(cx,cy-5) or MKFindGas) then //added MK's check
    begin
    HandleFight; // run away first, do SRL stats later
    Writeln('Found Gas! Using Wizzups/MK checker during mining');
    MFF(MMCX+2,MMCY,4,4);
    Gasses:= Gasses + 1;
    ReportVars[2] := ReportVars[2] + 1;
    SendSRLReport;
    SRLRandomsReport;
    MMouse(random(MSX2),random(MSY2),5,5);
    Status('Found Gas! Using wizzups/MK gas checker');
    FTWait(8+random(2));
    exit;
    end else
    begin
    if (isuptext('ine')) then
    ...

    Also, in waitrock, a similar change...
    if w_wizzupgas(cx,cy-5) then
    begin
    HandleFight;
    Writeln('Found Gas! Using Wizzups checker');
    MFF(MSCX,MSCY,5,5);
    ...and...
    if MKFindGas then
    begin
    HandleFight;
    Writeln('Found Gas! Using Masterkills checker');
    MFF(MSCX,MSCY,5,5);
    ...

    I found in many cases, that it was finding the gasses, but either not doing anything or doing things too late. I'm forcing it to just run away immediately and do the other stuff later. If it waits to do SendSRLReport and SRLRandomsReport first, there's a delay in reaction time before it does a FTWait(36+Random(4)) later on and it's probably too late by that time.

    I haven't searched for FTWait to see what it does, but I'm assuming that's the reaction to the gas being found. If it's successfully reacting to the gas, then you could replace the HandleFight with FTWait in my edits above, but I know HandleFight is working, so I'm not too worried about it.

    One random I just noticed it got stuck on was the swarm. It was pwning my character, but no fight was being detected. I think it was just chipping away at my hit points, but not actually showing a red "blam"/explosion on my character with the amount of damage being done each hit like you see in normal combat or a gas explosion, so it wasn't detecting a fight. Is that the way the swarm always works? I'm not sure if anti-random code for swarm relies on detecting the fight or detecting the swarm, but it wasn't working.

    Now that gas detection is improved, I should be able to get some longer proggies. Still doesn't handle pickaxe head flying off, unfortunately.

  3. #178
    Join Date
    Aug 2007
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Here ya go, it's kinda weak but it's better than nothing.

    EDIT: replaced proggy with a longer one. This one failed because my pickhead flew off and it couldn't find it. Wasn't watching when it happened, sorry.
    Code:
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     [SRL4] QuickPowerminer 3.0 by Timothegreat 
    ----------------------------------------
     Time Running: 2 Hours, 55 Minutes and 46 Seconds
     Ores Mined: 891
     Loads: 33
     Ores/hr: 304
     Responded: 36 Times
     Broken Picks: 0
     Gasses found: 8
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    It runs great, except for a few very small things I noticed:
    - It couldn't find my bronze pick with it equipped and the Boolean set to true. But it worked fine unequipped. (EDIT: tried again to get a log and it worked. So maybe I was wrong)
    - I had the gas problem mentioned above (I clicked away manually after 10 - seconds, twice). Eventually it gives a "Gas Gave TRUE", but it takes way too long. I didn't check out the code yet but I'd assume the above posters are correct. (EDIT: it does find gas but it takes all too much time for me to be comfortable with it)

    Good work! Another thing, every single time it autoresponds it says "homeslice"... i love it

  4. #179
    Join Date
    Apr 2007
    Posts
    374
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i watch over it when it runs XD its very nice and fast mining but doesnt detect gases
    it detect monsters attacking though.
    its still good after 4 months using it

  5. #180
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    it detects gasses like people have been saying but its detecting them too slow... il figure out the problem soon.
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

  6. #181
    Join Date
    Apr 2008
    Posts
    42
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    kool script il post progi later when i have time to try it

  7. #182
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    do so as you wish

    please post proggies
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

  8. #183
    Join Date
    Oct 2007
    Posts
    302
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Uhm,
    I have a mith pick, when equipped it doesn't find it. But when it's unequiped it'll find it.

    The gas detection didn't work unfortunatly, costing me 43 gp to fix my axe I feel that the dropping is also too fast. Perhaps work on this speed, and drop at random intervals, as if being an impatient human who can't be bothered to fill up all of his inventory. Just my CC.
    Previously known as boxcrop.


  9. #184
    Join Date
    Apr 2008
    Posts
    147
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    Line 1529: [Error] (14583:4): Unknown identifier 'FindObjOre' in script C:\Users\Administrator\Desktop\[SRL4] QuickPowerMiner3.1 pro.scar

    Help me?

  10. #185
    Join Date
    Mar 2008
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    For some reason this script laggs ALOT... no good proggy because it stops after 2 hours... and i want atleast 5+ hours

    My army got now about 25 mining, so i'll switch to an iron ore miner with out laggs o.O

  11. #186
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    download srl, subversion, and update to rev 16
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

  12. #187
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i am going to use it on my main now.. to lvl up his mining for our script eh
    i'll post a proggy later

    edit: just broke my pic
    SCAR Code:
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     [SRL4] QuickPowerminer 3.0 by Timothegreat
    ----------------------------------------
     Time Running: 12 Minutes and 41 Seconds
     Ores Mined: 56
     Loads: 2
     Ores/hr: 265
     Responded: 3 Times
     Broken Picks: 0
     Gasses found: 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    All Players False
    Successfully executed

    hmm.. quick one..
    will use again.. lol
    i've got more picks ^^

    edit2:
    hmm
    broke another pick because of gass
    SCAR Code:
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     [SRL4] QuickPowerminer 3.0 by Timothegreat
    ----------------------------------------
     Time Running: 30 Minutes and 36 Seconds
     Ores Mined: 196
     Loads: 7
     Ores/hr: 384
     Responded: 0 Times
     Broken Picks: 0
     Gasses found: 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    your gasschecker seems to be slow

  13. #188
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    no clue why, im using wizzups and masterkills... not mine

    updated to fix a few bugs
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

  14. #189
    Join Date
    Oct 2006
    Posts
    1,211
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey timo, i use wizzups and mk's too and it never misses :S
    It might be because of how often u call it? *Looks through ur script*
    Extinct.

    Formally known as Drags111.

  15. #190
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    i shortened up my wait loop so it might find gas faster now
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

  16. #191
    Join Date
    Oct 2006
    Posts
    491
    Mentioned
    0 Post(s)
    Quoted
    41 Post(s)

    Default

    Hey Do you think you could make this smart compatible? and sometimes i get a runtime error for srl/misc/inventory or something like that..could it be because im not using scar 3.15b? i was just using regular 3.15

    Edit- Neverming Figured Out both questions =) expect a nice proggy soon =P

  17. #192
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Timothegreat View Post
    i shortened up my wait loop so it might find gas faster now
    good, since it did find the gas.. but when my pickaxe was already broken
    i'll try it tomorrow.. since i got no time today
    we go with school abroad and we will be back at midnight

    i'll test it tomorrow+proggy

  18. #193
    Join Date
    Oct 2006
    Posts
    491
    Mentioned
    0 Post(s)
    Quoted
    41 Post(s)

    Default

    Hey Timothegreat, im having a problem..it does a few loads on the first char no problem but after it goes to the next characters all it does is look at stats and then logsout..am i doing something wrong?

  19. #194
    Join Date
    Jun 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default error

    after 2 loads + drop i get Runtime error in inventory.scar ??

    Canvas does not allow drawing in line 250

    ?? :S

  20. #195
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    thats way too vague of a runtime error, i need to know when this occurs...
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

  21. #196
    Join Date
    Nov 2007
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)
    HELP FAST after it mines 28 ores and drop them i get error after ores drop
    ** Warning in InvBox: Incorrect index: 0**
    [Runtime Error] : Exception: Canvas does not allow drawing in line 250 in script D:\Games\Is neto\Runescape\SCAR 3.15\includes\SRL/SRL/Core/Inventory.scar

    HELP

  22. #197
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by loliker123 View Post
    HELP FAST after it mines 28 ores and drop them i get error after ores drop
    ** Warning in InvBox: Incorrect index: 0**
    [Runtime Error] : Exception: Canvas does not allow drawing in line 250 in script D:\Games\Is neto\Runescape\SCAR 3.15\includes\SRL/SRL/Core/Inventory.scar

    HELP
    i have never seen that incorrect index error before... dont know how to help
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

  23. #198
    Join Date
    Mar 2007
    Location
    Alberta, Canada
    Posts
    1,780
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    i get lots o broken picks, and it only mines about 1 load then logs out

  24. #199
    Join Date
    Mar 2007
    Location
    Eugene, Oregon
    Posts
    195
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You should add SMART. It takes like 2 seconds good script though ^^

  25. #200
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by furuchan64 View Post
    You should add SMART. It takes like 2 seconds good script though ^^
    if it takes 2 seconds, each of you can add it...
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

Page 8 of 9 FirstFirst ... 6789 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SRL 4] QuickPowerMiner
    By Timothegreat in forum RS3 Outdated / Broken Scripts
    Replies: 834
    Last Post: 02-19-2009, 03:51 PM
  2. Problem with QuickPowerMiner by Timothegreat
    By ryanhoffman5 in forum OSR Help
    Replies: 8
    Last Post: 05-04-2008, 09:01 PM
  3. QuickPowerMiner Prob.
    By sylvie56 in forum OSR Help
    Replies: 3
    Last Post: 04-09-2008, 09:12 AM
  4. [SRL4#4]Varrock West Oak Chopper!![Srl4#4]
    By [-jesus-] in forum RS3 Outdated / Broken Scripts
    Replies: 12
    Last Post: 01-09-2008, 05:11 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
  •