Page 13 of 30 FirstFirst ... 3111213141523 ... LastLast
Results 301 to 325 of 735

Thread: TotalGnomes[Advanced Course][50K+ Exp/Hr]

  1. #301
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

  2. #302
    Join Date
    Dec 2011
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Code:
    /////////////TotalGnomes V1.8/////////////
    Laps Completed: 331(81 Laps/Hour)
    Thats 44 seconds per lap!
    Exp gained: 240735 exp(59436 Exp/Hour)
    Failsafes used: 1
    Running for: 04:03:01
    /////////////////////////////////////////
    Would've run for 6 hours, but I restarted it after 2 hours to talk to the talent scout. Definitely maxes out at just over 59kxp/hr with 89+ agility. Very awesome script!

  3. #303
    Join Date
    Mar 2012
    Posts
    85
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Flawless, nothing more to say. Good job with the script

    http://i50.tinypic.com/2ecniv8.jpg

  4. #304
    Join Date
    May 2012
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    Awesome script; thanks!

  5. #305
    Join Date
    May 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Mine doesn't seem to be able to find the barrier...

  6. #306
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    Every time? If so you probably have the wrong graphics settings or something.

  7. #307
    Join Date
    Nov 2011
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So I was just using this script a few hours ago and it was working flawlessly, but now every time it crosses the first log it just keeps rotating the camera angle and cannot find the canopy. I'm not sure what happened because literally 3 hours ago it was working fine, but I just can't get it to work as I have been trying for over 2 hours now. Any help would be appreciated. Thanks

  8. #308
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    I would have to teamview you to find the problem specifically, but in general that happens because of the exp counter thing I think.

  9. #309
    Join Date
    Mar 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by boris View Post
    So I was just using this script a few hours ago and it was working flawlessly, but now every time it crosses the first log it just keeps rotating the camera angle and cannot find the canopy. I'm not sure what happened because literally 3 hours ago it was working fine, but I just can't get it to work as I have been trying for over 2 hours now. Any help would be appreciated. Thanks
    have the same problem as this guy, can u help me please?

  10. #310
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    Do you have teamviewer? Maybe they changed the colors around in the area.

  11. #311
    Join Date
    Mar 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by TotalKillz View Post
    Do you have teamviewer? Maybe they changed the colors around in the area.
    yes i do

  12. #312
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    Alright so I teamviewed Sum and there appears to be something wrong with the MakeCompass procedure that is included in SRL. I thought it was only on his side at first, but I went and tried it on my computer and it happened for me. I will need to find a work around to make the compass south but I have finals tomorrow so I'll do it ASAP.

    Also, is this effecting everyone or just some people? Kinda weird...maybe it had to do with an SRL update.

    Found out the problem, it has to do with the rs_GetCompassAngleRadians procedure in the SRL include. The color changed so you just need to update it. Just replace the whole procedure with this if you know what you are doing:
    Simba Code:
    Function rs_GetCompassAngleRadians: Extended;
    var
      TPA: TPointArray;
      T, M: TPoint;
      B: TBox;
    begin
      B := IntToBox(529, 9, 557, 39);
      with B do
        FindColorsSpiralTolerance(T.x, T.y, TPA, 65536, x1, y1, x2, y2, 0);
      if Length(TPA) < 1 then
       Exit;
      M := MiddleBox(B);
      T := MiddleTPA(TPA);
      Result := ArcTan2(-(T.Y - M.Y), T.X - M.X+0.5) + Radians(90);
      Result := fixRad(Result - Pi);
    end;

    If you don't know what to do you can either wait for SRL to update or I'll make a mini guide tomorrow or something. Going to sleep for now though.
    Last edited by Total; 05-08-2012 at 06:53 AM.

  13. #313
    Join Date
    Apr 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Great :D

    You should get people to annouce their 99's via your bot

    Atleast i'll give you my sincerly thanks for a great bot and for "giving me" 99 agi!

  14. #314
    Join Date
    Aug 2009
    Location
    Albuquerque, New Mexico
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by TotalKillz View Post
    Alright so I teamviewed Sum and there appears to be something wrong with the MakeCompass procedure that is included in SRL. I thought it was only on his side at first, but I went and tried it on my computer and it happened for me. I will need to find a work around to make the compass south but I have finals tomorrow so I'll do it ASAP.

    Also, is this effecting everyone or just some people? Kinda weird...maybe it had to do with an SRL update.

    Found out the problem, it has to do with the rs_GetCompassAngleRadians procedure in the SRL include. The color changed so you just need to update it. Just replace the whole procedure with this if you know what you are doing:
    Simba Code:
    Function rs_GetCompassAngleRadians: Extended;
    var
      TPA: TPointArray;
      T, M: TPoint;
      B: TBox;
    begin
      B := IntToBox(529, 9, 557, 39);
      with B do
        FindColorsSpiralTolerance(T.x, T.y, TPA, 65536, x1, y1, x2, y2, 0);
      if Length(TPA) < 1 then
       Exit;
      M := MiddleBox(B);
      T := MiddleTPA(TPA);
      Result := ArcTan2(-(T.Y - M.Y), T.X - M.X+0.5) + Radians(90);
      Result := fixRad(Result - Pi);
    end;

    If you don't know what to do you can either wait for SRL to update or I'll make a mini guide tomorrow or something. Going to sleep for now though.
    It was happening to me as well. But take your time matey, don't rush yourself.
    Ku Ku Ca Chu!

  15. #315
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    Nah its not a problem, really simple fix. If you are having the error I put up a mini guide on the front page now so try that and it should start working again.

    The next SRL update should fix this also, so you could wait but not sure when its updating.
    Last edited by Total; 05-08-2012 at 03:50 PM.

  16. #316
    Join Date
    Apr 2012
    Location
    Belgium
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It's never detecting it already went over the first log .

  17. #317
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    If its spinning the camera around while crossing the log look at the front page and do that.

  18. #318
    Join Date
    Apr 2012
    Location
    Belgium
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I know lol, it's not that. It's just not detecting it crossed

  19. #319
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    Do you have any exp counter set to agility or overall?

  20. #320
    Join Date
    Apr 2012
    Location
    Belgium
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    one to agi , one to overall , one to herb.
    Fixed : You might want to edit your setup that it needs to be the first counter that needs to be agi or overall :P
    Thanks anyways
    Last edited by Era Xz; 05-08-2012 at 04:16 PM.

  21. #321
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    Well it should be detecting it then, because it basically waits until you either gain exp or if it hits 7 seconds it will failsafe. Have you tried restarting your SMART and stuff? Might be buggy.

    E: Oh, didn't know that. I thought it added all 3 together. Good to know.

  22. #322
    Join Date
    Apr 2012
    Location
    Belgium
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hhmm ye restarted twice. You sure it doesn't matter if it is the first one or not?

  23. #323
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    You are right, it just takes the exp from the first counter only. The procedure is called GetXPBarTotal so I thought it added them all together but it just gets the first one.

  24. #324
    Join Date
    Apr 2012
    Location
    Belgium
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hehe, both learned something I guess .
    Script runs nice! Added some summer pie eating tho :P

  25. #325
    Join Date
    Feb 2011
    Location
    Vancouver Island
    Posts
    85
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Great script! runs perfect for me, and i got a POS computer.
    Also thanks for telling me how to fixing that net issue,
    Gl with later scripts.

Page 13 of 30 FirstFirst ... 3111213141523 ... LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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