JavaScript Lazy Professions menu

Shout-Out

User Tag List

Page 8 of 14 FirstFirst ... 456789101112 ... LastLast
Results 106 to 120 of 207
  1. #106
    sdowned's Avatar Member
    Reputation
    2
    Join Date
    May 2013
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm not sure if this has anything to do with the script, but I started doing other professions in addition to leadership and now I don't see the leadership profressions "explore local area" and "protect lcoal caravan". I used to be that I could do 3 instances of each at a time. Now they don't show up, so I end up with unused slots.. I think I'll go back to just doing leadership for a while until I have time to look into this.

    JavaScript Lazy Professions
  2. #107
    llammahed's Avatar Member
    Reputation
    13
    Join Date
    May 2013
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've tried this several ways but it just keeps going back to overview instead of starting the task.

    start: function() {
    $('.footer-body.with-sidebar .input-field button:contains(' + _private.locale.start + task')').trigger('click');
    _private.busy = false;

    I expect this might have something to do with it but I'm not sure. I checked the divs and the button is within "input-field button epic" div which is inside "footer-body with-sidebar" div. There's another div called "input-field button" which doesn't actually contain the button but is also within the "footer-body with-sidebar" div. Screenshot! imgur: the simple image sharer

    I just keep getting a loop around here. I know some jquery but not enough about the website to be floating on cloud 9 in debugatopia.

  3. #108
    JustTheDoctor's Avatar Sergeant
    Reputation
    11
    Join Date
    May 2013
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by llammahed View Post
    I've tried this several ways but it just keeps going back to overview instead of starting the task.
    As far as i have been able to debug this, there are two one problems that can cause this. First is ofc the locale on Start Task, remember to update it. Secondly, the script seems unable to handle multiple open slots, so try setting the first wave of task yourself before running the script

  4. #109
    bja666's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I had a play with it, got it going for me:

    [JavaScript] neverwinter lazy professions fix 1 - Pastebin.com

    you might want to reconfigure it if you want to do something other than leadership or use optional assets...

    changes:
    added a bunch of debug crap to the console to figure out what was going on.
    stopped it trying to start multiple jobs at once before the first had started.
    sorted the assets in order of goodness (use best first)

  5. #110
    llammahed's Avatar Member
    Reputation
    13
    Join Date
    May 2013
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JustTheDoctor View Post
    As far as i have been able to debug this, there are two one problems that can cause this. First is ofc the locale on Start Task, remember to update it. Secondly, the script seems unable to handle multiple open slots, so try setting the first wave of task yourself before running the script
    That appeared to work since I had 4 slots open. I filled the first three slots and let it do the rest. Assuming it will continue to fill the slot after a single task is complete, there shouldn't be a problem. Thanks to you and thanks to OP for the code. We'll see how this runs all day

  6. #111
    sdowned's Avatar Member
    Reputation
    2
    Join Date
    May 2013
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bja666 View Post
    I had a play with it, got it going for me:

    [JavaScript] neverwinter lazy professions fix 1 - Pastebin.com

    you might want to reconfigure it if you want to do something other than leadership or use optional assets...

    changes:
    added a bunch of debug crap to the console to figure out what was going on.
    stopped it trying to start multiple jobs at once before the first had started.
    sorted the assets in order of goodness (use best first)
    Thanks but as you said that change will not work for doing multiple professions.
    I changed line 74-75 of the OPs code to be the following.

    slots.filter(':not(.task-slot-progress):not(.task-slot-locked)').each(function(index) {
    if (index != 0)
    return;

    var slot = $(this);
    It seems to be working for multiple professions, but I haven't ran it for a long time yet. I still think there is another bug but at least it seems ot be auto correcting itself for now.

  7. #112
    llammahed's Avatar Member
    Reputation
    13
    Join Date
    May 2013
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    God! The memory leakage on Gateway! Crashed my computer of 8GB of ram only running Chrome and Chrome-Incognito (2 windows with Gateway).
    I'm at work so I can't start up the PC from here. I've only been running it about 8 hours too.

  8. #113
    sdowned's Avatar Member
    Reputation
    2
    Join Date
    May 2013
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sdowned View Post
    Thanks but as you said that change will not work for doing multiple professions.
    I changed line 74-75 of the OPs code to be the following.



    It seems to be working for multiple professions, but I haven't ran it for a long time yet. I still think there is another bug but at least it seems ot be auto correcting itself for now.
    This did not work long term for me. I am making some other changes but I've redesigned a lot of the code so it would be too confusing and not ready to post it.

  9. #114
    llammahed's Avatar Member
    Reputation
    13
    Join Date
    May 2013
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sdowned View Post
    This did not work long term for me. I am making some other changes but I've redesigned a lot of the code so it would be too confusing and not ready to post it.
    I'm so excited. I'm off work so you, you can post it now.

  10. #115
    Digitalxero's Avatar Member
    Reputation
    15
    Join Date
    May 2013
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just fixed a major logic flaw that caused issues when you had multiple available slots. Issue was not that noticeable with only 2, but now that I have 3 I see it alot and was able to track down what was going on.

    [JavaScript] Neverwinter Javascript Lazy Professions - Pastebin.com

  11. #116
    refix7's Avatar Member
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Digitalxero View Post
    Just fixed a major logic flaw that caused issues when you had multiple available slots. Issue was not that noticeable with only 2, but now that I have 3 I see it alot and was able to track down what was going on.

    [JavaScript] Neverwinter Javascript Lazy Professions - Pastebin.com
    thanks, will try this out!

  12. #117
    Digitalxero's Avatar Member
    Reputation
    15
    Join Date
    May 2013
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by llammahed View Post
    I've tried this several ways but it just keeps going back to overview instead of starting the task.

    start: function() {
    $('.footer-body.with-sidebar .input-field button:contains(' + _private.locale.start + ')').trigger('click');
    _private.busy = false;
    The :contains() filter makes sure the correct of the two buttons are selected as long as you have set _private.locale.start to your correct language

  13. #118
    llammahed's Avatar Member
    Reputation
    13
    Join Date
    May 2013
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Digitalxero View Post
    Just fixed a major logic flaw that caused issues when you had multiple available slots. Issue was not that noticeable with only 2, but now that I have 3 I see it alot and was able to track down what was going on.

    [JavaScript] Neverwinter Javascript Lazy Professions - Pastebin.com
    Repped and will try overnight on multiple browsers. Thanks again for all your hard work.
    Here's my pastebin with your new code and ONLY leadership with the biggest XP rewards regarding mercenaries only. It will choose a guard if none available if i'm correct:
    Lazy Professions JavaScript Leadership Only - Pastebin.com

  14. #119
    pmfun's Avatar Corporal
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Digitalxero View Post
    Just fixed a major logic flaw that caused issues when you had multiple available slots. Issue was not that noticeable with only 2, but now that I have 3 I see it alot and was able to track down what was going on.
    Actually you don't need to add this check in function check_status():

    if(_private.busy) {
    //Stop looking at slots while we are busy DUH!!
    return;
    }
    Instead of that just edit these two lines:

    if(_private.busy && _private.busy !== 'reward') {
    and

    if(_private.busy && _private.busy !== 'job') {
    change them to simply:

    if(_private.busy) {
    you don't need checks if it's a reward collection or a new job assignment. Also seems you've read my previous post because you commented the line:

    //_private.timers.filler = setTimeout(_private.time_fillter, (20000 + (Math.random() * 5000)));
    which was completely useless. In next patch you can even remove the entire function time_fillter()

  15. #120
    ilegend's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i get this error any idea?
    [9:13:50 AM] Found an empty profession in slot 4 lets start it.
    [9:14:21 AM] Could not select a required item or start the profession: Leatherworking_Tier1_Recruit_Apprentice
    [9:14:33 AM] Found an empty profession in slot 4 lets start it.
    [9:15:05 AM] Could not select a required item or start the profession: Leatherworking_Tier1_Recruit_Apprentice
    [9:15:22 AM] Found an empty profession in slot 4 lets start it.
    [9:15:52 AM] Could not select a required item or start the profession: Leatherworking_Tier1_Recruit_Apprentice
    [9:16:17 AM] Found an empty profession in slot 4 lets start it.

Page 8 of 14 FirstFirst ... 456789101112 ... LastLast

Similar Threads

  1. [Release] Lazy professions - level the professions afk!
    By Arutha532 in forum Neverwinter Bots and Programs
    Replies: 128
    Last Post: 06-27-2013, 05:53 AM
  2. JavaScript Lazy Professions
    By Digitalxero in forum Neverwinter
    Replies: 95
    Last Post: 05-27-2013, 01:06 PM
  3. Replies: 106
    Last Post: 05-26-2013, 01:41 AM
  4. [Selling] Hand Farmed Gathering Professions! [Be Lazy, Get Legit Material With No Risk Of Ban]
    By JayPaul in forum World of Warcraft Buy Sell Trade
    Replies: 2
    Last Post: 07-14-2012, 02:53 PM
  5. AQ40 Disconnect lazy players
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 05-02-2006, 01:13 PM
All times are GMT -5. The time now is 08:02 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search