jpbot 6 Report post Posted September 26, 2013 my script says looking for town.... and thats it doesnt countdown everytime i go to town so its not stashing. can you post your log_eeb.txt files here. can you copy/paste this script in a file check.town.ahk or any name. Open poe. Run the script. Press F4 for check town (ESC close the script) Stay in town and go out of town. Check if detect town work. (you would see a message on trybar "In town", "In map" or "Checking...") SetBatchLines, -1 DetectHiddenWindows, On #SingleInstance ;get pixel color for active skill F3:: Loop { PixelGetColor, color, 655, 582 TrayTip,, %color%, 2 Sleep 1000 } return ;verify pixel color for active skill F4:: _activeSkillInTown := 0x565656 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMap := 0x487DA2 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMapInactive := 0x344757 ;pixel color for active skill for poe version 0.11.6b _inTown := 0 Loop ;active skill { if inMap() TrayTip,, In Map, 2 else if inTown() TrayTip,, In Town, 2 else TrayTip,, Checking..., 2 sleep 1000 } ; --check if we are in any map !!! inMap() { global IfWinExist, Path of Exile WinActivate PixelSearch, Px, Py, 655, 582, 655, 582, %_activeSkillInMap%, 0, Fast ;check for active skill if !ErrorLevel return true PixelSearch, Px, Py, 655, 582, 655, 582, %_activeSkillInMapInactive%, 0, Fast ;check for active skill if !ErrorLevel return true return false } ; --check if we are in town !!! inTown() { global PixelSearch, Px, Py, 655, 582, 655, 582, %_activeSkillInTown%, 0, Fast ;check for active skill if !ErrorLevel return true else return false } return esc:: msgbox script closed by user exitapp Quote Share this post Link to post Share on other sites
Swifty 1 Report post Posted September 26, 2013 26/09/2013 08:46:45 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 08:47:05 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 08:51:08 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 08:52:15 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 08:54:49 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 08:57:50 Restart Bot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 08:57:50 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 08:58:08 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:01:09 Restart Bot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:01:09 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:01:31 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:02:38 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:13:06 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:20:38 Restart Bot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:20:38 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:20:56 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:28:28 Restart Bot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:28:28 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:28:45 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:34:12 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:41:09 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 26/09/2013 09:41:57 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! is all i got. ill try that shortly =D Quote Share this post Link to post Share on other sites
Swifty 1 Report post Posted September 26, 2013 sorry dude, all i get is checking.... nothing else. i tried your script again, after trying that script you gave me, i even ran it as admin... and still nothing. Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 26, 2013 sorry dude, all i get is checking.... nothing else. i tried your script again, after trying that script you gave me, i even ran it as admin... and still nothing. Open poe Run Script Press F3 write the pixel color that you get in town (ex. 0x565656) go out of town write the pixel color you get. out of town use all your mana and then write the pixel color you get. now in file check.town.ahk or the name that you gave to the script change this values for the ones you got before _activeSkillInTown := 0x565656 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMap := 0x487DA2 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMapInactive := 0x344757 ;pixel color for active skill for poe version 0.11.6b run script again press f4 post if it works Quote Share this post Link to post Share on other sites
Kousaka 1 Report post Posted September 26, 2013 I tried this script once for my vm but didnt work so i gave up soon since i dont have much experience in scripting. Now I tried what you told swifty, problem is i get the same pixel in town as out of town. After editing the pixel code in the script it changed from "checking" to "in map" wether it was in town or outside. Did i overlook something? do i have to put the cursor over something special or something? like i said, no experience with scripting. dont know what excactly it is even looking for Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 26, 2013 I tried this script once for my vm but didnt work so i gave up soon since i dont have much experience in scripting. Now I tried what you told swifty, problem is i get the same pixel in town as out of town. After editing the pixel code in the script it changed from "checking" to "in map" wether it was in town or outside. Did i overlook something? do i have to put the cursor over something special or something? like i said, no experience with scripting. dont know what excactly it is even looking for you don't need to put the cursor over nothing, when you run the check.town.ahk script and press f3, the script search for the spot that I used to verify town. so you run the check.town.ahk script that I post, press f3 and you are getting the same values in and out of town? you have your main skill in mouse_right button? are you running poe in 800*600? are you using a modified production_Config.ini file? Quote Share this post Link to post Share on other sites
Kousaka 1 Report post Posted September 26, 2013 so you run the check.town.ahk script that I post, press f3 and you are getting the same values in and out of town?yesyou have your main skill in mouse_right button?yesare you running poe in 800*600?yesare you using a modified production_Config.ini file?nobut i press F1 to disable the gray graphic error in vm tried without F1 too but gets in and out of town same values again edit: tried now without vm and that seems to work, gets different values in and out of town. So its just not possible with vm? Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 26, 2013 so you run the check.town.ahk script that I post, press f3 and you are getting the same values in and out of town?yesyou have your main skill in mouse_right button?yesare you running poe in 800*600?yesare you using a modified production_Config.ini file?nobut i press F1 to disable the gray graphic error in vm tried without F1 too but gets in and out of town same values again hmm thats weird basically we are looking for 3 values, all 3 diferent 1. _activeSkillInTown mouse right skill in town. Ex. 2. _activeSkillInMap mouse right skill out of town. Ex 3. _activeSkillInMapInactive mouse right skill out of town without mana no image sry : / I put a red circle where the spot is, its just an example, we are looking just for 1 pixel, so it is really small, as you can see they have diferent colors, i don't know why are you getting the same values what values are you getting? Quote Share this post Link to post Share on other sites
Swifty 1 Report post Posted September 26, 2013 if it relates to mana, i dont have mana. i use blood magic talent. so my pixels are different to normal i guess. i foundthem ill change and let you know. Quote Share this post Link to post Share on other sites
Kousaka 1 Report post Posted September 26, 2013 what values are you getting? 0x2B3965 Is it possible to change the location where it looks for the value? like in center of the skill? Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 26, 2013 what values are you getting? 0x2B3965 Is it possible to change the location where it looks for the value? like in center of the skill? whats you main skill? are you runnig check script as admin? is possible but no recommend if you don't have experience with scripts, but you can try it. better use this script, check if you get different values for different spots save with any.name.ahk and run it ; This example allows you to move the mouse around to see ; the title of the window currently under the cursor: #Persistent SetTimer, WatchCursor, 100 return WatchCursor: CoordMode, Pixel, Relative MouseGetPos,MouseX ,MouseY , id, control PixelGetColor, color, %MouseX%, %MouseY% WinGetTitle, title, ahk_id %id% WinGetClass, class, ahk_id %id% ToolTip, X/Y %MouseX%/%MouseY% `ncolor %color%`nahk_class %class%`nahk_id %id%`n%title%`nControl: %control% return Quote Share this post Link to post Share on other sites
Kousaka 1 Report post Posted September 26, 2013 whats you main skill?Infernal bloware you runnig check script as admin?i dont even have the option to run the script as admin wether vm or on main system is possible but no recommend, if you don't have experience with scripts, but you can try it. better use this script, check if you get different values for different spots The values from in town and out of town are definitely different with this script, though its hard to give an example since its hard to get the same location with free cursor Quote Share this post Link to post Share on other sites
Swifty 1 Report post Posted September 26, 2013 works a charm for me now. Thanks =D Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 26, 2013 whats you main skill?Infernal bloware you runnig check script as admin?i dont even have the option to run the script as admin wether vm or on main system is possible but no recommend, if you don't have experience with scripts, but you can try it. better use this script, check if you get different values for different spots The values from in town and out of town are definitely different with this script, though its hard to give an example since its hard to get the same location with free cursor Iam using ib too. What version of autohotkey are you using? SO? 32/64? works a charm for me now. Thanks =D nice Quote Share this post Link to post Share on other sites
Kousaka 1 Report post Posted September 26, 2013 What version of autohotkey are you using?v1.1.11.01SO? 32/64?win7 64okay now i changed the location to 656/563 in your first script SetBatchLines, -1 DetectHiddenWindows, On #SingleInstance ;get pixel color for active skill F3:: Loop { PixelGetColor, color, 656, 563 TrayTip,, %color%, 2 Sleep 1000 } return ;verify pixel color for active skill F4:: _activeSkillInTown := 0x686868 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMap := 0x627FDA ;pixel color for active skill for poe version 0.11.6b _activeSkillInMapInactive := 0x344757 ;pixel color for active skill for poe version 0.11.6b _inTown := 0 Loop ;active skill { if inMap() TrayTip,, In Map, 2 else if inTown() TrayTip,, In Town, 2 else TrayTip,, Checking..., 2 sleep 1000 } ; --check if we are in any map !!! inMap() { global IfWinExist, Path of Exile WinActivate PixelSearch, Px, Py, 656, 563, 656, 563, %_activeSkillInMap%, 0, Fast ;check for active skill if !ErrorLevel return true PixelSearch, Px, Py, 656, 563, 656, 563, %_activeSkillInMapInactive%, 0, Fast ;check for active skill if !ErrorLevel return true return false } ; --check if we are in town !!! inTown() { global PixelSearch, Px, Py, 656, 563, 656, 563, %_activeSkillInTown%, 0, Fast ;check for active skill if !ErrorLevel return true else return false } return esc:: msgbox script closed by user exitapp and it works, but i have no clue how to change the eeb script I actually got it to work, hell yeah. Thank you very much for helping me the whole time. Is it normal that he uses every flask once while enabling auras? Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 26, 2013 What version of autohotkey are you using?v1.1.11.01SO? 32/64?win7 64okay now i changed the location to 656/563 in your first script SetBatchLines, -1 DetectHiddenWindows, On #SingleInstance ;get pixel color for active skill F3:: Loop { PixelGetColor, color, 656, 563 TrayTip,, %color%, 2 Sleep 1000 } return ;verify pixel color for active skill F4:: _activeSkillInTown := 0x686868 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMap := 0x627FDA ;pixel color for active skill for poe version 0.11.6b _activeSkillInMapInactive := 0x344757 ;pixel color for active skill for poe version 0.11.6b _inTown := 0 Loop ;active skill { if inMap() TrayTip,, In Map, 2 else if inTown() TrayTip,, In Town, 2 else TrayTip,, Checking..., 2 sleep 1000 } ; --check if we are in any map !!! inMap() { global IfWinExist, Path of Exile WinActivate PixelSearch, Px, Py, 656, 563, 656, 563, %_activeSkillInMap%, 0, Fast ;check for active skill if !ErrorLevel return true PixelSearch, Px, Py, 656, 563, 656, 563, %_activeSkillInMapInactive%, 0, Fast ;check for active skill if !ErrorLevel return true return false } ; --check if we are in town !!! inTown() { global PixelSearch, Px, Py, 656, 563, 656, 563, %_activeSkillInTown%, 0, Fast ;check for active skill if !ErrorLevel return true else return false } return esc:: msgbox script closed by user exitapp and it works, but i have no clue how to change the eeb script ok in _eeb.ahk file search "655, 582, 655, 582", put your coords, they are 3 lines with those values. search "_activeSkillInTown := 0x565656", "_activeSkillInMap := 0x487DA2" and "_activeSkillInMapInactive := 0x344757" and change the values that you have found (3 lines too) Quote Share this post Link to post Share on other sites
Kousaka 1 Report post Posted September 26, 2013 Yeah seems to work really good, just stashed the stuff in inventory. Thanks again!! Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 26, 2013 Yeah seems to work really good, just stashed the stuff in inventory. Thanks again!! no problem. ^^ Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 27, 2013 sry I do not saw this question. Is it normal that he uses every flask once while enabling auras? yup It is a silly way to prevent be killed when doing auras. : / Quote Share this post Link to post Share on other sites
coller1432 0 Report post Posted September 27, 2013 I have problem on only stashing item. I know that in eeb.ini is config on stashing item : "stashGames =5" i change to 1 and no solved :<.> Quote Share this post Link to post Share on other sites
mkpoe 0 Report post Posted September 27, 2013 Not sure what I am doing wrong.. POE game opens.. Exiled Bot opens and is overlaid ontop of POE game. It just sits there and times out.. closes down and restarts. I double checked and triple checked all my paths.. not sure what I am missing. Any guidance would be appreciated Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 27, 2013 I have problem on only stashing item. I know that in eeb.ini is config on stashing item : "stashGames =5" i change to 1 and no solved :<.> in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz) Not sure what I am doing wrong.. POE game opens.. Exiled Bot opens and is overlaid ontop of POE game. It just sits there and times out.. closes down and restarts. I double checked and triple checked all my paths.. not sure what I am missing. Any guidance would be appreciated If poe and eb bot open then yours paths should be right, try to manually click the start button on eb gui. in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz) Quote Share this post Link to post Share on other sites
mkpoe 0 Report post Posted September 27, 2013 I have problem on only stashing item. I know that in eeb.ini is config on stashing item : "stashGames =5" i change to 1 and no solved :<.> in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz) Not sure what I am doing wrong.. POE game opens.. Exiled Bot opens and is overlaid ontop of POE game. It just sits there and times out.. closes down and restarts. I double checked and triple checked all my paths.. not sure what I am missing. Any guidance would be appreciated If poe and eb bot open then yours paths should be right, try to manually click the start button on eb gui. in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz) even if i manually put into the game, it still says searching to see if in town. even if i start the bot, it still says searching to see if in town. i am in 800 x 600 mode.. the bot runs fine.. i use an autohotkey gem leveler.. and works fine.. it is disabled during this however.. point is, autohotkey is installed correctly. it is the newest version, and i uninstalled and redownloaded it today. log file is below 27/09/2013 12:59:17 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 27/09/2013 13:01:18 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 27/09/2013 13:24:19 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 27/09/2013 13:25:05 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 27/09/2013 13:29:37 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 27/09/2013 15:54:07 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 27/09/2013 17:38:47 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 27/09/2013 17:38:55 Last Game: 0 Games Stash: 1 TotalTime: 8 s NewGameTimer: 8 s Current Game Time: 7885 s -Checking if we are in town 27/09/2013 17:38:57 Last Game: 0 Games Stash: 1 TotalTime: 10 s NewGameTimer: 10 s Current Game Time: 7887 s -Checking if we are in town 27/09/2013 17:38:58 Last Game: 0 Games Stash: 1 TotalTime: 11 s NewGameTimer: 11 s Current Game Time: 7888 s -Checking if we are in town 27/09/2013 17:38:59 Last Game: 0 Games Stash: 1 TotalTime: 12 s NewGameTimer: 12 s Current Game Time: 7890 s -Checking if we are in town 27/09/2013 17:39:01 Last Game: 0 Games Stash: 1 TotalTime: 14 s NewGameTimer: 14 s Current Game Time: 7891 s -Checking if we are in town 27/09/2013 17:39:02 Last Game: 0 Games Stash: 1 TotalTime: 15 s NewGameTimer: 15 s Current Game Time: 7892 s -Checking if we are in town 27/09/2013 17:39:03 Last Game: 0 Games Stash: 1 TotalTime: 16 s NewGameTimer: 16 s Current Game Time: 7894 s -Checking if we are in town 27/09/2013 17:39:05 Last Game: 0 Games Stash: 1 TotalTime: 18 s NewGameTimer: 18 s Current Game Time: 7895 s -Checking if we are in town 27/09/2013 17:39:06 Last Game: 0 Games Stash: 1 TotalTime: 19 s NewGameTimer: 19 s Current Game Time: 7896 s -Checking if we are in town 27/09/2013 17:39:08 Last Game: 0 Games Stash: 1 TotalTime: 21 s NewGameTimer: 21 s Current Game Time: 7898 s -Checking if we are in town 27/09/2013 17:39:09 Last Game: 0 Games Stash: 1 TotalTime: 22 s NewGameTimer: 22 s Current Game Time: 7899 s -Checking if we are in town 27/09/2013 17:39:10 Last Game: 0 Games Stash: 1 TotalTime: 23 s NewGameTimer: 23 s Current Game Time: 7900 s -Checking if we are in town 27/09/2013 17:39:12 Last Game: 0 Games Stash: 1 TotalTime: 25 s NewGameTimer: 25 s Current Game Time: 7902 s -Checking if we are in town 27/09/2013 17:39:13 Last Game: 0 Games Stash: 1 TotalTime: 26 s NewGameTimer: 26 s Current Game Time: 7903 s -Checking if we are in town 27/09/2013 17:39:14 Last Game: 0 Games Stash: 1 TotalTime: 27 s NewGameTimer: 27 s Current Game Time: 7905 s -Checking if we are in town 27/09/2013 17:39:16 Last Game: 0 Games Stash: 1 TotalTime: 29 s NewGameTimer: 29 s Current Game Time: 7906 s -Checking if we are in town 27/09/2013 17:39:17 Last Game: 0 Games Stash: 1 TotalTime: 30 s NewGameTimer: 30 s Current Game Time: 7907 s -Checking if we are in town 27/09/2013 17:39:18 Last Game: 0 Games Stash: 1 TotalTime: 31 s NewGameTimer: 31 s Current Game Time: 7909 s -Checking if we are in town 27/09/2013 17:39:20 Last Game: 0 Games Stash: 1 TotalTime: 33 s NewGameTimer: 33 s Current Game Time: 7910 s -Checking if we are in town 27/09/2013 17:39:21 Last Game: 0 Games Stash: 1 TotalTime: 34 s NewGameTimer: 34 s Current Game Time: 7911 s -Checking if we are in town 27/09/2013 17:39:23 Last Game: 0 Games Stash: 1 TotalTime: 35 s NewGameTimer: 35 s Current Game Time: 7913 s -Checking if we are in town 27/09/2013 17:39:24 Last Game: 0 Games Stash: 1 TotalTime: 37 s NewGameTimer: 37 s Current Game Time: 7914 s -Checking if we are in town 27/09/2013 17:39:25 Last Game: 0 Games Stash: 1 TotalTime: 38 s NewGameTimer: 38 s Current Game Time: 7915 s -Checking if we are in town 27/09/2013 17:39:27 Last Game: 0 Games Stash: 1 TotalTime: 40 s NewGameTimer: 40 s Current Game Time: 7917 s -Checking if we are in town 27/09/2013 17:39:28 Last Game: 0 Games Stash: 1 TotalTime: 41 s NewGameTimer: 41 s Current Game Time: 7918 s -Checking if we are in town 27/09/2013 17:39:29 Last Game: 0 Games Stash: 1 TotalTime: 42 s NewGameTimer: 42 s Current Game Time: 7920 s -Checking if we are in town 27/09/2013 17:39:31 Last Game: 0 Games Stash: 1 TotalTime: 44 s NewGameTimer: 44 s Current Game Time: 7921 s -Checking if we are in town 27/09/2013 17:39:32 Last Game: 0 Games Stash: 1 TotalTime: 45 s NewGameTimer: 45 s Current Game Time: 7922 s -Checking if we are in town 27/09/2013 17:39:33 Last Game: 0 Games Stash: 1 TotalTime: 46 s NewGameTimer: 46 s Current Game Time: 7924 s -Checking if we are in town 27/09/2013 17:39:35 Last Game: 0 Games Stash: 1 TotalTime: 48 s NewGameTimer: 48 s Current Game Time: 7925 s -Checking if we are in town 27/09/2013 17:39:36 Last Game: 0 Games Stash: 1 TotalTime: 49 s NewGameTimer: 49 s Current Game Time: 7926 s -Checking if we are in town 27/09/2013 17:39:38 Last Game: 0 Games Stash: 1 TotalTime: 51 s NewGameTimer: 51 s Current Game Time: 7928 s -Checking if we are in town 27/09/2013 17:39:39 Last Game: 0 Games Stash: 1 TotalTime: 52 s NewGameTimer: 52 s Current Game Time: 7929 s -Checking if we are in town 27/09/2013 17:39:40 Last Game: 0 Games Stash: 1 TotalTime: 53 s NewGameTimer: 53 s Current Game Time: 7930 s -Checking if we are in town 27/09/2013 17:39:42 Last Game: 0 Games Stash: 1 TotalTime: 55 s NewGameTimer: 55 s Current Game Time: 7932 s -Checking if we are in town 27/09/2013 17:39:43 Last Game: 0 Games Stash: 1 TotalTime: 56 s NewGameTimer: 56 s Current Game Time: 7933 s -Checking if we are in town 27/09/2013 17:39:44 Last Game: 0 Games Stash: 1 TotalTime: 57 s NewGameTimer: 57 s Current Game Time: 7935 s -Checking if we are in town 27/09/2013 17:39:46 Last Game: 0 Games Stash: 1 TotalTime: 59 s NewGameTimer: 59 s Current Game Time: 7936 s -Checking if we are in town 27/09/2013 17:39:47 Last Game: 0 Games Stash: 1 TotalTime: 60 s NewGameTimer: 60 s Current Game Time: 7937 s -Checking if we are in town 27/09/2013 17:39:49 Last Game: 0 Games Stash: 1 TotalTime: 62 s NewGameTimer: 62 s Current Game Time: 7939 s -Checking if we are in town 27/09/2013 17:39:50 Last Game: 0 Games Stash: 1 TotalTime: 63 s NewGameTimer: 63 s Current Game Time: 7940 s -Checking if we are in town 27/09/2013 17:39:51 Last Game: 0 Games Stash: 1 TotalTime: 64 s NewGameTimer: 64 s Current Game Time: 7941 s -Checking if we are in town 27/09/2013 17:39:53 Last Game: 0 Games Stash: 1 TotalTime: 66 s NewGameTimer: 66 s Current Game Time: 7943 s -Checking if we are in town 27/09/2013 17:39:54 Last Game: 0 Games Stash: 1 TotalTime: 67 s NewGameTimer: 67 s Current Game Time: 7944 s -Checking if we are in town 27/09/2013 17:39:55 Last Game: 0 Games Stash: 1 TotalTime: 68 s NewGameTimer: 68 s Current Game Time: 7945 s -Checking if we are in town 27/09/2013 17:39:57 Last Game: 0 Games Stash: 1 TotalTime: 70 s NewGameTimer: 70 s Current Game Time: 7947 s -Checking if we are in town 27/09/2013 17:39:58 Last Game: 0 Games Stash: 1 TotalTime: 71 s NewGameTimer: 71 s Current Game Time: 7948 s -Checking if we are in town 27/09/2013 17:39:59 Last Game: 0 Games Stash: 1 TotalTime: 72 s NewGameTimer: 72 s Current Game Time: 7950 s -Checking if we are in town 27/09/2013 17:40:01 Last Game: 0 Games Stash: 1 TotalTime: 74 s NewGameTimer: 74 s Current Game Time: 7951 s -Checking if we are in town 27/09/2013 17:40:02 Last Game: 0 Games Stash: 1 TotalTime: 75 s NewGameTimer: 75 s Current Game Time: 7952 s -Checking if we are in town 27/09/2013 17:40:04 Last Game: 0 Games Stash: 1 TotalTime: 76 s NewGameTimer: 76 s Current Game Time: 7954 s -Checking if we are in town 27/09/2013 17:40:05 Last Game: 0 Games Stash: 1 TotalTime: 78 s NewGameTimer: 78 s Current Game Time: 7955 s -Checking if we are in town 27/09/2013 17:40:06 Last Game: 0 Games Stash: 1 TotalTime: 79 s NewGameTimer: 79 s Current Game Time: 7956 s -Checking if we are in town 27/09/2013 17:40:08 Last Game: 0 Games Stash: 1 TotalTime: 81 s NewGameTimer: 81 s Current Game Time: 7958 s -Checking if we are in town 27/09/2013 17:40:09 Last Game: 0 Games Stash: 1 TotalTime: 82 s NewGameTimer: 82 s Current Game Time: 7959 s -Checking if we are in town 27/09/2013 17:40:10 Last Game: 0 Games Stash: 1 TotalTime: 83 s NewGameTimer: 83 s Current Game Time: 7960 s -Checking if we are in town 27/09/2013 17:40:12 Last Game: 0 Games Stash: 1 TotalTime: 85 s NewGameTimer: 85 s Current Game Time: 7962 s -Checking if we are in town 27/09/2013 17:40:13 Last Game: 0 Games Stash: 1 TotalTime: 86 s NewGameTimer: 86 s Current Game Time: 7963 s -Checking if we are in town 27/09/2013 17:40:14 Last Game: 0 Games Stash: 1 TotalTime: 87 s NewGameTimer: 87 s Current Game Time: 7965 s -Checking if we are in town 27/09/2013 17:40:16 Last Game: 0 Games Stash: 1 TotalTime: 89 s NewGameTimer: 89 s Current Game Time: 7966 s -Checking if we are in town 27/09/2013 17:40:17 Last Game: 0 Games Stash: 1 TotalTime: 90 s NewGameTimer: 90 s Current Game Time: 7967 s -Checking if we are in town 27/09/2013 17:40:19 Last Game: 0 Games Stash: 1 TotalTime: 92 s NewGameTimer: 92 s Current Game Time: 7969 s -Checking if we are in town 27/09/2013 17:40:20 Last Game: 0 Games Stash: 1 TotalTime: 93 s NewGameTimer: 93 s Current Game Time: 7970 s -Checking if we are in town 27/09/2013 17:40:21 Last Game: 0 Games Stash: 1 TotalTime: 94 s NewGameTimer: 94 s Current Game Time: 7971 s -Checking if we are in town 27/09/2013 17:40:23 Last Game: 0 Games Stash: 1 TotalTime: 96 s NewGameTimer: 96 s Current Game Time: 7973 s -Checking if we are in town 27/09/2013 17:40:24 Last Game: 0 Games Stash: 1 TotalTime: 97 s NewGameTimer: 97 s Current Game Time: 7974 s -Checking if we are in town 27/09/2013 17:40:25 Last Game: 0 Games Stash: 1 TotalTime: 98 s NewGameTimer: 98 s Current Game Time: 7976 s -Checking if we are in town 27/09/2013 17:40:27 Last Game: 0 Games Stash: 1 TotalTime: 100 s NewGameTimer: 100 s Current Game Time: 7977 s -Checking if we are in town 27/09/2013 17:40:28 Last Game: 0 Games Stash: 1 TotalTime: 101 s NewGameTimer: 101 s Current Game Time: 7978 s -Checking if we are in town 27/09/2013 17:40:30 Last Game: 0 Games Stash: 1 TotalTime: 102 s NewGameTimer: 102 s Current Game Time: 7980 s -Checking if we are in town 27/09/2013 17:40:31 Last Game: 0 Games Stash: 1 TotalTime: 104 s NewGameTimer: 104 s Current Game Time: 7981 s -Checking if we are in town 27/09/2013 17:40:32 Last Game: 0 Games Stash: 1 TotalTime: 105 s NewGameTimer: 105 s Current Game Time: 7982 s -Checking if we are in town 27/09/2013 17:40:34 Last Game: 0 Games Stash: 1 TotalTime: 107 s NewGameTimer: 107 s Current Game Time: 7984 s -Checking if we are in town 27/09/2013 17:40:35 Last Game: 0 Games Stash: 1 TotalTime: 108 s NewGameTimer: 108 s Current Game Time: 7985 s -Checking if we are in town 27/09/2013 17:40:36 Last Game: 0 Games Stash: 1 TotalTime: 109 s NewGameTimer: 109 s Current Game Time: 7987 s -Checking if we are in town 27/09/2013 17:40:38 Last Game: 0 Games Stash: 1 TotalTime: 111 s NewGameTimer: 111 s Current Game Time: 7988 s -Checking if we are in town 27/09/2013 17:40:39 Last Game: 0 Games Stash: 1 TotalTime: 112 s NewGameTimer: 112 s Current Game Time: 7989 s -Checking if we are in town 27/09/2013 17:40:40 Last Game: 0 Games Stash: 1 TotalTime: 113 s NewGameTimer: 113 s Current Game Time: 7991 s -Checking if we are in town 27/09/2013 17:40:42 Last Game: 0 Games Stash: 1 TotalTime: 115 s NewGameTimer: 115 s Current Game Time: 7992 s -Checking if we are in town 27/09/2013 17:40:43 Last Game: 0 Games Stash: 1 TotalTime: 116 s NewGameTimer: 116 s Current Game Time: 7993 s -Checking if we are in town 27/09/2013 17:40:45 Last Game: 0 Games Stash: 1 TotalTime: 118 s NewGameTimer: 118 s Current Game Time: 7995 s -Checking if we are in town 27/09/2013 17:40:46 Last Game: 0 Games Stash: 1 TotalTime: 119 s NewGameTimer: 119 s Current Game Time: 7996 s -Checking if we are in town 27/09/2013 17:40:47 Last Game: 0 Games Stash: 1 TotalTime: 120 s NewGameTimer: 120 s Current Game Time: 7997 s -Checking if we are in town 27/09/2013 17:40:49 Last Game: 0 Games Stash: 1 TotalTime: 121 s NewGameTimer: 121 s Current Game Time: 7999 s -Checking if we are in town 27/09/2013 17:40:50 Last Game: 0 Games Stash: 1 TotalTime: 123 s NewGameTimer: 123 s Current Game Time: 8000 s -Checking if we are in town 27/09/2013 17:40:51 Last Game: 0 Games Stash: 1 TotalTime: 124 s NewGameTimer: 124 s Current Game Time: 8001 s -Checking if we are in town 27/09/2013 17:40:53 Last Game: 0 Games Stash: 1 TotalTime: 126 s NewGameTimer: 126 s Current Game Time: 8003 s -Checking if we are in town 27/09/2013 17:40:54 Last Game: 0 Games Stash: 1 TotalTime: 127 s NewGameTimer: 127 s Current Game Time: 8004 s -Checking if we are in town 27/09/2013 17:40:55 Last Game: 0 Games Stash: 1 TotalTime: 128 s NewGameTimer: 128 s Current Game Time: 8005 s -Checking if we are in town 27/09/2013 17:40:57 Last Game: 0 Games Stash: 1 TotalTime: 130 s NewGameTimer: 130 s Current Game Time: 8007 s -Checking if we are in town 27/09/2013 17:40:58 Last Game: 0 Games Stash: 1 TotalTime: 131 s NewGameTimer: 131 s Current Game Time: 8008 s -Checking if we are in town 27/09/2013 17:40:59 Last Game: 0 Games Stash: 1 TotalTime: 132 s NewGameTimer: 132 s Current Game Time: 8010 s -Checking if we are in town 27/09/2013 17:41:01 Last Game: 0 Games Stash: 1 TotalTime: 134 s NewGameTimer: 134 s Current Game Time: 8011 s -Checking if we are in town 27/09/2013 17:41:02 Last Game: 0 Games Stash: 1 TotalTime: 135 s NewGameTimer: 135 s Current Game Time: 8012 s -Checking if we are in town 27/09/2013 17:41:04 Last Game: 0 Games Stash: 1 TotalTime: 137 s NewGameTimer: 137 s Current Game Time: 8014 s -Checking if we are in town 27/09/2013 17:41:05 Last Game: 0 Games Stash: 1 TotalTime: 138 s NewGameTimer: 138 s Current Game Time: 8015 s -Checking if we are in town 27/09/2013 17:41:06 Last Game: 0 Games Stash: 1 TotalTime: 139 s NewGameTimer: 139 s Current Game Time: 8016 s -Checking if we are in town 27/09/2013 17:41:08 Last Game: 0 Games Stash: 1 TotalTime: 141 s NewGameTimer: 141 s Current Game Time: 8018 s -Checking if we are in town 27/09/2013 17:41:09 Last Game: 0 Games Stash: 1 TotalTime: 142 s NewGameTimer: 142 s Current Game Time: 8019 s -Checking if we are in town 27/09/2013 17:41:10 Last Game: 0 Games Stash: 1 TotalTime: 143 s NewGameTimer: 143 s Current Game Time: 8020 s -Checking if we are in town 27/09/2013 17:41:12 Last Game: 0 Games Stash: 1 TotalTime: 145 s NewGameTimer: 145 s Current Game Time: 8022 s -Checking if we are in town 27/09/2013 17:41:13 Last Game: 0 Games Stash: 1 TotalTime: 146 s NewGameTimer: 146 s Current Game Time: 8023 s -Checking if we are in town 27/09/2013 17:41:14 Last Game: 0 Games Stash: 1 TotalTime: 147 s NewGameTimer: 147 s Current Game Time: 8025 s -Checking if we are in town 27/09/2013 17:41:16 Last Game: 0 Games Stash: 1 TotalTime: 149 s NewGameTimer: 149 s Current Game Time: 8026 s -Checking if we are in town 27/09/2013 17:41:17 Last Game: 0 Games Stash: 1 TotalTime: 150 s NewGameTimer: 150 s Current Game Time: 8027 s -Checking if we are in town 27/09/2013 17:41:19 Last Game: 0 Games Stash: 1 TotalTime: 152 s NewGameTimer: 152 s Current Game Time: 8029 s -Checking if we are in town 27/09/2013 17:41:20 Last Game: 0 Games Stash: 1 TotalTime: 153 s NewGameTimer: 153 s Current Game Time: 8030 s -Checking if we are in town 27/09/2013 17:41:21 Last Game: 0 Games Stash: 1 TotalTime: 154 s NewGameTimer: 154 s Current Game Time: 8031 s -Checking if we are in town 27/09/2013 17:41:23 Last Game: 0 Games Stash: 1 TotalTime: 156 s NewGameTimer: 156 s Current Game Time: 8033 s -Checking if we are in town 27/09/2013 17:41:24 Last Game: 0 Games Stash: 1 TotalTime: 157 s NewGameTimer: 157 s Current Game Time: 8034 s -Checking if we are in town 27/09/2013 17:41:25 Last Game: 0 Games Stash: 1 TotalTime: 158 s NewGameTimer: 158 s Current Game Time: 8036 s -Checking if we are in town 27/09/2013 17:41:27 Last Game: 0 Games Stash: 1 TotalTime: 160 s NewGameTimer: 160 s Current Game Time: 8037 s -Checking if we are in town 27/09/2013 17:41:28 Last Game: 0 Games Stash: 1 TotalTime: 161 s NewGameTimer: 161 s Current Game Time: 8038 s -Checking if we are in town 27/09/2013 17:41:29 Last Game: 0 Games Stash: 1 TotalTime: 162 s NewGameTimer: 162 s Current Game Time: 8040 s -Checking if we are in town 27/09/2013 17:41:31 Last Game: 0 Games Stash: 1 TotalTime: 164 s NewGameTimer: 164 s Current Game Time: 8041 s -Checking if we are in town 27/09/2013 17:41:32 Last Game: 0 Games Stash: 1 TotalTime: 165 s NewGameTimer: 165 s Current Game Time: 8042 s -Checking if we are in town 27/09/2013 17:41:34 Last Game: 0 Games Stash: 1 TotalTime: 167 s NewGameTimer: 167 s Current Game Time: 8044 s -Checking if we are in town 27/09/2013 17:41:35 Last Game: 0 Games Stash: 1 TotalTime: 168 s NewGameTimer: 168 s Current Game Time: 8045 s -Checking if we are in town 27/09/2013 17:41:36 Last Game: 0 Games Stash: 1 TotalTime: 169 s NewGameTimer: 169 s Current Game Time: 8046 s -Checking if we are in town 27/09/2013 17:41:38 Last Game: 0 Games Stash: 1 TotalTime: 171 s NewGameTimer: 171 s Current Game Time: 8048 s -Checking if we are in town 27/09/2013 17:41:39 Last Game: 0 Games Stash: 1 TotalTime: 172 s NewGameTimer: 172 s Current Game Time: 8049 s -Checking if we are in town 27/09/2013 17:41:40 Last Game: 0 Games Stash: 1 TotalTime: 173 s NewGameTimer: 173 s Current Game Time: 8051 s -Checking if we are in town 27/09/2013 17:41:42 Last Game: 0 Games Stash: 1 TotalTime: 175 s NewGameTimer: 175 s Current Game Time: 8052 s -Checking if we are in town 27/09/2013 17:41:43 Last Game: 0 Games Stash: 1 TotalTime: 176 s NewGameTimer: 176 s Current Game Time: 8053 s -Checking if we are in town 27/09/2013 17:41:44 Last Game: 0 Games Stash: 1 TotalTime: 177 s NewGameTimer: 177 s Current Game Time: 8055 s -Checking if we are in town 27/09/2013 17:41:46 Last Game: 0 Games Stash: 1 TotalTime: 179 s NewGameTimer: 179 s Current Game Time: 8056 s -Checking if we are in town 27/09/2013 17:41:47 Last Game: 0 Games Stash: 1 TotalTime: 180 s NewGameTimer: 180 s Current Game Time: 8057 s -Checking if we are in town 27/09/2013 17:41:48 Last Game: 0 Games Stash: 1 TotalTime: 181 s NewGameTimer: 181 s Current Game Time: 8058 s Maximum time without a game reached, restarting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 27/09/2013 17:41:48 Restart Bot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 27/09/2013 17:41:48 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! and thanks for the response!.. anxious to try it. btw.. i did set the settings you mentioned above as well. Quote Share this post Link to post Share on other sites
jpbot 6 Report post Posted September 27, 2013 I have problem on only stashing item. I know that in eeb.ini is config on stashing item : "stashGames =5" i change to 1 and no solved :<.> in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz) Not sure what I am doing wrong.. POE game opens.. Exiled Bot opens and is overlaid ontop of POE game. It just sits there and times out.. closes down and restarts. I double checked and triple checked all my paths.. not sure what I am missing. Any guidance would be appreciated If poe and eb bot open then yours paths should be right, try to manually click the start button on eb gui. in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz) even if i manually put into the game, it still says searching to see if in town. even if i start the bot, it still says searching to see if in town. i am in 800 x 600 mode.. the bot runs fine.. i use an autohotkey gem leveler.. and works fine.. it is disabled during this however.. point is, autohotkey is installed correctly. it is the newest version, and i uninstalled and redownloaded it today. log file is below and thanks for the response!.. anxious to try it. btw.. i did set the settings you mentioned above as well. seems like exiledbot it is not starting, thats why I ask you to click manually the start button on exiledbot but my script it is not detecting town : / for this last problem try this: can you copy/paste this script in a file named check.town.ahk Open poe. Run the script. Press F4 for check town (ESC close the script) Stay in town and go out of town. Check if detect town work. (you would see a message on trybar "In town", "In map" or "Checking...") SetBatchLines, -1 DetectHiddenWindows, On #SingleInstance ;get pixel color for active skill F3:: Loop { PixelGetColor, color, 655, 582 TrayTip,, %color%, 2 Sleep 1000 } return ;verify pixel color for active skill F4:: _activeSkillInTown := 0x565656 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMap := 0x487DA2 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMapInactive := 0x344757 ;pixel color for active skill for poe version 0.11.6b _inTown := 0 Loop ;active skill { if inMap() TrayTip,, In Map, 2 else if inTown() TrayTip,, In Town, 2 else TrayTip,, Checking..., 2 sleep 1000 } ; --check if we are in any map !!! inMap() { global IfWinExist, Path of Exile WinActivate PixelSearch, Px, Py, 655, 582, 655, 582, %_activeSkillInMap%, 0, Fast ;check for active skill if !ErrorLevel return true PixelSearch, Px, Py, 655, 582, 655, 582, %_activeSkillInMapInactive%, 0, Fast ;check for active skill if !ErrorLevel return true return false } ; --check if we are in town !!! inTown() { global PixelSearch, Px, Py, 655, 582, 655, 582, %_activeSkillInTown%, 0, Fast ;check for active skill if !ErrorLevel return true else return false } return esc:: msgbox script closed by user exitapp then Open poe Run Script check.town Press F3 write the pixel color that you get in town (ex. 0x565656) go out of town write the pixel color you get. out of town use all your mana and then write the pixel color you get. now in file check.town.ahk change this values for the ones you got before _activeSkillInTown := 0x565656 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMap := 0x487DA2 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMapInactive := 0x344757 ;pixel color for active skill for poe version 0.11.6b run script again press f4 post if it works Quote Share this post Link to post Share on other sites
Swifty 1 Report post Posted September 27, 2013 hey jp i seem to lose my stash? heres log 27/09/2013 19:32:52 Last Game: 222 Games Stash: 2 TotalTime: 3912 s NewGameTimer: 8 s Current Game Time: 360 s -Bot paused 27/09/2013 19:32:53 Last Game: 222 Games Stash: 2 TotalTime: 3912 s NewGameTimer: 8 s Current Game Time: 361 s -@Town Show labels 27/09/2013 19:32:56 Last Game: 222 Games Stash: 1 TotalTime: 3916 s NewGameTimer: 12 s Current Game Time: 364 s -@Town Stash opended found 27/09/2013 19:32:57 Last Game: 222 Games Stash: 1 TotalTime: 3916 s NewGameTimer: 12 s Current Game Time: 365 s -@Town ControlKey Hold 27/09/2013 19:33:14 Last Game: 222 Games Stash: 1 TotalTime: 3933 s NewGameTimer: 30 s Current Game Time: 382 s -@Town ControlKey release 27/09/2013 19:33:15 Last Game: 222 Games Stash: 1 TotalTime: 3934 s NewGameTimer: 30 s Current Game Time: 383 s -@Town Show labels off 27/09/2013 19:33:16 Last Game: 222 Games Stash: 1 TotalTime: 3935 s NewGameTimer: 31 s Current Game Time: 384 s -Bot paused off 27/09/2013 19:33:17 Last Game: 222 Games Stash: 1 TotalTime: 3937 s NewGameTimer: 33 s Current Game Time: 385 s -Checking if we are in town 27/09/2013 19:33:19 Last Game: 222 Games Stash: 1 TotalTime: 3938 s NewGameTimer: 34 s Current Game Time: 386 s -Checking if we are in town 27/09/2013 19:33:20 Last Game: 222 Games Stash: 1 TotalTime: 3939 s NewGameTimer: 35 s Current Game Time: 388 s -Checking if we are in town 27/09/2013 19:33:21 Last Game: 222 Games Stash: 1 TotalTime: 3941 s NewGameTimer: 37 s Current Game Time: 389 s -Checking if we are in town 27/09/2013 19:33:23 Last Game: 222 Games Stash: 1 TotalTime: 3942 s NewGameTimer: 38 s Current Game Time: 390 s -Checking if we are in town 27/09/2013 19:33:24 Last Game: 222 Games Stash: 1 TotalTime: 3943 s NewGameTimer: 39 s Current Game Time: 392 s -Checking if we are in town 27/09/2013 19:38:01 Last Game: 223 Games Stash: 2 TotalTime: 4220 s NewGameTimer: 3 s Current Game Time: 277 s End game********************* 27/09/2013 19:38:02 Last Game: 223 Games Stash: 2 TotalTime: 4221 s NewGameTimer: 4 s Current Game Time: 278 s -Checking if we are in town 27/09/2013 19:38:03 Last Game: 223 Games Stash: 2 TotalTime: 4223 s NewGameTimer: 5 s Current Game Time: 279 s -Checking if we are in town 27/09/2013 19:38:05 Last Game: 223 Games Stash: 2 TotalTime: 4224 s NewGameTimer: 7 s Current Game Time: 280 s -Checking if we are in town 27/09/2013 19:38:06 Last Game: 223 Games Stash: 2 TotalTime: 4225 s NewGameTimer: 8 s Current Game Time: 282 s -Checking if we are in town 27/09/2013 19:38:07 Last Game: 223 Games Stash: 2 TotalTime: 4226 s NewGameTimer: 9 s Current Game Time: 283 s -Bot paused 27/09/2013 19:38:08 Last Game: 223 Games Stash: 2 TotalTime: 4227 s NewGameTimer: 10 s Current Game Time: 283 s -@Town Show labels 27/09/2013 19:38:11 Last Game: 223 Games Stash: 1 TotalTime: 4230 s NewGameTimer: 13 s Current Game Time: 287 s -@Town Stash opended found 27/09/2013 19:38:11 Last Game: 223 Games Stash: 1 TotalTime: 4231 s NewGameTimer: 13 s Current Game Time: 287 s -@Town ControlKey Hold 27/09/2013 19:38:29 Last Game: 223 Games Stash: 1 TotalTime: 4248 s NewGameTimer: 31 s Current Game Time: 304 s -@Town ControlKey release 27/09/2013 19:38:30 Last Game: 223 Games Stash: 1 TotalTime: 4249 s NewGameTimer: 32 s Current Game Time: 305 s -@Town Show labels off 27/09/2013 19:38:30 Last Game: 223 Games Stash: 1 TotalTime: 4250 s NewGameTimer: 32 s Current Game Time: 306 s -Bot paused off 27/09/2013 19:38:32 Last Game: 223 Games Stash: 1 TotalTime: 4251 s NewGameTimer: 34 s Current Game Time: 307 s -Checking if we are in town 27/09/2013 19:38:33 Last Game: 223 Games Stash: 1 TotalTime: 4252 s NewGameTimer: 35 s Current Game Time: 309 s -Checking if we are in town 27/09/2013 19:38:34 Last Game: 223 Games Stash: 1 TotalTime: 4254 s NewGameTimer: 37 s Current Game Time: 310 s -Checking if we are in town 27/09/2013 19:38:36 Last Game: 223 Games Stash: 1 TotalTime: 4255 s NewGameTimer: 38 s Current Game Time: 312 s -Checking if we are in town 27/09/2013 19:38:37 Last Game: 223 Games Stash: 1 TotalTime: 4257 s NewGameTimer: 39 s Current Game Time: 313 s -Checking if we are in town 27/09/2013 19:38:39 Last Game: 223 Games Stash: 1 TotalTime: 4258 s NewGameTimer: 41 s Current Game Time: 314 s -Checking if we are in town 27/09/2013 19:38:40 Last Game: 223 Games Stash: 1 TotalTime: 4259 s NewGameTimer: 42 s Current Game Time: 316 s -Checking if we are in town 27/09/2013 19:38:41 Last Game: 223 Games Stash: 1 TotalTime: 4261 s NewGameTimer: 43 s Current Game Time: 317 s -Checking if we are in town 27/09/2013 19:38:48 Last Game: 223 Games Stash: 1 TotalTime: 4268 s NewGameTimer: 1 s Current Game Time: 7 s long Stuck??????? 27/09/2013 19:40:32 Last Game: 224 Games Stash: 2 TotalTime: 4371 s NewGameTimer: 3 s Current Game Time: 111 s End game********************* 27/09/2013 19:40:32 Last Game: 224 Games Stash: 2 TotalTime: 4372 s NewGameTimer: 3 s Current Game Time: 111 s Minimum game length ********************* 27/09/2013 19:40:43 Last Game: 224 Games Stash: 2 TotalTime: 4382 s NewGameTimer: 13 s Current Game Time: 21893 s Minimum game length reached ********************* 27/09/2013 19:40:44 Last Game: 224 Games Stash: 2 TotalTime: 4383 s NewGameTimer: 15 s Current Game Time: 21895 s -Checking if we are in town 27/09/2013 19:40:45 Last Game: 224 Games Stash: 2 TotalTime: 4384 s NewGameTimer: 16 s Current Game Time: 21896 s -Bot paused 27/09/2013 19:40:46 Last Game: 224 Games Stash: 2 TotalTime: 4385 s NewGameTimer: 16 s Current Game Time: 21896 s -@Town Show labels 27/09/2013 19:40:53 Last Game: 224 Games Stash: 2 TotalTime: 4392 s NewGameTimer: 24 s Current Game Time: 21903 s -@Town Stash opended not found!!!!! 27/09/2013 19:40:53 Last Game: 224 Games Stash: 2 TotalTime: 4393 s NewGameTimer: 24 s Current Game Time: 21904 s -@Town Show labels off 27/09/2013 19:40:54 Last Game: 224 Games Stash: 2 TotalTime: 4394 s NewGameTimer: 25 s Current Game Time: 21905 s -Bot paused off heres the point it changes from found to not found. it comes up randomly and i get a full inventory Quote Share this post Link to post Share on other sites