JavaScript Lazy Professions menu

User Tag List

Page 5 of 14 FirstFirst 123456789 ... LastLast
Results 61 to 75 of 207
  1. #61
    eddix's Avatar Member
    Reputation
    2
    Join Date
    Feb 2013
    Posts
    28
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Alyusha View Post
    I don't see why you couldn't log in with chrome and just open up extra tabs and do it at the same time seeing how each tab is suppose to act like its own browser (not sure about it but that is what Chrome brags about).
    The website will only allow one connection per account. If I open a new tab and log in, my old tab gets disconnected.

    JavaScript Lazy Professions
  2. #62
    tarcinli's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    TODO: leatherworking
    Uncaught ReferenceError: task_page is not defined

    was working fine now it breaks

  3. #63
    Kemmler's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by eddix View Post
    The website will only allow one connection per account. If I open a new tab and log in, my old tab gets disconnected.
    Do it from different browsers. Use firefox/IE/Chrome/Opera. I can easily have all 4 of those going at once.

  4. #64
    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)
    Still getting an error after a random amount of cycles, it normally works but some times I get: Uncaught TypeError: Cannot read property 'length' of undefined

    and then it stops doing anything. This is what I've changed the code to: Pastebin

    Is there a way to make it automatically reset after I get this error?
    Last edited by refix7; 05-25-2013 at 03:07 AM.

  5. #65
    TZero's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Before now I had Leadership as my 'highest' profession, both it and Platesmithing were level6. Since posting yesterday I have manually leveled Platesmithing to level7 (so it is now first on the list.

    Yesterday if the script was running and I clicked Platesmithing it would return to Overview. Now it still does nothing from Overview but, if I click Platesmithing myself it will correctly select the Gather Iron Ore and select the Miner resource and 'Start Task' for me.

    Short version, it seems that the problem exists whilst the script is trying to select Platesmithing.

  6. #66
    TZero's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wild guessing here so forgive the effort....

    'Choose Task' always opens Leadership profession for me.
    Platesmithing is the profession name but, the url for the platesmithing task list actually says 'Armorsmithing_Heavy' (mail is armorsmithing_Med)

    Whether either or both of those facts makes any difference to why the script is failing i don't know ?

  7. #67
    neF4ST's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Sep 2010
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Already said that earlier:

    mailsmithing: '.professions-Armorsmithing_Med:visible',
    platesmithing: '.professions-Armorsmithing_Heavy:visible',

  8. #68
    TZero's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks , I had missed that and wasn't sure if to edit the bit you said or the task name. Now I do

  9. #69
    TZero's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OK, that works (sort of).

    The script now tries to access Platesmithing task list all the time, regardless of if there is a spare task slot available.

    Any ideas ?

  10. #70
    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 TZero View Post
    OK, that works (sort of).

    The script now tries to access Platesmithing task list all the time, regardless of if there is a spare task slot available.

    Any ideas ?
    It uses the list of tasks you have in _private.professions.to_do to also keep your session active (eg logged in) while it it waits for tasks to finish. So if you only have one profession in the list yes it will just switch between it and the overview tab while it is waiting for tasks to finish

  11. #71
    iso2k4's Avatar Member
    Reputation
    2
    Join Date
    Nov 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    line 172: _private.jobs.find_doable_job(to_do, task_page);

    find_doable_job accepts one parameter. change to

    _private.jobs.find_doable_job(to_do);

    works for me.
    Last edited by iso2k4; 05-25-2013 at 09:36 AM.

  12. #72
    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 iso2k4 View Post
    line 172: _private.jobs.find_doable_job(to_do, task_page);

    find_doable_job accepts one parameter.
    Nice catch and fixed

  13. #73
    iso2k4's Avatar Member
    Reputation
    2
    Join Date
    Nov 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    NP. its what I do for a living. Debug other developers jquery code.

  14. #74
    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 iso2k4 View Post
    NP. its what I do for a living. Debug other developers jquery code.
    Sadly it's what I do as well =p

  15. #75
    TZero's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Working as of post #70, thanks all

    What does the edit in post #71 do ?

Page 5 of 14 FirstFirst 123456789 ... 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 01:03 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search