dwarfBeard - Gateway profession manager +more menu

User Tag List

Results 1 to 12 of 12
  1. #1
    Ohashi7's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    dwarfBeard - Gateway profession manager +more

    https://github.com/highway/dwarfBeard

    You'll find all the details on the projects git hub page.
    Free and open source as it should be!

    Enjoy

    dwarfBeard - Gateway profession manager +more
  2. #2
    Ohashi7's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Details

    Features

    • Multiple character support
    • Web interface for management of app settings
    • Will manage any of the professions available and any task, or rare task
    • Add any task. You decide the priority order
    • AD Exchange price trending
    • Decides when to log on again to collect rewards based on task completion time of all characters
    • Random pause times for a bit of humanization



    Future Project Goals

    • Daily SCA reward collection
    • Twitter notifications
    • and much more!

  3. #3
    lamafao's Avatar Master Sergeant
    Reputation
    23
    Join Date
    Mar 2014
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Been trying to install all the crap in your 'tutorial' for the past 3 hours, still couldn't do it. You need a better tutorial
    python still cant find setup.py even if i changed python paths

  4. #4
    Ohashi7's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lamafao View Post
    Been trying to install all the crap in your 'tutorial' for the past 3 hours, still couldn't do it. You need a better tutorial
    python still cant find setup.py even if i changed python paths
    It was just as difficult for me the first time I tried to install Sick Beard. Don't give up. It's worth it.
    Admittedly my quick install guide is very short. I'll be sure to review it and see if I can't expand on it a bit.

    What are you trying to install? If you are trying to use a setup.py file you must be trying to install either cheetah or splinter.
    I'll try to elaborate on how to install a new python module:
    • download and then extract cheetah or splinter to a folder such as c:\Cheetah or C:\splinter
    • open a command prompt to said folder
    • now that you are at a command prompt in the folder, if you type "dir" you should get a list of the folder contents and you should see setup.py listed
    • to install, type: python setup.py install


    After you get this running make sure you check out Sick Beard and CouchPotato.... just a suggestion. They're not related to Neverwinter but they are awesome.

  5. #5
    tooillegal's Avatar Member
    Reputation
    1
    Join Date
    May 2013
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Don't know if this helps anyone but thought I write how I did it.
    * I had Firefox installed already...
    * Downloaded the zip pack of dwarfBeard and unpacked to location of choice, WARNING if you do it like this you have to manually update later on.
    * I'm a sucker for portable versions so I grabbed Portable Python - Portable Python 2.7.5.1 - Download page
    * Installed it with the Minimal option into the dwarfBeard folder.
    * Download and extracted Cheetah and splinter into the dwarfBeard folder.
    * In command prompt go to cheetah folder and run the command "C:\.......\Python-Portable.exe" setup.py install
    the C:\.......\ means the full address to your portable python folder.
    * Same as above once more but for splinter

    * And finally go to the dwarfBeard folder and run "C:\.......\Python-Portable.exe" dwarfBeard.py

    I haven't had time to try it out that much but at least it started and showed me a webpage.
    I think there was also an error with Cheetah when I started but it seemed to be nothing to worry about
    Last edited by tooillegal; 04-15-2014 at 06:08 AM.

  6. #6
    lamafao's Avatar Master Sergeant
    Reputation
    23
    Join Date
    Mar 2014
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well i installed Setuptools and changed cheetah/splinter directory to C:\Cheetah/C:\Splinter and it worked.

    Originally Posted by tooillegal View Post
    I think there was also an error with Cheetah when I started but it seemed to be nothing to worry about
    Yea something about cheetah with c compiler, but everything works fine.

  7. #7
    Ohashi7's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm glad to hear you guys got it installed.

    You don't have to worry about the warning regarding using the c version of namemapper. It's something you can get from the cheetah website but it is completely unnecessary. I should probably see if I can disable the message.

    I've got a few new features in the works:
    • verification pause - pauses the program to allow the user to enter the verification code if needed
    • black out hours - stops the program from running to simulate when you might be asleep - you can turn it off if you don't want it
    • available update notifications - notifications on the web interface when updates are available on git hub

  8. #8
    electropica's Avatar Member
    Reputation
    3
    Join Date
    Sep 2013
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A package with everything in it will be helpful.

  9. #9
    Ohashi7's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by electropica View Post
    A package with everything in it will be helpful.
    There are both advantages and disadvantages to a python app such as this one.
    Some of the advantages are:
    • Its not a compiled program so it can be modified and restarted in an instant to make changes
    • With source code hosting on Git Hub many people can contribute to its development
    • All users can easily sync with the master branch and restart their app to get the latest version
    • You can see all of the code in your app and be sure it's not doing anything you wouldn't want it to be doing. - Once a program is compiled its difficult to be sure of exactly what code when into it. Even if you can see the supposed source code, you don't know what went into the compiled version and what it might be doing with your data. Unless of course you compiled it yourself.


    Some of the disadvantages are:
    • Many python modules need to be installed into your local installation of python for them to work - not that hard to do
    • Python scripts are actually slower then compiled programs, but that doesn't matter here since we are not doing anything high speed
    • The program and all of its dependencies do not come in a single compiled exe file - but then this has the advantages as listed above



    You have your choice of apps, so go with what you are most comfortable with.

  10. #10
    segjoz's Avatar Member
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    suitable for Russian server?

  11. #11
    Ohashi7's Avatar Private
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by segjoz View Post
    suitable for Russian server?
    It works through the gateway website: gateway.playneverwinter.com

    As far as I know it should be the same, but if the base url is any different it should be really easy for you to change.

  12. #12
    segjoz's Avatar Member
    Reputation
    1
    Join Date
    Apr 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ohashi7 View Post
    It works through the gateway website: gateway.playneverwinter.com

    As far as I know it should be the same, but if the base url is any different it should be really easy for you to change.


    I think if it was all so easy, it would have long since changed to Russian servers Alas, I do not understand this. :с


    Anyway, thanks for the answer.

Similar Threads

  1. [Selling] ★ Hand-Leveling Services! ★EU/US★ 1-90 Cheap, Professions, Honor, More! ★
    By dozeer in forum World of Warcraft Buy Sell Trade
    Replies: 127
    Last Post: 06-15-2015, 04:14 PM
  2. [Selling] Handleveling Service \ EU ONLY \ HONOR \ PROFESSIONS AND MORE!
    By nizzlen1337 in forum World of Warcraft Buy Sell Trade
    Replies: 3
    Last Post: 12-13-2012, 05:39 AM
  3. [Selling] Hand Leveling Services! EU/US 1-90 55€, Professions, Honor, More! [ 2 Years Exp. ]
    By dozeer in forum Members Only Gold And Powerleveling Buy Sell
    Replies: 5
    Last Post: 12-07-2012, 12:06 AM
  4. [Selling] HAND LEVELING SERVICES! 1-90 Cheap, Professions, Honor & More!
    By vbatista in forum World of Warcraft Buy Sell Trade
    Replies: 7
    Last Post: 11-08-2012, 01:22 PM
  5. [Selling] 398 Rogue, x3 85's Healer, Tank, Ranged, Melee. All Professions. Much More.
    By Link3 in forum WoW-US Account Buy Sell Trade
    Replies: 1
    Last Post: 03-18-2012, 09:06 PM
All times are GMT -5. The time now is 12:59 PM. 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