Jump to content

mkpoe

Elite+
  • Content Count

    52
  • Joined

  • Last visited

Posts posted by mkpoe


  1. interesting recipe? the best one is the rares

    trade a full set of rares to vendor.. and you get 2 chaos.

    would be badass if you can have bot pick up and keep track of rares.. like you have a rare unid chest .. so i am not going to pick up another.. once you get a full set.. upgrade to 20% quality and vendor that for 3 chaos orbs.

    you do that, i will buy you a 30 pack :)


  2. ok.. first off, gained a lot of ground here.

    the image search script you wrote failed to detect anything. i already did make my own images last night.. still failed. i did change and put the images into the same folder as the script.. then edited your AHK script to reflect the same.. and now works perfectly.. stashes everything. btw.. i did not get an error saying it could not find the image folder.. but for some reason i could not get it to look in that folder for the image search.. but when i edited your script and put in the same path as the script works fine... dunno

    ok.. the calculator thing.. i played with that.. and buttons 14 and 15 make 96 for me. so i am going to play with the button number until i get it to click start bot.

    thanks for all the help, sorry for being a pita. i am headed out of town, but will leave some feedback later on what i did.

    no problem.

    for searching the button number use Window Spy

    Check ClasNN of "Start Bot" Button

    1. Run AutoIt3 Window Spy (in same folder than autohotkey)

    2. Open Exiledbot

    3. Select Exiledbot window

    4. Move mouse to "Start Bot" Button

    5. Check ClasNN of "Start Bot" Button @ Window Spy

    The button was correct.. it almost seems like something is wrong with the information in the INI. What is wierd, I have to put the paths into the INI and things start up fine. All I had to do to fix the button was put the window title name for the exiled bot into your AHK script. Once I did that it works flawlessly. The pictures like I said previously worked fine once I put them into the same directory as the ahk, but I would bet it would have worked if I put the folder address into your ahk instead of using the INI.

    In the INI, I know I must have the correct information.. because I copied what I had written down and pasted directly into the script and it worked fine. And after failing so many times wondering what kind of tard i am, i used windows spy to verify the window title name.

    In case it would be any help.. I run as ASUS g7 laptop. i7, 12 gb ram, solid state drive, windows 7 ultimate, nvidia geforce gtx 560m video.

    What is super curious to me, is why my colors were different.. and why your ahk could not read from your ini when installed on my computer, and so many others were not having issues. i am not a programmer, but have written some automated scripts on my own with little problem.. and WHY these issues, it just baffles me. Tip my hat to you though.. the unstick you have.. cause bot will walk into corners.. your method of unsticking is flawless and badass.. stashing is incredible. I did use my own images.. i made last night wondering if that could be why.. i never went back to yours.. but i did watch for quite some time, and it stashes EVERY TIME. I saw a post a few pages back, someone had that issue...

    Thanks again


  3. for imagesearch try this:

    Test Imagesearch

    1. Make a file named "check.imagesearch.eeb.ahk" copy paste this code in that file, put that file in same folder than eeb.ini file.

    #SingleInstance
    CoordMode, Pixel, Relative
    
    
    IniRead, _path_images, %A_WorkingDir%\EEB.ini, general, path_images
    
    IfNotExist, %_path_images%
    {
        MsgBox, The folder don't exists.
        exitapp
    }
    
    _resurrect := 0 ;
    _aura := 0 ;
    _gemplus := 0 ;
    _stash := 0 ;
    _stashopened := 0 ;
    _destroy := 0 ;
    
    F4:: 
    
        TrayTip,, Starting..., 3
        FileAppend, %A_DD%/%A_MM%/%A_YYYY% %A_Hour%:%A_Min%:%A_Sec% Inicio!!!!!!!!!!!!!!!!!!!!!  `n, test.image.search.eeb.txt
        Loop
        {
    
            ;check resurrect
            if _resurrect = 0
            {
                Loop, 3 
                {
                    ImageSearch, Px, Py, 200,60, 600, 500,*100 %_path_images%\resurrect.png
                    if !ErrorLevel
                    {
                        MouseMove ,%Px%, %Py%        						
                        FileAppend, %A_DD%/%A_MM%/%A_YYYY% %A_Hour%:%A_Min%:%A_Sec% resurrect.png ok  `n, test.image.search.eeb.txt
                        _resurrect := 1
                        break
                    }	
                    Sleep 50        
                }
            }
    
            ;check aura
            if _aura = 0
            {
                Loop, 5 
                {
                    ImageSearch, Px, Py, 519,593, 654, 605,*100 %_path_images%\aura.png
                    if !ErrorLevel
                    {
                        MouseMove ,%Px%, %Py%        						
                        FileAppend, %A_DD%/%A_MM%/%A_YYYY% %A_Hour%:%A_Min%:%A_Sec% aura.png ok  `n, test.image.search.eeb.txt
                        _aura := 1
                        break
                    }	
                    Sleep 50        
                }
            }
    
            ;check gemplus
            if _gemplus = 0
            {
                Loop, 3 
                {
                    ImageSearch, Px, Py, 448,518, 590, 536,*100 %_path_images%\gemplus.png
                    if !ErrorLevel
                    {
                        MouseMove ,%Px%, %Py%        						
                        FileAppend, %A_DD%/%A_MM%/%A_YYYY% %A_Hour%:%A_Min%:%A_Sec% gemplus.png ok  `n, test.image.search.eeb.txt
                        _gemplus := 1
                        break
                    }	
                    Sleep 50        
                }
            }
            
            ;check stash
            if _stash = 0
            {
                Loop, 3 
                {
                    ImageSearch, Px, Py, 0,0, 800, 600,*100 %_path_images%\stash.png
                    if !ErrorLevel
                    {
                        MouseMove ,%Px%, %Py%        						
                        FileAppend, %A_DD%/%A_MM%/%A_YYYY% %A_Hour%:%A_Min%:%A_Sec% stash.png ok  `n, test.image.search.eeb.txt
                        _stash := 1
                        break
                    }	
                    Sleep 50        
                }
            }
    
            ;check stash.opened
            if _stashopened = 0
            {
                Loop, 3 
                {
                    ImageSearch, Px, Py, 110,45, 270, 90,*110 %_path_images%\stash.opened.png
                    if !ErrorLevel
                    {
                        MouseMove ,%Px%, %Py%        						
                        FileAppend, %A_DD%/%A_MM%/%A_YYYY% %A_Hour%:%A_Min%:%A_Sec% stash.opened.png ok  `n, test.image.search.eeb.txt
                        _stashopened := 1
                        break
                    }	
                    Sleep 50        
                }
            }
            
            ;check destroy
            if _destroy = 0
            {
                Loop, 3 
                {
                    ImageSearch, Px, Py, 275,290, 550, 370,*100 %_path_images%\destroy.png
                    if !ErrorLevel
                    {
                        MouseMove ,%Px%, %Py%        						
                        FileAppend, %A_DD%/%A_MM%/%A_YYYY% %A_Hour%:%A_Min%:%A_Sec% destroy.png ok  `n, test.image.search.eeb.txt
                        _destroy := 1
                        break
                    }	
                    Sleep 50        
                }    
            }
            
            Sleep 500 
    
        }
    
        
    
    
    return
    
    
    
    esc::
    	msgbox script closed by user
        FileAppend, %A_DD%/%A_MM%/%A_YYYY% %A_Hour%:%A_Min%:%A_Sec% Fin!!!!!!!!!!!!!!!!!!!!!  `n, test.image.search.eeb.txt
    exitapp
    
    

    2. Run the script.

    3. Press F4.

    4. Go out of town and die, if you are hc do not do this :P wait 5 seconds.

    5. Go out of town and use any aura(should be on one of the defult slots QWERT) wait 5 seconds.

    6. In town, walk close to stash and press the key for showing labels, wait 5 seconds.

    7. In town, open inventory (you should have a gem ready to be upped), wait 5 seconds.

    8. In town, open stash, wait 5 seconds.

    9. In town, take any item and drop it, wait 5 seconds.

    10. Press ESC to exit scrip.

    11. Open file test.image.search.eeb.txt.

    You should see something like this:

    resurrect.png ok

    aura.png ok

    gemplus.png ok

    stash.png ok

    stash.opened.png ok

    destroy.png

    If any of those lines is mis(except "resurrect.png ok" if you are hc), _eeb.ahk script, may should not work for you : /

    If Imagesearch not working or missing some of they, try this:

    Solutions:

    Option 1:

    Search all occurrences of "ImageSearch" you should see a line like this (??? can be any value)

    ImageSearch, Px, Py, ???,???, ???, ???,*100 %_path_images%\???.png 
    
    change *100 for *110 or *120 or *130

    Option 2:

    Make your own images.

    Check the original image, take a ss, cut the part that you need, save with the original name, check if work, repeat for any image that you are missing.

    Option 3:

    ??????

    -------------------------

    let me think about the click problem : /

    Edit:

    Testing ControlClick

    I use ControlClick because it send actions even if window it is inactive.

    I want to test if ControlClick work for you.

    Add this code to file test.stuff.ahk, at the end of script should be ok

    F2::
    
    	name_win := "Calc"
    
    	IfWinExist , %name_win%
    	{	
    		ControlClick, Button16, %name_win% ;Button16 number 9
    		ControlClick, Button17, %name_win% ;Button17 number 6
    		if ErrorLevel 
    			msgbox error @ click
    		Sleep 1000	
    	}
    	else
    	{
    		msgbox windows not found
    	}
    return	
    

    1. Open Windows Calculator and minimize it

    2. Run test.stuff.ahk script

    3. Press F2

    4. Check if number 96 appears in Calculator

    5. Comment.

    ok.. first off, gained a lot of ground here.

    the image search script you wrote failed to detect anything. i already did make my own images last night.. still failed. i did change and put the images into the same folder as the script.. then edited your AHK script to reflect the same.. and now works perfectly.. stashes everything. btw.. i did not get an error saying it could not find the image folder.. but for some reason i could not get it to look in that folder for the image search.. but when i edited your script and put in the same path as the script works fine... dunno

    ok.. the calculator thing.. i played with that.. and buttons 14 and 15 make 96 for me. so i am going to play with the button number until i get it to click start bot.

    thanks for all the help, sorry for being a pita. i am headed out of town, but will leave some feedback later on what i did.


  4. save this code as test.stuff.ahk put that file in same folder than eeb.ini file

    #SingleInstance
    CoordMode, Pixel, Relative
    IniRead, _path_bot, %A_WorkingDir%\EEB.ini, general, path_bot
    IniRead, _name_bot, %A_WorkingDir%\EEB.ini, general, name_bot
    
    
    F3::
    
    	Run, %_name_bot%, %_path_bot%, , EB_PID
    	if ErrorLevel = ERROR
    	{
    		MsgBox Cant open %_path_bot%\%_name_bot%
    		exitapp
    		
    	}
    	
    	WinWait, ahk_pid %EB_PID%,,5	
    	
    	WinGetTitle, _name_bot_win, ahk_pid %EB_PID%
    
    	winactivate, ahk_pid %EB_PID%
    
    	IfWinExist , ahk_pid %EB_PID%
    	{	
    		loop, 2
    		{			
    			SetControlDelay -1
    			PostMessage, 0x201, , , Button1, ahk_pid %EB_PID% 
    			PostMessage, 0x202, , , Button1, ahk_pid %EB_PID%
    			TrayTip, done..., 2			
    			Sleep 1000	
    		}
    	}
    	
    	
    return
    
    	
    esc::
    	msgbox script closed by user
    exitapp
    

    Run test.stuff.ahk

    Press F3.

    The script run "exiledbot" and press start button.

    comment.

    the script says Done... 2

    but it doesnt press the button.. because if i press it, it says game not found.. it does however open up the POE bot.

    search in test.stuff.ahk and replace this lines:

    			PostMessage, 0x201, , , Button1, ahk_pid %EB_PID% 
    			PostMessage, 0x202, , , Button1, ahk_pid %EB_PID%
    

    with this

    ControlClick, Button1,  ahk_pid %EB_PID% 
    

    check again.

    negative..

    still starts the bot.. but still doesnt click the button


  5. save this code as test.stuff.ahk put that file in same folder than eeb.ini file

    #SingleInstance
    CoordMode, Pixel, Relative
    IniRead, _path_bot, %A_WorkingDir%\EEB.ini, general, path_bot
    IniRead, _name_bot, %A_WorkingDir%\EEB.ini, general, name_bot
    
    
    F3::
    
    	Run, %_name_bot%, %_path_bot%, , EB_PID
    	if ErrorLevel = ERROR
    	{
    		MsgBox Cant open %_path_bot%\%_name_bot%
    		exitapp
    		
    	}
    	
    	WinWait, ahk_pid %EB_PID%,,5	
    	
    	WinGetTitle, _name_bot_win, ahk_pid %EB_PID%
    
    	winactivate, ahk_pid %EB_PID%
    
    	IfWinExist , ahk_pid %EB_PID%
    	{	
    		loop, 2
    		{			
    			SetControlDelay -1
    			PostMessage, 0x201, , , Button1, ahk_pid %EB_PID% 
    			PostMessage, 0x202, , , Button1, ahk_pid %EB_PID%
    			TrayTip, done..., 2			
    			Sleep 1000	
    		}
    	}
    	
    	
    return
    
    	
    esc::
    	msgbox script closed by user
    exitapp
    

    Run test.stuff.ahk

    Press F3.

    The script run "exiledbot" and press start button.

    comment.

    the script says Done... 2

    but it doesnt press the button.. because if i press it, it says game not found.. it does however open up the POE bot.


  6. 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 :P

    Ok, this is really interesting.. my color values using your script are off by 1 digit for what you have in the bot.

    _activeSkillInTown := 0x575757 ;pixel color for active skill for poe version 0.11.6b

    _activeSkillInMap := 0x487EA2 ;pixel color for active skill for poe version 0.11.6b

    _activeSkillInMapInactive := 0x344857 ;pixel color for active skill for poe version 0.11.6b.

    This time.. when I pressed start bot, things worked fine.. saw i was in town, checked inventory and started to run (I edited the bot AHK to match the numbers to try)

    So, how do I go about fixing it so it actually presses "Start Bot" seems to be the only thing screwed up now.

    Appreciate the help :)


  7. 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.

×
×
  • Create New...