Page 11 of 15 FirstFirst ... 910111213 ... LastLast
Results 251 to 275 of 353

Thread: W100S-EM W100 Shantay Bonfires

  1. #251
    Join Date
    Mar 2012
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    yeah they changed look needs update

  2. #252
    Join Date
    Nov 2011
    Posts
    1,532
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Replace the function AddingScreen with the following code. I am leaving for my flight in a few hours, and this quickfix is made up in literally 5 minutes, so help each other if there are more updates/problems in the next 2 weeks or so.

    Simba Code:
    function AddingScreen :Boolean;
    var x, y: integer;
    begin
    //  Result := CountColorTolerance(4543066, 17, 355, 484, 456, 2) > 2000;
      Result := FindTextTPAEx(2070783, 0, MCX1, MCY1, MCX2, MCY2, X, Y, 'onfire', StatChars, Nothing);
      if result then writeln('Found add logs');
    end;

    In case you're wondering why I won't be around, read this

    Good luck and help yourselves
    Current activity: Recovering from vacation
    - Nulla pars vitae vacare officio potest -
    SRL membership? Can I buy that?
    Scripts - AGS - SWF - WAR - EMS - W100S-EM
    If you need scripting help, you can pm me. Remember, if you need help you have to ask for it properly though

  3. #253
    Join Date
    Mar 2012
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Er1k View Post
    Replace the function AddingScreen with the following code. I am leaving for my flight in a few hours, and this quickfix is made up in literally 5 minutes, so help each other if there are more updates/problems in the next 2 weeks or so.

    Simba Code:
    function AddingScreen :Boolean;
    var x, y: integer;
    begin
    //  Result := CountColorTolerance(4543066, 17, 355, 484, 456, 2) > 2000;
      Result := FindTextTPAEx(2070783, 0, MCX1, MCY1, MCX2, MCY2, X, Y, 'onfire', StatChars, Nothing);
      if result then writeln('Found add logs');
    end;

    In case you're wondering why I won't be around, read this

    Good luck and help yourselves
    thank you, it worked have fun on your vaction. XD

  4. #254
    Join Date
    Mar 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks worked

    Enjoy your vacation

  5. #255
    Join Date
    Jan 2012
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wow, that was a pretty fast fix on the new update ty very much!
    enjoy the vacation

  6. #256
    Join Date
    May 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Why does it just sit there ? :[

  7. #257
    Join Date
    May 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ugh thank you for the code lol. I was getting so frustrated trying to figure out what was going on.

  8. #258
    Join Date
    Jun 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Whenever I run this script, it just clicks my logs over and over and fails to click add to bonfire? It just repeats 'current action is burn' constantly. what do I do?

  9. #259
    Join Date
    Dec 2011
    Location
    India
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by bryanfish View Post
    Whenever I run this script, it just clicks my logs over and over and fails to click add to bonfire? It just repeats 'current action is burn' constantly. what do I do?
    See the above post , fix has been posted

  10. #260
    Join Date
    Apr 2012
    Location
    Australia
    Posts
    1,252
    Mentioned
    1 Post(s)
    Quoted
    22 Post(s)

    Default

    Quote Originally Posted by bryanfish View Post
    Whenever I run this script, it just clicks my logs over and over and fails to click add to bonfire? It just repeats 'current action is burn' constantly. what do I do?
    Quote Originally Posted by CEO
    Why does it just sit there ? :[
    Read the above post by Er1k. He is currently away but has posted a simple fix for his script to remain compatible with the new chat screen update.

    Scroll through the script and find the function 'AddingScreen' select all of it and remove it. Then replace it with this code below provided by Er1k and it will work as it used to.
    Simba Code:
    function AddingScreen :Boolean;
    var x, y: integer;
    begin
    //  Result := CountColorTolerance(4543066, 17, 355, 484, 456, 2) > 2000;
      Result := FindTextTPAEx(2070783, 0, MCX1, MCY1, MCX2, MCY2, X, Y, 'onfire', StatChars, Nothing);
      if result then writeln('Found add logs');
    end;

  11. #261
    Join Date
    Mar 2012
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    How do i disable the firespirits?

  12. #262
    Join Date
    Nov 2011
    Location
    MA
    Posts
    545
    Mentioned
    3 Post(s)
    Quoted
    10 Post(s)

    Default

    Been using this script for a few hours and overall it's a nice script, but I noticed a small issue with the spirits that could appear very bot-like.

    Here's my fix:
    Simba Code:
    for a := 0 to High(ATPA) do
      begin
        MP := MiddleTPA(ATPA[a]);
        {$IFDEF SMART}
        SMART_DrawDotsEx(false, ATPA[a], clYellow);
        {$ENDIF}
        if not FindBlackChatMessage('ppear') then         //added
          Mouse(MP.X, MP.Y, 2, 2, mouse_move);
        if WaitUpText('spiri', 500) then  //using Uptext detection instead of just right-click
        begin
          ClickMouse2(mouse_right);
    //      Mouse(MP.X, MP.Y, 2, 2, mouse_Right);
          if WaitOption('ollect', 3000) then
          begin
            WaitFunc(@RewardsCollected, 10, 3000);
            writeln('Collect rewards');
            writeln('Back to BonBon');
            Result := True;
            {$IFDEF SMART}
            SMART_ClearCanvas;
            {$ENDIF}
            Break;
          end;
        end;
        {$IFDEF SMART}
        SMART_ClearCanvas;
        {$ENDIF}
      end;

    Previously the script would move the mouse to many familiars even after the rewards were collected.

    I'll keep you posted on my progress towards 25M experience

  13. #263
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    1,199
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    tehq, I added that and am going to test it.

  14. #264
    Join Date
    Nov 2011
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    great script and thanks for taking it over erik. 99 because of you!!

  15. #265
    Join Date
    May 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    not working anymore?

  16. #266
    Join Date
    Dec 2011
    Location
    India
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Powerbee View Post
    not working anymore?

    Its working





    ....................................

  17. #267
    Join Date
    Jul 2007
    Location
    Melbourne, Victoria, Australia.
    Posts
    665
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Quote Originally Posted by Powerbee View Post
    not working anymore?
    Find this in the script " function AddingScreen "

    and replace it with this:
    Simba Code:
    function AddingScreen :Boolean;
    var x, y: integer;
    begin
    //  Result := CountColorTolerance(4543066, 17, 355, 484, 456, 2) > 2000;
      Result := FindTextTPAEx(2070783, 0, MCX1, MCY1, MCX2, MCY2, X, Y, 'onfire', StatChars, Nothing);
      if result then writeln('Found add logs');
    end;
    Last known as Jonno.

  18. #268
    Join Date
    Jun 2012
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Absolutely wonderful script! Thanks for the fix for the updated AddingScreen.

  19. #269
    Join Date
    Jan 2012
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    the script wont seem to run for me, i log in manually to get to w100 and then nothing happens, it just sits there.

  20. #270
    Join Date
    Jun 2012
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by kllj View Post
    the script wont seem to run for me, i log in manually to get to w100 and then nothing happens, it just sits there.
    Is SMART enabled? Have you edited the script to use the new AddingScreen code? Are your graphics settings set to minimum and fixed? That's all I can think of at the moment...

  21. #271
    Join Date
    Jan 2012
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    yeah i fixed all of that

  22. #272
    Join Date
    Jun 2012
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey im havin a problem. It logs me in all good and everything, banks, gets logs out clicks on them but wont burn them. Anyone else having this problem?

  23. #273
    Join Date
    Jun 2012
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by yolofish View Post
    hey im havin a problem. It logs me in all good and everything, banks, gets logs out clicks on them but wont burn them. Anyone else having this problem?
    Replace function AddingScreen with this:
    Simba Code:
    function AddingScreen :Boolean;
    var x, y: integer;
    begin
    //  Result := CountColorTolerance(4543066, 17, 355, 484, 456, 2) > 2000;
      Result := FindTextTPAEx(2070783, 0, MCX1, MCY1, MCX2, MCY2, X, Y, 'onfire', StatChars, Nothing);
      if result then writeln('Found add logs');
    end;

    Thanks to the above posters for fixing this.

  24. #274
    Join Date
    Mar 2012
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I know this is not a problem with the script, but as I just found out its very easy to have people suspicious of you. Some guy just lit a bunch of fires here at the chest and they all seem to be reporting the random people spread out alone at a single fire, including myself.

  25. #275
    Join Date
    Mar 2012
    Posts
    66
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Logs / Hour : 839
    Logs Done : 588
    Fire Spirit : 8
    EXP Gained : 109530
    EXP / Hour : 156285
    Running for : 42 Minutes and 2 Seconds
    -------------------------------------------------------
    Maples,
    EPIC

Page 11 of 15 FirstFirst ... 910111213 ... 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
  •