Autoprofessionbot V1.0 - release menu

Shout-Out

User Tag List

Page 29 of 48 FirstFirst ... 252627282930313233 ... LastLast
Results 421 to 435 of 712
  1. #421
    trophywife's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trophywife View Post
    I just downloaded it. When I come back home I will find out if I can compile it, if it is not too mutch hassle, Ill probably will do some further improvements, and most surely will pubish the results.

    I know shit about VB, but for minor tweaks here and there many Prog. languages are similar...
    I took a few hours to make a new "private" version that (for now) have 3 aditional "reserve" slots. If one of the regular 1-9 tasks fails, then bot attempts to run the reserve tasks list.

    At the moment I set it up so after failing a normal task, it always try to run reserve slot 1, then if that one also fails, it tries reserve slot 2, then 3... but I may swap it so it cycles them (becacuse you moslty put there sure-to-be-completed tasks, hence reserve tasks 2 && 3 dont really get used that mutch).

    If anyone is interested, email me "[email protected]" and Ill find out some time to send a beta version for you to test.

    Other minor changes:

    - Drastically increased interface size, so you can check all 9 slots without having to scroll down.
    - Added a copy-to-clipboard buttom in the Runlog tab. (use it to send feedback!)
    - Added a configurable sleep timer after completing all 1-9 slots, so it doesnt unnecesarely keep pinging gateway for something to be done, as it happens right now (even though you wont notice it as nothing goes into the runlog)
    Last edited by trophywife; 07-09-2013 at 09:46 AM.

    Autoprofessionbot V1.0 - release
  2. #422
    FattyXP's Avatar Member
    Reputation
    20
    Join Date
    Feb 2009
    Posts
    168
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trophywife View Post
    I took a few hours to make a new "private" version that (for now) have 3 aditional "reserve" slots. If one of the regular 1-9 tasks fails, then bot attempts to run the reserve tasks list.

    At the moment I set it up so after failing a normal task, it always try to run reserve slot 1, then if that one also fails, it tries reserve slot 2, then 3... but I may swap it so it cycles them (becacuse you moslty put there sure-to-be-completed tasks, hence reserve tasks 2 && 3 dont really get used that mutch).

    If anyone is interested, email me "[email protected]" and Ill find out some time to send a beta version for you to test.

    Other minor changes:

    - Drastically increased interface size, so you can check all 9 slots without having to scroll down.
    - Added a copy-to-clipboard buttom in the Runlog tab. (use it to send feedback!)
    - Added a configurable sleep timer after completing all 1-9 slots, so it doesnt unnecesarely keep pinging gateway for something to be done, as it happens right now (even though you wont notice it as nothing goes into the runlog)
    You can safely disable
    Code:
            If (gotoSite("http://gateway.playneverwinter.com/#char%28" + frmMain.txtaccchar.Text + "%29/professions", "Available Profession Slots", True) = "Timeout") Then
                Return "Timeout"
            End If
    That part of the getSlotStatus function in Browserfunctions class. The javascript on the page itself will keep the buttons updated to display the proper text, thus causing the bot to see this and go to collect rewards. You can also remove the delay since we aren't waiting for a page to load.

    This will remove the "pinging" gateway symptom. Unless they've added an anti-afk timer to the gateway this shouldn't effect anything.
    Last edited by FattyXP; 07-10-2013 at 09:24 AM.

  3. #423
    FattyXP's Avatar Member
    Reputation
    20
    Join Date
    Feb 2009
    Posts
    168
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also, to everyone that might be editing the source code to this, you can also safely disable the call to SetProcessWorkingSetSize in "antimemoryleak". If you do some research, you'll see that SetProcessWorkingSetSize just dumps all of the pages of the process in physical memory into your virtual memory. Then, when the program goes to access its memory, it gets RELOADED into physical memory from disk. This causes a large amount of unnecessary disk I/O and possible thrashing.

    Also, go into delay.vb, and replace the Delay function there with this one:
    Code:
        Public Sub Delay(ByVal intMS As Integer)
            ' a Responsive sleep timer. Runs through a loop calling only do events until the time in milliseconds has passed.
            Dim sw As New Stopwatch
            sw.Start()
            Do While sw.ElapsedMilliseconds < intMS
                ' Allows UI to remain responsive
                Application.DoEvents()
            Loop
            sw.Stop()
        End Sub
    The System.Threading.Thread.Sleep method does exactly what it says... it causes the entire thread to SLEEP, not just WAIT. This causes the interface to become unresponsive, as well as stopping any other processing currently going on. This method is not intended to be used where a Wait or Sleep command would be used in other languages, even though most people assume that because of the name. Sadly Microsuck as STILL not seen fit to put a "Wait" like command into its languages, instead forcing everyone to create stopwatches and do the code/math yourself. (isn't that the point of the .net framework? Not only to provide an intermediate language, but also provide you with many of the necessary tools the functions you might otherwise need to program yourself, but saves you the time of having to?)
    Last edited by FattyXP; 07-10-2013 at 09:22 AM.

  4. #424
    Methuselas's Avatar Sergeant Major
    Reputation
    15
    Join Date
    Jun 2013
    Posts
    166
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Running the new beta. I like the screen size increase. I also like the fact that the log TELLS you what job it's trying to slot. (Nice additions.) Currently running it now and no timeout errors, which I had with 1.3.2 and why I rolled back to 1.3.1. Will report back, if I find anything funky.


    [EDIT] - TW, I'm happy to report that I had the bot running 15+ hours, with ZERO problems. I ran into trouble, though, 'cos the Gateway crashed, not showing any jobs, but rare. I set it to run long jobs, in game, but so far, it seems to be working well. Haven't tested the reserve spots yet, but will do that tomorrow.

    Cheers!
    Last edited by Methuselas; 07-11-2013 at 03:01 AM.

  5. #425
    trophywife's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey there, its nice to see that people are successfully using the beta I sent them. Right now I am not taking more beta testers, nor progressing on the bot, mainly because yesterday I went to the beach and will be here until next sunday

    I will resume the work on monday, and will release a public version shortly after, considering that no bugs arise.



    This is the email I sent to the 5 first people that wanted to test it.

    Hello mate!

    Thanks for helping me with this!

    Please download from **********


    Sadly I have yet to include a method that allows the bot to import old config files. If you have a proper file editor, include some extra lines at the bottom of your current "*.config" file, lines 38, 42 and 46 must be "False" without the "", so the file imports correctly. Otherwise, simply create a new .config file, it takes less than 1 minute. If I release a public version, I will include an automatic conversion.

    Please, if you find any errors, report them on the forum (http://www.ownedcore.com/forums/mmo/...0-release.html (Autoprofessionbot V1.0 - release)).

    Known previous bugs:
    - CPU usage when running more than one bot. As the original developer, I think that it is a gateway issue, but I will investigate it.
    - Random crash after a few hours running. I found out that those crash happens in the delay function, to be fixed.
    - Random periods of "all-tasks-fail": thats a bug in the gateway/game. Only blue tasks gets displayed, so it cant start any other task. I will try to control this in the future and add a long delay so the bot doesnt keep trying constantly.

    Known new bugs:



    @FattyXP:

    Thanks for your tips, I already saw the flaw in the original delay function, so I will be changing that on monday. About the unnecessary call, I will take a look at it! Repped.
    Last edited by trophywife; 07-11-2013 at 04:51 AM.

  6. #426
    gerdes11's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @trophywife
    Good job done. Have some nice days at the beach.
    Last edited by gerdes11; 07-11-2013 at 05:52 AM.

  7. #427
    Methuselas's Avatar Sergeant Major
    Reputation
    15
    Join Date
    Jun 2013
    Posts
    166
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Enjoy the beach, TW.

    To those using Leadership. The bot is missing the Protect Diamonds Rare Job. Here's the link:

    Leadership_Tier3_13r_Protectdiamonds

    [EDIT] - TW, I'll post a new leadership.txt that adds all the Rare jobs that aren't on it. I am adding the ones missing, as I come across them. I'm checking every hour, for the ones the list doesn't have.

    Kudos to the Reserve slots. They work wonders. Good idea for maximizing workload.
    Last edited by Methuselas; 07-11-2013 at 05:37 PM.

  8. #428
    maxreissmueller'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 have an issue that when I turn off my monitor for a period of time and then turn it back on, the crafting window resizes to a smaller size and I can no longer see what jobs are running. Is there a way to modify the tool to allow the window to be resized?

  9. #429
    Methuselas's Avatar Sergeant Major
    Reputation
    15
    Join Date
    Jun 2013
    Posts
    166
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by maxreissmueller View Post
    I have an issue that when I turn off my monitor for a period of time and then turn it back on, the crafting window resizes to a smaller size and I can no longer see what jobs are running. Is there a way to modify the tool to allow the window to be resized?
    I've never seen this, but then again, I use the screen saver, so the monitor goes into sleep mode.


    Interesting side note for you peeps. Apparently, the Protect Diamond Shipment Rare Job doesn't use your mining claims through the gateway. I had 39 Mining Claims last night and managed to run two Protect Diamond Shipment jobs (one is still currently running.) I still have 39 Mining Claims. ;P Not to mention, it seems the Diamond Shipment resets every 9 hours, so if you plug a blue in there, when it finishes, you can pop right in again and do it.

  10. #430
    p3rsian's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    could u maybe also add tabs so we can do more then one character from inside the same bot so we dont have to open multiple of the bot maybe it could help with memory usage?

  11. #431
    Cyrealkiller's Avatar Sergeant
    Reputation
    11
    Join Date
    Jul 2013
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Everyone,

    As promised I have a test client available which everyone is encouraged to test out, and please let me know of any issues your encounter.

    Just to give a few examples of features I will be looking into adding are:
    - Auto login and reconnect
    - Multi-Character support
    - Individual Leveling routes/guides

    APB-v1.4.0beta1.rar.

    ~ Cyrealkiller

  12. #432
    beetleharry's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cyrealkiller View Post
    Hey Everyone,

    As promised I have a test client available which everyone is encouraged to test out, and please let me know of any issues your encounter.

    Just to give a few examples of features I will be looking into adding are:
    - Auto login and reconnect
    - Multi-Character support
    - Individual Leveling routes/guides

    APB-v1.4.0beta1.rar.

    ~ Cyrealkiller
    I'll start out by saying thanks for continuing the work!

    Aaand heres my 2 cents about the new bot:
    Features:
    • Pretty good overall, the slot and task assignments are not that great, you have to click a lot before you're done adding tasks to 9 slots. then again you only have to do it once.
    • I have no idea how the multi char support works, could you explain it?
    • what are these leveling routes / guides exactly?



    Bugs:
    When i try to remove a task from a character and i dont select the task and hit the remove button the bot errors.

  13. #433
    mxzero's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Methuselas View Post
    it seems the Diamond Shipment resets every 9 hours, so if you plug a blue in there, when it finishes, you can pop right in again and do it.
    Does the Diamond Shipment job appear on a regular schedule? If so, when does it appear?

    Originally Posted by Methuselas View Post
    Leadership_Tier3_13r_Protectdiamonds

    [EDIT] - TW, I'll post a new leadership.txt that adds all the Rare jobs that aren't on it. I am adding the ones missing, as I come across them. I'm checking every hour, for the ones the list doesn't have.
    Great! Do you have the new leadership text available?

  14. #434
    Methuselas's Avatar Sergeant Major
    Reputation
    15
    Join Date
    Jun 2013
    Posts
    166
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mxzero View Post
    Does the Diamond Shipment job appear on a regular schedule? If so, when does it appear?



    Great! Do you have the new leadership text available?
    I'm still working on the leadership text, but I'll upload what I have. As for the Diamond Shipment job, I'm not sure what happened, but it's using mining claims now. :/

    I have a question for all, though. Has anyone had an issue where the bot works for one character on an account, but times out on a character, with a DIFFERENT account, 'cos it works great for my character, but it's timing out on my wife's account??!?? I even tried running it on my machine, thinking it might be something with her's, but it's just hanging in the gateway and then timing out on the slots. What's weird, though, is the fact that if I log into the Gateway, her account works fine, if I do the jobs manually...... :/


    [EDIT]-

    Code:
    Leadership_Tier3_20_Destroy
    Leadership_Tier3_19r_Siegekeep
    Leadership_Tier3_19_Acquire
    Leadership_Tier3_18r_Followmap
    Leadership_Tier3_18_Resell
    Leadership_Tier3_18_Recruit_Epic
    Leadership_Tier3_17r_Raidmines
    Leadership_Tier3_17_Deliver
    Leadership_Tier3_16r_Buildshelters
    Leadership_Tier3_16_Fight
    Leadership_Tier3_15r_Raidtreasury
    Leadership_Tier3_15_Rescue
    Leadership_Tier3_15_Recruit_Rare
    Leadership_Tier3_14r_Protectdelegation
    Leadership_Tier3_14_Assemble
    Leadership_Tier3_13r_Protectdiamonds
    Leadership_Tier3_13_Patrol
    Leadership_Tier3_13_Recruit
    Leadership_Tier3_13_Training
    Leadership_Tier2_12_Taxes
    Leadership_Tier2_11r_Escortgoods
    Leadership_Tier2_11_Collect
    Leadership_Tier2_10r_Seekmaps
    Leadership_Tier2_10_Battle
    Leadership_Tier2_9r_Protectmines
    Leadership_Tier2_9_Chart
    Leadership_Tier2_8r_Givehome
    Leadership_Tier2_8r_Helpneedy
    Leadership_Tier2_8_Protect
    Leadership_Tier2_7r_Followmap
    Leadership_Tier2_7_Raid
    Leadership_Tier2_7_Training
    Leadership_Tier2_7_Recruit
    Leadership_Tier1_6r_Protectsurvey
    Leadership_Tier1_6r_AssistWizard
    Leadership_Tier1_6_Survey
    Leadership_Tier1_5r_Raidcache
    Leadership_Tier1_5r_Assistcleric
    Leadership_Tier1_5_Explore
    Leadership_Tier1_4r_Protectmerchant
    Leadership_Tier1_4r_Gatherdiamonds
    Leadership_Tier1_4_Protect
    Leadership_Tier1_2_Recruit
    Leadership_Tier1_3_Scout
    Leadership_Tier1_2_Guardduty
    Leadership_Tier1_2_Training
    Leadership_Tier1_Feedtheneedy
    Here's the new leadership list. I think I'm missing a few, but this will allow you hit most of the rare jobs.

  15. #435
    mxzero's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trophywife View Post
    Hey there, its nice to see that people are successfully using the beta I sent them. Right now I am not taking more beta testers, nor progressing on the bot, mainly because yesterday I went to the beach and will be here until next sunday
    The beta is working pretty well - no new issues beyond the problems that the original bot had. Have been running the client for many hours at a time.


    Originally Posted by Methuselas View Post
    Here's the new leadership list. I think I'm missing a few, but this will allow you hit most of the rare jobs.
    Thanks for the updated list!

    Originally Posted by Cyrealkiller View Post
    Just to give a few examples of features I will be looking into adding are:
    - Auto login and reconnect
    - Multi-Character support
    - Individual Leveling routes/guides
    Awesome! In addition, two suggestions:

    1. I think most of the "failure to start a new job" issues can be resolved by a full-refreshed, re-login. The same thing happens when I have the browser opened for long periods of time, and repeated efforts to start a new job would start to fail.

    I usually work around this by closing the bot/browser window (CTRL+F5), and starting over. That almost always resolves the issue.

    Thus, if the bot can perform a forced full-refreshed re-login every few hours on a regular basis, it might increase its robustness.

    2. Auto-login/reconnect would only be useful if it can ensure that the saved cookie can be re-used, as well as auto-loading the configuration and the saved login/password.

    Thanks!

Page 29 of 48 FirstFirst ... 252627282930313233 ... LastLast

Similar Threads

  1. [Release] Herbs to flag
    By Dave-evad in forum World of Warcraft Model Editing
    Replies: 9
    Last Post: 11-26-2006, 03:31 PM
  2. Burning Crusdade Release Date!
    By codydude815 in forum World of Warcraft General
    Replies: 22
    Last Post: 10-30-2006, 01:59 PM
  3. Burning Crusdade Release Date!
    By codydude815 in forum World of Warcraft Guides
    Replies: 15
    Last Post: 10-28-2006, 12:15 PM
  4. anti-warden Release #1
    By zhPaul in forum World of Warcraft Bots and Programs
    Replies: 40
    Last Post: 10-21-2006, 01:40 AM
  5. Burning Crusade Release
    By KOLOSSAL in forum World of Warcraft General
    Replies: 3
    Last Post: 10-10-2006, 12:33 AM
All times are GMT -5. The time now is 05:31 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