Statistic information for AUTOIT farm menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    Guesswho777's Avatar Sergeant
    Reputation
    2
    Join Date
    May 2012
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Statistic information for AUTOIT farm

    hello everyone. I am trying things with sarkoth farming and i need HELP how can i create function in it to analyze and show average gold per hour, time farmed, total runs, cellar spawn times, items looted. Can anybody help me? Would appreciate it.

    Statistic information for AUTOIT farm
  2. #2
    08449's Avatar Contributor

    Reputation
    100
    Join Date
    Feb 2007
    Posts
    244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That is WAY to much work to do with an AutoIT script, and most things are even impossible.

    First of it is impossible to read the gold picked up, best you could do is output an image of the gold after every run which wont make sense.

    Time farmed is easy, just add a timestamp before the loop ( So this gets output only once ) and then add a timestamp in your pause function. This way you can see what time it started and what time it got paused.

    Total runs should be doable by adding a simple function in the loop adding +1 to a variable every time the loop is completed.

    Cellar spawns: You are working with an If/else loop so add a function in both loops that does the same as above.

    Items looted is impossible. Unless you want to go about making a screenshot of every single item you loot and then manually look through that.



  3. #3
    MonsterMMORPG's Avatar Active Member
    Reputation
    71
    Join Date
    Jun 2012
    Posts
    461
    Thanks G/R
    44/48
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    actually it is possible to read gold

    you can capture images of 0-9 and use those images to read

  4. #4
    08449's Avatar Contributor

    Reputation
    100
    Join Date
    Feb 2007
    Posts
    244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edit: Sorry my original post was somehow quoted in this post, just ignore this line.

    Yeah but adding 10 imagesearches per number means you have to do at least 60 imagesearches to just read a gold amount of 100K. This would slow down your script by a lot and it would be a hell to code. And it would be useless as well, you would be better of just noting down the gold you had when you started and the gold you have when you finish, which takes no effort at all.



  5. #5
    H4K1's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Or you can find the offset for your gold value and have it display the value before and after the run,, and divide that by the total run time

  6. #6
    08449's Avatar Contributor

    Reputation
    100
    Join Date
    Feb 2007
    Posts
    244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by H4K1 View Post
    Or you can find the offset for your gold value and have it display the value before and after the run,, and divide that by the total run time
    Display it where? I dont understand why you guys are even considering doing this. It would be tedious and the reason to do this is completely beyond my understanding...



  7. #7
    TanookiLover's Avatar Member
    Reputation
    11
    Join Date
    May 2012
    Posts
    172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just tell it to snapshot a small area that tells the gold amount (right above your inventory), then call a dll that can analyze the shot - similar to how people crack the 'captcha'. except these are plain numbers, not even distorted or alphabetic so should be piece of cake.

    could also do the imagesearch thing for each digit. not as tedious as it sounds, could work ok but more room for error.

    doesn't seem so hard. but then again, neither does writing down how much gold you had when you started the bot, then do a 10 second calculation when you come back to it half an hour or an hour later.
    Last edited by TanookiLover; 06-22-2012 at 04:14 PM.

  8. #8
    andygongyb's Avatar Knight-Champion
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    473
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Use OCR as notAres did. You don't need to read every single gold pick up, just open the inventory every certain period and calculate the difference. The position of the gold in inventory is always the same.

  9. #9
    Guesswho777's Avatar Sergeant
    Reputation
    2
    Join Date
    May 2012
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry im noob in programmind. I just looked some examples and created good wizard bot for sarkoth farm. Could anyone give example or write it for me?

  10. #10
    TanookiLover's Avatar Member
    Reputation
    11
    Join Date
    May 2012
    Posts
    172
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Guesswho777 View Post
    sorry im noob in programmind. I just looked some examples and created good wizard bot for sarkoth farm. Could anyone give example or write it for me?
    D3 Gold profiles

    take your pick

    i like shimizoki's script, then i just throw in pathing, attack routine, abort from chancity for wiz or tofuartist for barb
    Last edited by TanookiLover; 06-22-2012 at 04:21 PM.

  11. #11
    Choochoo545's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeah its pretty simple, there are examples of reading mem values in the mem section of course.
    (goldEnd-goldStart)/(timeEnd-timeStart)

  12. #12
    andygongyb's Avatar Knight-Champion
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    473
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Choochoo545 View Post
    yeah its pretty simple, there are examples of reading mem values in the mem section of course.
    (goldEnd-goldStart)/(timeEnd-timeStart)
    Dude, no injection

  13. #13
    Choochoo545's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No injection? i'm new here what do you mean

    edit: you don't even need to read mem values, just make a popup and type in the gold values yourself, time can be managed by macro

  14. #14
    andygongyb's Avatar Knight-Champion
    Reputation
    21
    Join Date
    Jun 2012
    Posts
    473
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Choochoo545 View Post
    No injection? i'm new here what do you mean
    We try not to inject any code into the D3 process in order to prevent ban

  15. #15
    Choochoo545's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ?? reading memory values injects code? I thought thats the point, if you JUST read, there is no injection

Page 1 of 2 12 LastLast

Similar Threads

  1. Sort of Idea for Honor Farming with 2.4
    By dondado in forum World of Warcraft Guides
    Replies: 15
    Last Post: 03-10-2008, 09:06 PM
  2. A Few Places for Gold Farming
    By Matt in forum World of Warcraft Guides
    Replies: 1
    Last Post: 11-02-2006, 06:52 PM
  3. Good spots for money farming
    By Cush in forum World of Warcraft Guides
    Replies: 12
    Last Post: 08-24-2006, 04:56 AM
  4. any guides for gold farming lvl 35+?
    By afiwarlord in forum World of Warcraft General
    Replies: 0
    Last Post: 07-07-2006, 01:04 PM
All times are GMT -5. The time now is 10:57 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