Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 52

Thread: Thought In Process: Human-like Neopet Autoplayer?

  1. #21
    Xanice's Avatar
    Joined
    Dec 2011
    Posts
    295
    Userbars
    5
    Thanks
    47
    Thanked
    138/90
    DL/UL
    3/0
    Mentioned
    46 times
    Time Online
    1d 4h 57m
    Avg. Time Online
    N/A
    Excellent. Give him more work to do. Dance puppets dance! Meh, if I were to finish my intended project by the end of the summer I honestly would be surprised LOL. Stalling does me no good Onward to refreshing on VB!


    Cause someday I'll be OVER 9,000... Rep!


  2. #22

    Joined
    Jun 2012
    Posts
    1,699
    Thanks
    876
    Thanked
    2,881/1,142
    DL/UL
    44/1
    Mentioned
    562 times
    Time Online
    118d 6h 45m
    Avg. Time Online
    40m
    Could be done effectively with separate apps. Of course all in one app it would be neater but the code would get massive. Hopefully my framework will help on this.

  3. #23
    Xanice's Avatar
    Joined
    Dec 2011
    Posts
    295
    Userbars
    5
    Thanks
    47
    Thanked
    138/90
    DL/UL
    3/0
    Mentioned
    46 times
    Time Online
    1d 4h 57m
    Avg. Time Online
    N/A
    Quote Originally Posted by raredaredevil View Post
    Could be done effectively with separate apps. Of course all in one app it would be neater but the code would get massive. Hopefully my framework will help on this.
    By different apps, do you mean code the entities seperately? IE, let's say a autobuyer, auto stocker, etc etc. all coded as seperate applications, then essentially connect all the seperate applications together, or maybe even 'call' them when they're next in queue for being executed? Something along those lines? If that is what you mean, then yeah, I do agree that that would make the program a hell of alot more effective (to the point of this being necessity) for two reasons.

    Different people could work on the coding of different parts at once without actually halting the entire project (open source type work) and also the code in itself will be both cleaner and quicker, as the program won't have to run through thousands of unneeded lines of code just to run the correct application at the right time. Coding like "If yyy condition is met, RUN autobuyer.exe" as an example would be easier for the program to sort through then if the entire autobuy script was in the same file as the auction sniper script. I think anyway? I could be entirely wrong.


    Cause someday I'll be OVER 9,000... Rep!


  4. #24

    Joined
    Jun 2012
    Posts
    1,699
    Thanks
    876
    Thanked
    2,881/1,142
    DL/UL
    44/1
    Mentioned
    562 times
    Time Online
    118d 6h 45m
    Avg. Time Online
    40m
    I envision it as a whole bunch of apps in a folder that are linked (They can share cookie files). There would be a "Governor" app that watches over all the other apps and at say 10a.m would run a dailys program with a paramater like so

    dailys.exe -expiretime=10pm

    Then the app would find the "expiretime" parameter on form load and when this time comes close itself. Something along those lines doesn't seem so hard

  5. #25
    Xanice's Avatar
    Joined
    Dec 2011
    Posts
    295
    Userbars
    5
    Thanks
    47
    Thanked
    138/90
    DL/UL
    3/0
    Mentioned
    46 times
    Time Online
    1d 4h 57m
    Avg. Time Online
    N/A
    Ah okay. So then my idea was more or less on target, with the exception that my language was probably COMPLETELY wrong since I don't know the actual keyterms haha. Yeah I would envision it the same. Through this method, honestly, alot of the code could be recycled too, so the autobuyer, autonsniper, pricer, etc wouldn't have to be hardcoded all over again. Maybe adjusted (if someone was willing to allow the use of their code in the project of course) to ensure compatibility with the "governer" but that's about it.

    With all this being said, I like where this topic is going, it's giving me more concrete ideas on how this program would be made. With that being said, I wonder who would want to devote long hours and manual labor for (as of yet, something that wouldn't be decided for some time) virtually no real money payoff? =P A think tank might be fun for something like this, if there were enough interest to make this a collaborative effort.
    Last edited by Xanice; 06-26-2012 at 06:22 PM.


    Cause someday I'll be OVER 9,000... Rep!


  6. #26
    Zachafer's Avatar
    Joined
    Dec 2011
    Posts
    1,235
    Userbars
    11
    Thanks
    769
    Thanked
    1,466/678
    DL/UL
    98/0
    Mentioned
    512 times
    Time Online
    24d 13h 9m
    Avg. Time Online
    8m
    Quote Originally Posted by Ciricus View Post
    the code in itself will be both cleaner and quicker, as the program won't have to run through thousands of unneeded lines of code just to run the correct application at the right time. Coding like "If yyy condition is met, RUN autobuyer.exe" as an example would be easier for the program to sort through then if the entire autobuy script was in the same file as the auction sniper script. I think anyway? I could be entirely wrong.
    @(you need an account to see links)'s idea would work, but that is a very old way of doing things. Wouldn't it be better to have one program that shared the same wrapper (cookies) between each arm of the program? Wouldn't it make threading really easy? Wouldn't it be nice to be able to communicate that you want the Auction Sniper to start after you've bought 10 items from user shops? Sure this can be done with separate applications, but not easily - and the solution is less effective than putting each "arm" of the program into an organized OOP-styled program.

    Quote Originally Posted by Ciricus View Post
    With that being said, I wonder who would want to devote long hours and manual labor for (as of yet, something that wouldn't be decided for some time) virtually no real money payoff? =P

  7. The Following User Says Thank You to Zachafer For This Useful Post:

    Xanice (06-26-2012)

  8. #27
    Xanice's Avatar
    Joined
    Dec 2011
    Posts
    295
    Userbars
    5
    Thanks
    47
    Thanked
    138/90
    DL/UL
    3/0
    Mentioned
    46 times
    Time Online
    1d 4h 57m
    Avg. Time Online
    N/A
    Quote Originally Posted by Zachafer View Post
    @(you need an account to see links)'s idea would work, but that is a very old way of doing things. Wouldn't it be better to have one program that shared the same wrapper (cookies) between each arm of the program? Wouldn't it make threading really easy? Wouldn't it be nice to be able to communicate that you want the Auction Sniper to start after you've bought 10 items from user shops? Sure this can be done with separate applications, but not easily - and the solution is less effective than putting each "arm" of the program into an organized OOP-styled program.



    You're a magic lamp full of answers Zach! Now i just need to figure out a way to direct everyone's attention to this thread x; although somehow I have high doubts sean or undead will participate


    Cause someday I'll be OVER 9,000... Rep!


  9. #28

    Joined
    Jun 2012
    Posts
    1,699
    Thanks
    876
    Thanked
    2,881/1,142
    DL/UL
    44/1
    Mentioned
    562 times
    Time Online
    118d 6h 45m
    Avg. Time Online
    40m
    Quote Originally Posted by Zachafer View Post
    @(you need an account to see links)'s idea would work, but that is a very old way of doing things. Wouldn't it be better to have one program that shared the same wrapper (cookies) between each arm of the program? Wouldn't it make threading really easy? Wouldn't it be nice to be able to communicate that you want the Auction Sniper to start after you've bought 10 items from user shops? Sure this can be done with separate applications, but not easily - and the solution is less effective than putting each "arm" of the program into an organized OOP-styled program.
    Yep absolutely that's the best way , not the easiest but the best. The problem I foresee with the method I posted is the windows user control system witch pops up when a program wants to run a admin . I suppose the best way would be to start coding and work out witch method works the best for you.

    P.S not everyone wants to make programs for money .

  10. The Following User Says Thank You to DarkByte For This Useful Post:

    Xanice (06-26-2012)

  11. #29
    Zachafer's Avatar
    Joined
    Dec 2011
    Posts
    1,235
    Userbars
    11
    Thanks
    769
    Thanked
    1,466/678
    DL/UL
    98/0
    Mentioned
    512 times
    Time Online
    24d 13h 9m
    Avg. Time Online
    8m
    I'm actually going to start on this - by latest Thursday

  12. #30

    Joined
    Jun 2012
    Posts
    1,699
    Thanks
    876
    Thanked
    2,881/1,142
    DL/UL
    44/1
    Mentioned
    562 times
    Time Online
    118d 6h 45m
    Avg. Time Online
    40m
    Any progress?

    I started a project based on this idea , Heres what I have so far , excuse the gui it has not been worked on.

    Account manager -

    Each account runs in a seperate thread , you can have unlimited running at once


    Money Tree grabber class-

    This shows how the multiple accounts are managed , you select any logged in account from the right hand side and click "manage account" , then the money tree grabber settings you are using for that account currently will show in the window as-well as any logs ect. You can have multiple settings every different account. Additionally you can save settings to file , this will be usefull later when scheduling is added.

    I know it looks simple atm , but its a crapton of code to get this working in a way that wont cause issues further down the line.

    Note:Accounts are mules , usernames in sshots dont matter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •