Page 3 of 4 FirstFirst 1234 LastLast
Results 51 to 75 of 86

Thread: PowerSkills

  1. #51
    Join Date
    Jul 2009
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    alright so i didn't have prerelease, so I finally got that downloaded to my desktop. but im having trouble setting up SRL on the prerelease version of scar cause I keep getting this error:
    Include file C:\Users\Andy\Desktop\scarprerelease\includes\Obje ct.scar does not exist.
    Include file C:\Users\Andy\Desktop\scarprerelease\includes\Skil l.scar does not exist.
    Failed when compiling

    I can't figure out what im doing wrong in the setup

  2. #52
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you need to have saved powerskills.scar, object.scar, and skill.scar in the same folder else the script cannot find its includes.
    “Ignorance, the root and the stem of every evil.”

  3. #53
    Join Date
    Jul 2009
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    __________________________________________________ _____________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Time Running : 3 Hours, 25 Minutes and 57 Seconds |`"|
    |`"| Players Active : 1 out of 1 total |`"|
    |`"| Dropped : 1502 total items |`"|
    |`"| Completed : 58 total loads |`"|
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Player[0]: Active : T; Loads : 58; Caught : 1502 |`"|
    |_________________________________________________ ______________|

    Here's my best proggy so far! Again thanks Blumblebee!
    Last edited by yubinator; 01-23-2010 at 08:31 PM.

  4. #54
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by yubinator View Post
    __________________________________________________ _____________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Time Running : 2 Hours, 8 Minutes and 10 Seconds |`"|
    |`"| Players Active : 1 out of 1 total |`"|
    |`"| Dropped : 962 total items |`"|
    |`"| Completed : 37 total loads |`"|
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Player[0]: Active : T; Loads : 37; Caught : 962 |`"|



    Thanks so much blumblebee! It's still running, but I didn't want to forget to post a proggy, so if I remember, I'll edit this post for a better proggy.
    |_________________________________________________ ______________|
    I'm glad you finally got it working
    “Ignorance, the root and the stem of every evil.”

  5. #55
    Join Date
    Jul 2009
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey I got one suggesting! So during the drop procedure, maybe you could add something where it would accidentally examine the fish instead of dropping every single one perfectly? When I dropped it myself, I examined a few every load so just a suggestion to make it look even more human.

  6. #56
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Quote Originally Posted by yubinator View Post
    Hey I got one suggesting! So during the drop procedure, maybe you could add something where it would accidentally examine the fish instead of dropping every single one perfectly? When I dropped it myself, I examined a few every load so just a suggestion to make it look even more human.
    In your PowerSkills.scar replace your current 'DropItems' function with this one:
    SCAR Code:
    Function DropItems(UpTexts:TstringArray): Integer;
    var i, index, x, y: Integer;
    begin
      WriteLn('Drop Loop Initiated');
      for i := 1 to 28 do
        if ExistsItem(i) then
      begin
        if IntInArr(i, TDropArray) then
        begin
          continue;
        end;
        if Random(6) = 1 then  // this is all
        begin
          MMouseItem(i);
          Wait(RandomRange(100, 250));
          if IsUpTextMultiCustom(UpTexts) then
          begin
            GetMousePos(x, y);
            Mouse(x, y, 3, 3, False);
            WaitOption('xami');
          end;
        end;                       // I added.
        MMouseItem(i);
        wait(200+random(150));
        if IsUpTextMultiCustom(UpTexts) then
        begin
          getMousePos(x, y);
          Mouse(x, y, 0, 0, False);
          wait(150+random(150));
          ChooseOption('Dro');
          wait(150+random(100));
          Inc(Result);
        end else
        begin
          index := i;
          IntToArr(index, TDropArray);
        end;
      end;
      IncEx(Players[CurrentPlayer].Integers[Inv_Count], Result);
      Inc(Players[CurrentPlayer].Integers[Inv_Load]);
      ProgressReport;
    end;
    I added in the Examine item randomly.

    Blumblebee, if you have a problem with this then just let me know and I will take it down.

  7. #57
    Join Date
    Mar 2010
    Location
    New Hampshire, U.S.A
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    __________________________________________________ _____________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Time Running : 1 Hours, 8 Minutes and 9 Seconds |`"|
    |`"| Players Active : 1 out of 1 total |`"|
    |`"| Dropped : 591 total items |`"|
    |`"| Completed : 27 total loads |`"|
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Player[0]: Active : T; Loads : 27; Mined : 591 |`"|
    |_________________________________________________ ______________|

    ==========================

    good script i only tested mining so far.

    it got stuck in the leo gravedigger random event.

    when i reran this morning it logged out again.

    add more random checks maybe? i think the script had missed when leo first talks

  8. #58
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by g0tp0t View Post
    __________________________________________________ _____________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Time Running : 1 Hours, 8 Minutes and 9 Seconds |`"|
    |`"| Players Active : 1 out of 1 total |`"|
    |`"| Dropped : 591 total items |`"|
    |`"| Completed : 27 total loads |`"|
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Player[0]: Active : T; Loads : 27; Mined : 591 |`"|
    |_________________________________________________ ______________|

    ==========================

    good script i only tested mining so far.

    it got stuck in the leo gravedigger random event.

    when i reran this morning it logged out again.

    add more random checks maybe? i think the script had missed when leo first talks
    cool! thanks for the proggy, glad to see this still works.

    I think random checking is frequent enough in the script, I think the error is on SRL's side but I'll look into it to make sure. Thanks for the feedback
    “Ignorance, the root and the stem of every evil.”

  9. #59
    Join Date
    Mar 2010
    Location
    New Hampshire, U.S.A
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    how long will u keep this script updated for... if you have a plan, lol :P

    im making a miner now that i will turn into a hybrid.
    Sell botted goods at mid to high prices!!! Else we lose our profit AND ruin the game!!!!

  10. #60
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by g0tp0t View Post
    how long will u keep this script updated for... if you have a plan, lol :P

    im making a miner now that i will turn into a hybrid.
    I haven't updated in quite some time, it will probably work until a big update comes out I would suppose as colors generally don't change. I kinda go with the flow haha, never a plan
    “Ignorance, the root and the stem of every evil.”

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

    Default

    Quote Originally Posted by g0tp0t View Post
    im making a miner now that i will turn into a hybrid.
    Cool!

  12. #62
    Join Date
    Mar 2009
    Location
    Ontario, Canada
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    __________________________________________________ _____________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Time Running : 1 Hours, 12 Minutes and 29 Seconds |`"|
    |`"| Players Active : 1 out of 1 total |`"|
    |`"| Dropped : 299 total items |`"|
    |`"| Completed : 13 total loads |`"|
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Player[0]: Active : T; Loads : 13; Mined : 299 |`"|
    |_________________________________________________ ______________|

    Ran quite smoothly, the first time i started it went for 5 minutes then got the mime random.

    I didn't see any problems and i think my smart just started to lag or crashed because near the end it wouldn't let me open it up and it was just a grey screen.

    Edit: I only used the miner.

  13. #63
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by fireninga View Post
    __________________________________________________ _____________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Time Running : 1 Hours, 12 Minutes and 29 Seconds |`"|
    |`"| Players Active : 1 out of 1 total |`"|
    |`"| Dropped : 299 total items |`"|
    |`"| Completed : 13 total loads |`"|
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Player[0]: Active : T; Loads : 13; Mined : 299 |`"|
    |_________________________________________________ ______________|

    Ran quite smoothly, the first time i started it went for 5 minutes then got the mime random.

    I didn't see any problems and i think my smart just started to lag or crashed because near the end it wouldn't let me open it up and it was just a grey screen.

    Edit: I only used the miner.
    Thanks, and yeah the grey screen is never fun
    “Ignorance, the root and the stem of every evil.”

  14. #64
    Join Date
    Nov 2006
    Posts
    181
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I've tested the net fishing.
    Works better than others in this forum

    Proggie:

    __________________________________________________ _____________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Time Running : 1 Hours, 16 Minutes and 14 Seconds |`"|
    |`"| Players Active : 1 out of 1 total |`"|
    |`"| Dropped : 107 total items |`"|
    |`"| Completed : 29 total loads |`"|
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Player[0]: Active : T; Loads : 29; Caught : 107 |`"|
    |_________________________________________________ ______________|


    Too bad it doesn't say how many levels you gained.

    Tried a second run, got this error:

    TPA Fishing Spot Allocation = False. Post Error on Thread.
    Found no Fishing spots at Current Location, Moving Area's
    Symbol Length = 6
    Last edited by mysterious123; 03-28-2010 at 04:58 PM.

  15. #65
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks, and I'll try to find a fix. Maybe I'll do some updating in this bad boy.
    “Ignorance, the root and the stem of every evil.”

  16. #66
    Join Date
    Nov 2006
    Posts
    181
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Blumblebee View Post
    thanks, and I'll try to find a fix. Maybe I'll do some updating in this bad boy.
    I'm really looking forward to using this "bad boy".


    New Proggy:

    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Time Running : 5 Hours, 38 Minutes and 15 Seconds |`"|
    |`"| Players Active : 1 out of 1 total |`"|
    |`"| Dropped : 1506 total items |`"|
    |`"| Completed : 56 total loads |`"|
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"` "`"`"`"`"`"`"`|
    |`"| Player[0]: Active : T; Loads : 56; Caught : 1506 |`"|
    |_________________________________________________ ______________|
    Last edited by mysterious123; 03-31-2010 at 04:39 PM.

  17. #67
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Hey Blumblebee

    I have some feedback for you. Here's the proggy:
    PHP Code:
     _______________________________________________________________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |`
    "|     Time Running : 2 Hours, 20 Minutes and 7 Seconds    |`"|
    |`"
    |     Players Active 3 out of 4 total                   |`"|
    |
    `"|     Dropped : 306 total items                           |`"|
    |`
    "|     Completed : 13 total loads                          |`"|
    |`"
    `"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |
    `"|     Player[0]: Active : T; Loads : 5; Caught : 135      |`"|
    |`
    "|     Player[1]: Active : T; Loads : 3; Caught : 81       |`"|
    |`"
    |     Player[2]: Active FLoads 0Caught 0        |`"|
    |
    `"|     Player[3]: Active : T; Loads : 5; Caught : 90       |`"|
    |
    _______________________________________________________________
    I think it either stopped because I lost connection or SMART froze. One of the two. You may want to add in a connection lost failsafe for people like me who have terrible connections. Check out the MSI function in Mainloop.scar if you want. Player 2 was standing beside the fishing spots.

    I noticed the dropping seemed kind of slow. I'm guessing you have some waits for each InvBox loop (or however you do it). I suggest making it shorter because a human could do it way faster in my opinion. From what I saw, everything else worked awesome.

    Oh and your first post says the net is untested, well now it is, and it works.

    Good job, I'm going to do another run tonight and see how it goes. I've attached the debug box as I got this message when I tried to put it in code tags.
    Code:
    The text that you have entered is too long (103978 characters). Please shorten it to 100000 characters long.

  18. #68
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Coh3n View Post
    Hey Blumblebee

    I have some feedback for you. Here's the proggy:
    PHP Code:
     _______________________________________________________________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |`
    "|     Time Running : 2 Hours, 20 Minutes and 7 Seconds    |`"|
    |`"
    |     Players Active 3 out of 4 total                   |`"|
    |
    `"|     Dropped : 306 total items                           |`"|
    |`
    "|     Completed : 13 total loads                          |`"|
    |`"
    `"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |
    `"|     Player[0]: Active : T; Loads : 5; Caught : 135      |`"|
    |`
    "|     Player[1]: Active : T; Loads : 3; Caught : 81       |`"|
    |`"
    |     Player[2]: Active FLoads 0Caught 0        |`"|
    |
    `"|     Player[3]: Active : T; Loads : 5; Caught : 90       |`"|
    |
    _______________________________________________________________
    I think it either stopped because I lost connection or SMART froze. One of the two. You may want to add in a connection lost failsafe for people like me who have terrible connections. Check out the MSI function in Mainloop.scar if you want. Player 2 was standing beside the fishing spots.

    I noticed the dropping seemed kind of slow. I'm guessing you have some waits for each InvBox loop (or however you do it). I suggest making it shorter because a human could do it way faster in my opinion. From what I saw, everything else worked awesome.

    Oh and your first post says the net is untested, well now it is, and it works.

    Good job, I'm going to do another run tonight and see how it goes. I've attached the debug box as I got this message when I tried to put it in code tags.
    Code:
    The text that you have entered is too long (103978 characters). Please shorten it to 100000 characters long.
    thanks! i haven't touched the dropping since my 3rd version of my powerminer haha, i will defiantly change that thanks i appreciate you testing my script
    “Ignorance, the root and the stem of every evil.”

  19. #69
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Blumblebee View Post
    thanks! i haven't touched the dropping since my 3rd version of my powerminer haha, i will defiantly change that thanks i appreciate you testing my script
    No problem. I have those MSI accounts left over, so I figured I'd test some scripts out for people.

    Here's a much better run:
    PHP Code:
     _______________________________________________________________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |`
    "|     Time Running : 6 Hours, 57 Minutes and 43 Seconds   |`"|
    |`"
    |     Players Active 4 out of 4 total                   |`"|
    |
    `"|     Dropped : 1377 total items                          |`"|
    |`
    "|     Completed : 51 total loads                          |`"|
    |`"
    `"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |
    `"|     Player[0]: Active : T; Loads : 15; Caught : 405     |`"|
    |`
    "|     Player[1]: Active : T; Loads : 15; Caught : 405     |`"|
    |`"
    |     Player[2]: Active TLoads 15Caught 405     |`"|
    |
    `"|     Player[3]: Active : T; Loads : 6; Caught : 162      |`"|
    |
    _______________________________________________________________
    Stopped because it said all the players were inactive? I wouldn't be surprised if I just lost connection again, multiple times. Lol. Three of four accounts where standing by the fishing slots, and the remaining was in the Mordaut random.

    Again, I don't know if you want it, but I've attached the debug.

    I'll probably use this until I can test out your Edgeville fisher.

    E: Soo close to 1337 fish.
    Last edited by Coh3n; 04-07-2010 at 01:59 PM.

  20. #70
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i'd stay away from my edge fisher atm. it's not too hot haha, i haven't got around to fixing it in a while, but i'll get on it i suppose thanks again for testing.
    “Ignorance, the root and the stem of every evil.”

  21. #71
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Blumblebee View Post
    i'd stay away from my edge fisher atm. it's not too hot haha, i haven't got around to fixing it in a while, but i'll get on it i suppose thanks again for testing.
    Lol alright thanks for the head up. Here's a good proggy so far; still running.
    PHP Code:
     _______________________________________________________________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |`
    "|     Time Running : 5 Hours, 19 Minutes and 30 Seconds   |`"|
    |`"
    |     Players Active 4 out of 4 total                   |`"|
    |
    `"|     Dropped : 1375 total items                          |`"|
    |`
    "|     Completed : 53 total loads                          |`"|
    |`"
    `"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |
    `"|     Player[0]: Active : T; Loads : 15; Caught : 390     |`"|
    |`
    "|     Player[1]: Active : T; Loads : 15; Caught : 389     |`"|
    |`"
    |     Player[2]: Active TLoads 13Caught 337     |`"|
    |
    `"|     Player[3]: Active : T; Loads : 10; Caught : 259     |`"|
    |
    _______________________________________________________________
    Some suggestions/things I've noticed:
    • sometimes doesn't drop all the fish. I've seen it leave 2 or 3 from time to time
    • have it switch players after a certain amount of loads +/- a random 2 or 3
    • it sometimes takes a long time to realize it's not fishing, I don't know your isFishing method, but you could try a pixelShift as a failsafe or something


    I know you're busy with volleyball and such, so you may not be able to update for a while, but it's just some things to think about.

  22. #72
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Coh3n View Post
    Lol alright thanks for the head up. Here's a good proggy so far; still running.
    PHP Code:
     _______________________________________________________________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |`
    "|     Time Running : 5 Hours, 19 Minutes and 30 Seconds   |`"|
    |`"
    |     Players Active 4 out of 4 total                   |`"|
    |
    `"|     Dropped : 1375 total items                          |`"|
    |`
    "|     Completed : 53 total loads                          |`"|
    |`"
    `"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |
    `"|     Player[0]: Active : T; Loads : 15; Caught : 390     |`"|
    |`
    "|     Player[1]: Active : T; Loads : 15; Caught : 389     |`"|
    |`"
    |     Player[2]: Active TLoads 13Caught 337     |`"|
    |
    `"|     Player[3]: Active : T; Loads : 10; Caught : 259     |`"|
    |
    _______________________________________________________________
    Some suggestions/things I've noticed:
    • sometimes doesn't drop all the fish. I've seen it leave 2 or 3 from time to time
    • have it switch players after a certain amount of loads +/- a random 2 or 3
    • it sometimes takes a long time to realize it's not fishing, I don't know your isFishing method, but you could try a pixelShift as a failsafe or something


    I know you're busy with volleyball and such, so you may not be able to update for a while, but it's just some things to think about.
    thanks i'll work on fixing those. Um, net fishing (if thats wht your doing) has that effect...It gets mixed up sometimes. Longest wait though should max out at 20 seconds i think. I'll look into optimizing it. And I'm not a big fan of pixelshift for some reason, not well versed in it I suppose.

    and i have 10 days off volleyball kuz of the stitches
    “Ignorance, the root and the stem of every evil.”

  23. #73
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Blumblebee View Post
    thanks i'll work on fixing those. Um, net fishing (if thats wht your doing) has that effect...It gets mixed up sometimes. Longest wait though should max out at 20 seconds i think. I'll look into optimizing it. And I'm not a big fan of pixelshift for some reason, not well versed in it I suppose.

    and i have 10 days off volleyball kuz of the stitches
    Ah, I guess you could look at that as good or bad. And I've never used pixelShift myself so I have no idea if it would work right or not.

    I also noticed using nets behaved weird. :s

  24. #74
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Coh3n View Post
    Ah, I guess you could look at that as good or bad. And I've never used pixelShift myself so I have no idea if it would work right or not.

    I also noticed using nets behaved weird. :s
    mhmm, the pixelbox function wasn't really made for net fishing because the player moves so much. I'll mess around with it a bit and go from there
    “Ignorance, the root and the stem of every evil.”

  25. #75
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by Blumblebee View Post
    mhmm, the pixelbox function wasn't really made for net fishing because the player moves so much. I'll mess around with it a bit and go from there
    Good luck

    Here's a really good one. I stopped in manually.
    PHP Code:
     _______________________________________________________________
    |`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |`
    "|     Time Running : 11 Hours, 12 Minutes and 18 Seconds  |`"|
    |`"
    |     Players Active 4 out of 4 total                   |`"|
    |
    `"|     Dropped : 3080 total items                          |`"|
    |`
    "|     Completed : 122 total loads                         |`"|
    |`"
    `"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`"`|
    |
    `"|     Player[0]: Active : T; Loads : 35; Caught : 885     |`"|
    |`
    "|     Player[1]: Active : T; Loads : 29; Caught : 733     |`"|
    |`"
    |     Player[2]: Active TLoads 28Caught 708     |`"|
    |
    `"|     Player[3]: Active : T; Loads : 30; Caught : 754     |`"|
    |
    _______________________________________________________________
    A couple accounts solved randoms as they still had random event reward boxes in their inventory. Maybe add SRL's randoms report? Just one line to add, and it's pretty cool. I recently added it to my script.

    One of the randoms was Sandwich lady, and the player had a sandwich in it's inventory. Maybe add a "DropAll" option to drop everything except the fishing equipment. Just a thought.

    Anyway, that was an awesome run. It has gotten all four characters to 35+ fishing.

Page 3 of 4 FirstFirst 1234 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
  •