Jump to content

Join our Slack

Talk to other users and have a great time
Slack Server

Welcome to our Community

Click here to get your Exiled Bot license
Donation Store
Sign in to follow this  
jpbot

Enhanced ExileBot (EEB) ahk script v2.1

Recommended Posts

hey jp

i seem to lose my stash?

heres log

...

heres the point it changes from found to not found.

it comes up randomly and i get a full inventory :(

yes its a problem with my script not finding the image of stash when it is open.

I have that problem sometimes, but I can't catch when happens, and normally works a few runs later

you can trys this, in _eeb.ahk search for

ImageSearch, Px, Py, 0,0, 800, 600,*110 %_path_images%\stash.opened.png
change *110 for *120 or *130 (max value is 250 but if you put 250 would match almost everything)

to look like this

ImageSearch, Px, Py, 0,0, 800, 600,*120 %_path_images%\stash.opened.png

Share this post


Link to post
Share on other sites

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 :)

Share this post


Link to post
Share on other sites

this config needs to be set correctly i think

;##############################################################################

;

; GAME AND Exiledbot PATHS & NAMES

;

;##############################################################################

;

; *path_poe => C:\Program Files (x86)\Grinding Gear Games\Path of Exile

;

; *path_bot => C:\exiled\

;

; *name_poe => Client

;

; *name_bot => exiledbot.exe

;

; *name_poe_win => Path of Exile

;

; *name_bot_win => Exiledbot v0.9b

;

; *path_images => C:\exiled\images

;

;==============================================================================

path_poe =C:\Program Files (x86)\Grinding Gear Games\Path of Exile

path_bot =C:\exiled\

name_poe =PathOfExile.exe

name_bot =ExiledBot.exe

name_poe_win =Path of Exile

name_bot_win =ExiledBot v0.9b

path_images =C:\exiled\images

;==============================================================================

Share this post


Link to post
Share on other sites

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 :)

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.

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

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)

Ok, im run the bot for few minutes on configuration :

writelog    =1
trylog      =1
upGems      =1
stashGames  =1

And my logs:

28/09/2013 05:53:20 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:53:29 Last Game: 77 Games Stash: 1  TotalTime: 8 s NewGameTimer: 8 s Current Game Time: 72156 s  -Checking if we are in town 
28/09/2013 05:53:30 Last Game: 77 Games Stash: 1  TotalTime: 10 s NewGameTimer: 10 s Current Game Time: 72157 s  -Checking if we are in town 
28/09/2013 05:53:31 Last Game: 77 Games Stash: 1  TotalTime: 11 s NewGameTimer: 11 s Current Game Time: 72158 s  -Checking if we are in town 
28/09/2013 05:53:32 Last Game: 77 Games Stash: 1  TotalTime: 12 s NewGameTimer: 12 s Current Game Time: 72160 s  -Checking if we are in town 
28/09/2013 05:53:34 Last Game: 77 Games Stash: 1  TotalTime: 13 s NewGameTimer: 13 s Current Game Time: 72161 s  -Checking if we are in town 
28/09/2013 05:53:35 Last Game: 77 Games Stash: 1  TotalTime: 15 s NewGameTimer: 15 s Current Game Time: 72162 s  -Checking if we are in town 
28/09/2013 05:53:36 Last Game: 77 Games Stash: 1  TotalTime: 16 s NewGameTimer: 16 s Current Game Time: 72164 s  -Checking if we are in town 
28/09/2013 05:53:37 Last Game: 77 Games Stash: 1  TotalTime: 17 s NewGameTimer: 17 s Current Game Time: 72165 s  -Checking if we are in town 
28/09/2013 05:53:39 Last Game: 77 Games Stash: 1  TotalTime: 18 s NewGameTimer: 18 s Current Game Time: 72166 s  -Checking if we are in town 
28/09/2013 05:53:40 Last Game: 77 Games Stash: 1  TotalTime: 20 s NewGameTimer: 20 s Current Game Time: 72167 s  -Checking if we are in town 
28/09/2013 05:53:41 Last Game: 77 Games Stash: 1  TotalTime: 21 s NewGameTimer: 21 s Current Game Time: 72169 s  -Checking if we are in town 
28/09/2013 05:53:42 Last Game: 77 Games Stash: 1  TotalTime: 22 s NewGameTimer: 22 s Current Game Time: 72170 s  -Checking if we are in town 
28/09/2013 05:53:44 Last Game: 77 Games Stash: 1  TotalTime: 24 s NewGameTimer: 24 s Current Game Time: 72171 s  -Checking if we are in town 
28/09/2013 05:53:45 Last Game: 77 Games Stash: 1  TotalTime: 25 s NewGameTimer: 25 s Current Game Time: 72172 s  -Checking if we are in town 
28/09/2013 05:53:46 Last Game: 77 Games Stash: 1  TotalTime: 26 s NewGameTimer: 26 s Current Game Time: 72174 s  -Checking if we are in town 
28/09/2013 05:53:48 Last Game: 77 Games Stash: 1  TotalTime: 27 s NewGameTimer: 27 s Current Game Time: 72175 s  -Checking if we are in town 
28/09/2013 05:53:49 Last Game: 77 Games Stash: 1  TotalTime: 29 s NewGameTimer: 29 s Current Game Time: 72176 s  -Checking if we are in town 
28/09/2013 05:53:50 Last Game: 77 Games Stash: 1  TotalTime: 30 s NewGameTimer: 30 s Current Game Time: 72177 s  -Checking if we are in town 
28/09/2013 05:53:51 Last Game: 77 Games Stash: 1  TotalTime: 31 s NewGameTimer: 31 s Current Game Time: 72179 s  -Checking if we are in town 
28/09/2013 05:53:53 Last Game: 77 Games Stash: 1  TotalTime: 32 s NewGameTimer: 32 s Current Game Time: 72180 s  -Checking if we are in town 
28/09/2013 05:53:54 Last Game: 77 Games Stash: 1  TotalTime: 34 s NewGameTimer: 34 s Current Game Time: 72181 s  -Checking if we are in town 
28/09/2013 05:53:55 Last Game: 77 Games Stash: 1  TotalTime: 35 s NewGameTimer: 35 s Current Game Time: 72182 s  -Checking if we are in town 
28/09/2013 05:53:56 Last Game: 77 Games Stash: 1  TotalTime: 36 s NewGameTimer: 36 s Current Game Time: 72184 s  -Checking if we are in town 
28/09/2013 05:53:57 Last Game: 77 Games Stash: 1  TotalTime: 37 s NewGameTimer: 37 s Current Game Time: 72185 s  -Bot paused 
28/09/2013 05:53:58 Last Game: 77 Games Stash: 1  TotalTime: 38 s NewGameTimer: 38 s Current Game Time: 72185 s  -Inventory open @up gems 
28/09/2013 05:53:58 Last Game: 77 Games Stash: 1  TotalTime: 38 s NewGameTimer: 38 s Current Game Time: 72186 s  -Inventory closed @up gems 
28/09/2013 05:53:59 Last Game: 77 Games Stash: 1  TotalTime: 39 s NewGameTimer: 39 s Current Game Time: 72186 s  -@Town Show labels 
28/09/2013 05:54:07 Last Game: 77 Games Stash: 1  TotalTime: 46 s NewGameTimer: 46 s Current Game Time: 72194 s  -@Town Stash opended not found!!!!! 
28/09/2013 05:54:07 Last Game: 77 Games Stash: 1  TotalTime: 47 s NewGameTimer: 47 s Current Game Time: 72195 s  -@Town Show labels off 
28/09/2013 05:54:08 Last Game: 77 Games Stash: 1  TotalTime: 48 s NewGameTimer: 48 s Current Game Time: 72195 s  -Bot paused off 
28/09/2013 05:54:09 Last Game: 77 Games Stash: 1  TotalTime: 49 s NewGameTimer: 49 s Current Game Time: 72197 s  -Checking if we are in town 
28/09/2013 05:54:11 Last Game: 77 Games Stash: 1  TotalTime: 50 s NewGameTimer: 50 s Current Game Time: 72198 s  -Checking if we are in town 
28/09/2013 05:54:12 Last Game: 77 Games Stash: 1  TotalTime: 52 s NewGameTimer: 52 s Current Game Time: 72199 s  -Checking if we are in town 
28/09/2013 05:54:13 Last Game: 77 Games Stash: 1  TotalTime: 53 s NewGameTimer: 53 s Current Game Time: 72200 s  -Checking if we are in town 
28/09/2013 05:54:14 Last Game: 77 Games Stash: 1  TotalTime: 54 s NewGameTimer: 54 s Current Game Time: 72202 s  -Checking if we are in town 
28/09/2013 05:54:16 Last Game: 77 Games Stash: 1  TotalTime: 55 s NewGameTimer: 55 s Current Game Time: 72203 s  -Checking if we are in town 
28/09/2013 05:54:17 Last Game: 77 Games Stash: 1  TotalTime: 57 s NewGameTimer: 57 s Current Game Time: 72204 s  -Checking if we are in town 
28/09/2013 05:54:18 Last Game: 77 Games Stash: 1  TotalTime: 58 s NewGameTimer: 58 s Current Game Time: 72206 s  -Checking if we are in town 
28/09/2013 05:54:19 Last Game: 77 Games Stash: 1  TotalTime: 59 s NewGameTimer: 59 s Current Game Time: 72207 s  -Checking if we are in town 
28/09/2013 05:54:21 Last Game: 77 Games Stash: 1  TotalTime: 60 s NewGameTimer: 60 s Current Game Time: 72208 s  -Checking if we are in town 
28/09/2013 05:54:22 Last Game: 77 Games Stash: 1  TotalTime: 62 s NewGameTimer: 62 s Current Game Time: 72209 s  -Checking if we are in town 
28/09/2013 05:54:23 Last Game: 77 Games Stash: 1  TotalTime: 63 s NewGameTimer: 63 s Current Game Time: 72211 s  -Checking if we are in town 
28/09/2013 05:54:25 Last Game: 77 Games Stash: 1  TotalTime: 64 s NewGameTimer: 64 s Current Game Time: 72212 s  -Checking if we are in town 
28/09/2013 05:54:26 Last Game: 77 Games Stash: 1  TotalTime: 66 s NewGameTimer: 66 s Current Game Time: 72213 s  -Checking if we are in town 
28/09/2013 05:54:27 Last Game: 77 Games Stash: 1  TotalTime: 67 s NewGameTimer: 67 s Current Game Time: 72214 s  -Checking if we are in town 
28/09/2013 05:54:28 Last Game: 77 Games Stash: 1  TotalTime: 68 s NewGameTimer: 68 s Current Game Time: 72216 s  -Checking if we are in town 
28/09/2013 05:54:30 Last Game: 77 Games Stash: 1  TotalTime: 69 s NewGameTimer: 69 s Current Game Time: 72217 s  -Checking if we are in town 
28/09/2013 05:54:31 Last Game: 77 Games Stash: 1  TotalTime: 71 s NewGameTimer: 71 s Current Game Time: 72218 s  -Checking if we are in town 
28/09/2013 05:54:32 Last Game: 77 Games Stash: 1  TotalTime: 72 s NewGameTimer: 72 s Current Game Time: 72219 s  -Checking if we are in town 
28/09/2013 05:54:33 Last Game: 77 Games Stash: 1  TotalTime: 73 s NewGameTimer: 73 s Current Game Time: 72221 s  -Checking if we are in town 
28/09/2013 05:54:35 Last Game: 77 Games Stash: 1  TotalTime: 74 s NewGameTimer: 74 s Current Game Time: 72222 s  -Checking if we are in town 
28/09/2013 05:54:36 Last Game: 77 Games Stash: 1  TotalTime: 76 s NewGameTimer: 76 s Current Game Time: 72223 s  -Checking if we are in town 
28/09/2013 05:54:37 Last Game: 77 Games Stash: 1  TotalTime: 77 s NewGameTimer: 77 s Current Game Time: 72224 s  -Checking if we are in town 
28/09/2013 05:54:38 Last Game: 77 Games Stash: 1  TotalTime: 78 s NewGameTimer: 78 s Current Game Time: 72226 s  -Checking if we are in town 
28/09/2013 05:54:40 Last Game: 77 Games Stash: 1  TotalTime: 79 s NewGameTimer: 79 s Current Game Time: 72227 s  -Checking if we are in town 
28/09/2013 05:54:41 Last Game: 77 Games Stash: 1  TotalTime: 81 s NewGameTimer: 81 s Current Game Time: 72228 s  -Checking if we are in town 
28/09/2013 05:54:42 Last Game: 77 Games Stash: 1  TotalTime: 82 s NewGameTimer: 82 s Current Game Time: 72230 s  -Checking if we are in town 
28/09/2013 05:54:43 Last Game: 77 Games Stash: 1  TotalTime: 83 s NewGameTimer: 83 s Current Game Time: 72231 s  -Checking if we are in town 
28/09/2013 05:54:45 Last Game: 77 Games Stash: 1  TotalTime: 84 s NewGameTimer: 84 s Current Game Time: 72232 s  -Checking if we are in town 
28/09/2013 05:54:46 Last Game: 77 Games Stash: 1  TotalTime: 86 s NewGameTimer: 86 s Current Game Time: 72233 s  -Checking if we are in town 
28/09/2013 05:54:47 Last Game: 77 Games Stash: 1  TotalTime: 87 s NewGameTimer: 87 s Current Game Time: 72235 s  -Checking if we are in town 
28/09/2013 05:54:49 Last Game: 77 Games Stash: 1  TotalTime: 88 s NewGameTimer: 88 s Current Game Time: 72236 s  -Checking if we are in town 
28/09/2013 05:54:50 Last Game: 77 Games Stash: 1  TotalTime: 90 s NewGameTimer: 90 s Current Game Time: 72237 s  -Checking if we are in town 
28/09/2013 05:54:51 Last Game: 77 Games Stash: 1  TotalTime: 91 s NewGameTimer: 91 s Current Game Time: 72238 s  -Checking if we are in town 
28/09/2013 05:54:52 Last Game: 77 Games Stash: 1  TotalTime: 92 s NewGameTimer: 92 s Current Game Time: 72240 s  -Checking if we are in town 
28/09/2013 05:54:54 Last Game: 77 Games Stash: 1  TotalTime: 93 s NewGameTimer: 93 s Current Game Time: 72241 s  -Checking if we are in town 
28/09/2013 05:54:55 Last Game: 77 Games Stash: 1  TotalTime: 95 s NewGameTimer: 95 s Current Game Time: 72242 s  -Checking if we are in town 
28/09/2013 05:54:56 Last Game: 77 Games Stash: 1  TotalTime: 96 s NewGameTimer: 96 s Current Game Time: 72243 s  -Checking if we are in town 
28/09/2013 05:54:57 Last Game: 77 Games Stash: 1  TotalTime: 97 s NewGameTimer: 97 s Current Game Time: 72245 s  -Checking if we are in town 
28/09/2013 05:54:59 Last Game: 77 Games Stash: 1  TotalTime: 98 s NewGameTimer: 98 s Current Game Time: 72246 s  -Checking if we are in town 
28/09/2013 05:55:00 Last Game: 77 Games Stash: 1  TotalTime: 100 s NewGameTimer: 100 s Current Game Time: 72247 s  -Checking if we are in town 
28/09/2013 05:55:01 Last Game: 77 Games Stash: 1  TotalTime: 101 s NewGameTimer: 101 s Current Game Time: 72248 s  -Checking if we are in town 
28/09/2013 05:55:02 Last Game: 77 Games Stash: 1  TotalTime: 102 s NewGameTimer: 102 s Current Game Time: 72250 s  -Checking if we are in town 
28/09/2013 05:55:04 Last Game: 77 Games Stash: 1  TotalTime: 103 s NewGameTimer: 103 s Current Game Time: 72251 s  -Checking if we are in town 
28/09/2013 05:55:05 Last Game: 77 Games Stash: 1  TotalTime: 105 s NewGameTimer: 105 s Current Game Time: 72252 s  -Checking if we are in town 
28/09/2013 05:55:06 Last Game: 77 Games Stash: 1  TotalTime: 106 s NewGameTimer: 106 s Current Game Time: 72254 s  -Checking if we are in town 
28/09/2013 05:55:07 Last Game: 77 Games Stash: 1  TotalTime: 107 s NewGameTimer: 107 s Current Game Time: 72255 s  -Checking if we are in town 
28/09/2013 05:55:09 Last Game: 77 Games Stash: 1  TotalTime: 108 s NewGameTimer: 108 s Current Game Time: 72256 s  -Checking if we are in town 
28/09/2013 05:55:10 Last Game: 77 Games Stash: 1  TotalTime: 110 s NewGameTimer: 110 s Current Game Time: 72257 s  -Checking if we are in town 
28/09/2013 05:55:11 Last Game: 77 Games Stash: 1  TotalTime: 111 s NewGameTimer: 111 s Current Game Time: 72259 s  -Checking if we are in town 
28/09/2013 05:55:13 Last Game: 77 Games Stash: 1  TotalTime: 112 s NewGameTimer: 112 s Current Game Time: 72260 s  -Checking if we are in town 
28/09/2013 05:55:14 Last Game: 77 Games Stash: 1  TotalTime: 114 s NewGameTimer: 114 s Current Game Time: 72261 s  -Checking if we are in town 
28/09/2013 05:55:15 Last Game: 77 Games Stash: 1  TotalTime: 115 s NewGameTimer: 115 s Current Game Time: 72262 s  -Checking if we are in town 
28/09/2013 05:55:16 Last Game: 77 Games Stash: 1  TotalTime: 116 s NewGameTimer: 116 s Current Game Time: 72264 s  -Checking if we are in town 
28/09/2013 05:55:18 Last Game: 77 Games Stash: 1  TotalTime: 117 s NewGameTimer: 117 s Current Game Time: 72265 s  -Checking if we are in town 
28/09/2013 05:55:19 Last Game: 77 Games Stash: 1  TotalTime: 119 s NewGameTimer: 119 s Current Game Time: 72266 s  -Checking if we are in town 
28/09/2013 05:55:20 Last Game: 77 Games Stash: 1  TotalTime: 120 s NewGameTimer: 120 s Current Game Time: 72267 s  -Checking if we are in town 
28/09/2013 05:55:21 Last Game: 77 Games Stash: 1  TotalTime: 121 s NewGameTimer: 121 s Current Game Time: 72269 s  -Checking if we are in town 
28/09/2013 05:55:23 Last Game: 77 Games Stash: 1  TotalTime: 122 s NewGameTimer: 122 s Current Game Time: 72270 s  -Checking if we are in town 
28/09/2013 05:55:24 Last Game: 77 Games Stash: 1  TotalTime: 124 s NewGameTimer: 124 s Current Game Time: 72271 s  -Checking if we are in town 
28/09/2013 05:55:25 Last Game: 77 Games Stash: 1  TotalTime: 125 s NewGameTimer: 125 s Current Game Time: 72272 s  -Checking if we are in town 
28/09/2013 05:55:26 Last Game: 77 Games Stash: 1  TotalTime: 126 s NewGameTimer: 126 s Current Game Time: 72274 s  -Checking if we are in town 
28/09/2013 05:55:28 Last Game: 77 Games Stash: 1  TotalTime: 127 s NewGameTimer: 127 s Current Game Time: 72275 s  -Checking if we are in town 
28/09/2013 05:55:29 Last Game: 77 Games Stash: 1  TotalTime: 129 s NewGameTimer: 129 s Current Game Time: 72276 s  -Checking if we are in town 
28/09/2013 05:55:30 Last Game: 77 Games Stash: 1  TotalTime: 130 s NewGameTimer: 130 s Current Game Time: 72278 s  -Checking if we are in town 
28/09/2013 05:55:32 Last Game: 77 Games Stash: 1  TotalTime: 131 s NewGameTimer: 131 s Current Game Time: 72279 s  -Checking if we are in town 
28/09/2013 05:55:33 Last Game: 77 Games Stash: 1  TotalTime: 133 s NewGameTimer: 133 s Current Game Time: 72280 s  -Checking if we are in town 
28/09/2013 05:55:34 Last Game: 77 Games Stash: 1  TotalTime: 134 s NewGameTimer: 134 s Current Game Time: 72281 s  -Checking if we are in town 
28/09/2013 05:55:35 Last Game: 77 Games Stash: 1  TotalTime: 135 s NewGameTimer: 135 s Current Game Time: 72283 s  -Checking if we are in town 
28/09/2013 05:55:37 Last Game: 77 Games Stash: 1  TotalTime: 136 s NewGameTimer: 136 s Current Game Time: 72284 s  -Checking if we are in town 
28/09/2013 05:55:38 Last Game: 77 Games Stash: 1  TotalTime: 138 s NewGameTimer: 138 s Current Game Time: 72285 s  -Checking if we are in town 
28/09/2013 05:55:39 Last Game: 77 Games Stash: 1  TotalTime: 139 s NewGameTimer: 139 s Current Game Time: 72286 s  -Checking if we are in town 
28/09/2013 05:55:40 Last Game: 77 Games Stash: 1  TotalTime: 140 s NewGameTimer: 140 s Current Game Time: 72288 s  -Checking if we are in town 
28/09/2013 05:55:42 Last Game: 77 Games Stash: 1  TotalTime: 141 s NewGameTimer: 141 s Current Game Time: 72289 s  -Checking if we are in town 
28/09/2013 05:55:43 Last Game: 77 Games Stash: 1  TotalTime: 143 s NewGameTimer: 143 s Current Game Time: 72290 s  -Checking if we are in town 
28/09/2013 05:55:44 Last Game: 77 Games Stash: 1  TotalTime: 144 s NewGameTimer: 144 s Current Game Time: 72291 s  -Checking if we are in town 
28/09/2013 05:55:45 Last Game: 77 Games Stash: 1  TotalTime: 145 s NewGameTimer: 145 s Current Game Time: 72293 s  -Checking if we are in town 
28/09/2013 05:55:47 Last Game: 77 Games Stash: 1  TotalTime: 146 s NewGameTimer: 146 s Current Game Time: 72294 s  -Checking if we are in town 
28/09/2013 05:55:48 Last Game: 77 Games Stash: 1  TotalTime: 148 s NewGameTimer: 148 s Current Game Time: 72295 s  -Checking if we are in town 
28/09/2013 05:55:49 Last Game: 77 Games Stash: 1  TotalTime: 149 s NewGameTimer: 149 s Current Game Time: 72297 s  -Checking if we are in town 
28/09/2013 05:55:50 Last Game: 77 Games Stash: 1  TotalTime: 150 s NewGameTimer: 150 s Current Game Time: 72298 s  -Checking if we are in town 
28/09/2013 05:55:52 Last Game: 77 Games Stash: 1  TotalTime: 151 s NewGameTimer: 151 s Current Game Time: 72299 s  -Checking if we are in town 
28/09/2013 05:55:53 Last Game: 77 Games Stash: 1  TotalTime: 153 s NewGameTimer: 153 s Current Game Time: 72300 s  -Checking if we are in town 
28/09/2013 05:55:54 Last Game: 77 Games Stash: 1  TotalTime: 154 s NewGameTimer: 154 s Current Game Time: 72302 s  -Checking if we are in town 
28/09/2013 05:55:56 Last Game: 77 Games Stash: 1  TotalTime: 155 s NewGameTimer: 155 s Current Game Time: 72303 s  -Checking if we are in town 
28/09/2013 05:55:57 Last Game: 77 Games Stash: 1  TotalTime: 157 s NewGameTimer: 157 s Current Game Time: 72304 s  -Checking if we are in town 
28/09/2013 05:55:58 Last Game: 77 Games Stash: 1  TotalTime: 158 s NewGameTimer: 158 s Current Game Time: 72305 s  -Checking if we are in town 
28/09/2013 05:55:59 Last Game: 77 Games Stash: 1  TotalTime: 159 s NewGameTimer: 159 s Current Game Time: 72307 s  -Checking if we are in town 
28/09/2013 05:56:01 Last Game: 77 Games Stash: 1  TotalTime: 160 s NewGameTimer: 160 s Current Game Time: 72308 s  -Checking if we are in town 
28/09/2013 05:56:02 Last Game: 77 Games Stash: 1  TotalTime: 162 s NewGameTimer: 162 s Current Game Time: 72309 s  -Checking if we are in town 
28/09/2013 05:56:03 Last Game: 77 Games Stash: 1  TotalTime: 163 s NewGameTimer: 163 s Current Game Time: 72310 s  -Checking if we are in town 
28/09/2013 05:56:04 Last Game: 77 Games Stash: 1  TotalTime: 164 s NewGameTimer: 164 s Current Game Time: 72312 s  -Checking if we are in town 
28/09/2013 05:56:06 Last Game: 77 Games Stash: 1  TotalTime: 165 s NewGameTimer: 165 s Current Game Time: 72313 s  -Checking if we are in town 
28/09/2013 05:56:07 Last Game: 77 Games Stash: 1  TotalTime: 167 s NewGameTimer: 167 s Current Game Time: 72314 s  -Checking if we are in town 
28/09/2013 05:56:08 Last Game: 77 Games Stash: 1  TotalTime: 168 s NewGameTimer: 168 s Current Game Time: 72315 s  -Checking if we are in town 
28/09/2013 05:56:09 Last Game: 77 Games Stash: 1  TotalTime: 169 s NewGameTimer: 169 s Current Game Time: 72317 s  -Checking if we are in town 
28/09/2013 05:56:11 Last Game: 77 Games Stash: 1  TotalTime: 170 s NewGameTimer: 170 s Current Game Time: 72318 s  -Checking if we are in town 
28/09/2013 05:56:12 Last Game: 77 Games Stash: 1  TotalTime: 172 s NewGameTimer: 172 s Current Game Time: 72319 s  -Checking if we are in town 
28/09/2013 05:56:13 Last Game: 77 Games Stash: 1  TotalTime: 173 s NewGameTimer: 173 s Current Game Time: 72321 s  -Checking if we are in town 
28/09/2013 05:56:14 Last Game: 77 Games Stash: 1  TotalTime: 174 s NewGameTimer: 174 s Current Game Time: 72322 s  -Checking if we are in town 
28/09/2013 05:56:16 Last Game: 77 Games Stash: 1  TotalTime: 175 s NewGameTimer: 175 s Current Game Time: 72323 s  -Checking if we are in town 
28/09/2013 05:56:17 Last Game: 77 Games Stash: 1  TotalTime: 177 s NewGameTimer: 177 s Current Game Time: 72324 s  -Checking if we are in town 
28/09/2013 05:56:18 Last Game: 77 Games Stash: 1  TotalTime: 178 s NewGameTimer: 178 s Current Game Time: 72326 s  -Checking if we are in town 
28/09/2013 05:56:20 Last Game: 77 Games Stash: 1  TotalTime: 179 s NewGameTimer: 179 s Current Game Time: 72327 s  -Checking if we are in town 
28/09/2013 05:56:21 Last Game: 77 Games Stash: 1  TotalTime: 181 s NewGameTimer: 181 s Current Game Time: 72328 s  -Checking if we are in town 
28/09/2013 05:56:21 Last Game: 77 Games Stash: 1  TotalTime: 181 s NewGameTimer: 181 s Current Game Time: 72328 s  Maximum time without a game reached, restarting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:56:21 Restart Bot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:56:21 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:56:39 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:56:48 Last Game: 77 Games Stash: 1  TotalTime: 8 s NewGameTimer: 8 s Current Game Time: 72355 s  -Checking if we are in town 
28/09/2013 05:56:49 Last Game: 77 Games Stash: 1  TotalTime: 10 s NewGameTimer: 10 s Current Game Time: 72356 s  -Checking if we are in town 
28/09/2013 05:56:50 Last Game: 77 Games Stash: 1  TotalTime: 11 s NewGameTimer: 11 s Current Game Time: 72357 s  -Checking if we are in town 
28/09/2013 05:56:51 Last Game: 77 Games Stash: 1  TotalTime: 12 s NewGameTimer: 12 s Current Game Time: 72359 s  -Checking if we are in town 
28/09/2013 05:56:53 Last Game: 77 Games Stash: 1  TotalTime: 13 s NewGameTimer: 13 s Current Game Time: 72360 s  -Checking if we are in town 
28/09/2013 05:56:54 Last Game: 77 Games Stash: 1  TotalTime: 15 s NewGameTimer: 15 s Current Game Time: 72361 s  -Checking if we are in town 
28/09/2013 05:56:55 Last Game: 77 Games Stash: 1  TotalTime: 16 s NewGameTimer: 16 s Current Game Time: 72362 s  -Checking if we are in town 
28/09/2013 05:56:56 Last Game: 77 Games Stash: 1  TotalTime: 17 s NewGameTimer: 17 s Current Game Time: 72364 s  -Checking if we are in town 
28/09/2013 05:56:58 Last Game: 77 Games Stash: 1  TotalTime: 18 s NewGameTimer: 18 s Current Game Time: 72365 s  -Checking if we are in town 
28/09/2013 05:56:59 Last Game: 77 Games Stash: 1  TotalTime: 20 s NewGameTimer: 20 s Current Game Time: 72366 s  -Checking if we are in town 
28/09/2013 05:57:00 Last Game: 77 Games Stash: 1  TotalTime: 21 s NewGameTimer: 21 s Current Game Time: 72368 s  -Checking if we are in town 
28/09/2013 05:57:01 Last Game: 77 Games Stash: 1  TotalTime: 22 s NewGameTimer: 22 s Current Game Time: 72369 s  -Checking if we are in town 
28/09/2013 05:57:03 Last Game: 77 Games Stash: 1  TotalTime: 23 s NewGameTimer: 23 s Current Game Time: 72370 s  -Checking if we are in town 
28/09/2013 05:57:04 Last Game: 77 Games Stash: 1  TotalTime: 25 s NewGameTimer: 25 s Current Game Time: 72371 s  -Checking if we are in town 
28/09/2013 05:57:05 Last Game: 77 Games Stash: 1  TotalTime: 26 s NewGameTimer: 26 s Current Game Time: 72373 s  -Checking if we are in town 
28/09/2013 05:57:06 Last Game: 77 Games Stash: 1  TotalTime: 27 s NewGameTimer: 27 s Current Game Time: 72374 s  -Checking if we are in town 
28/09/2013 05:57:08 Last Game: 77 Games Stash: 1  TotalTime: 28 s NewGameTimer: 28 s Current Game Time: 72375 s  -Checking if we are in town 
28/09/2013 05:57:09 Last Game: 77 Games Stash: 1  TotalTime: 30 s NewGameTimer: 30 s Current Game Time: 72376 s  -Checking if we are in town 
28/09/2013 05:57:10 Last Game: 77 Games Stash: 1  TotalTime: 31 s NewGameTimer: 31 s Current Game Time: 72378 s  -Checking if we are in town 
28/09/2013 05:57:11 Last Game: 77 Games Stash: 1  TotalTime: 32 s NewGameTimer: 32 s Current Game Time: 72379 s  -Checking if we are in town 
28/09/2013 05:57:13 Last Game: 77 Games Stash: 1  TotalTime: 34 s NewGameTimer: 34 s Current Game Time: 72380 s  -Checking if we are in town 
28/09/2013 05:57:14 Last Game: 77 Games Stash: 1  TotalTime: 35 s NewGameTimer: 35 s Current Game Time: 72381 s  -Checking if we are in town 
28/09/2013 05:57:15 Last Game: 77 Games Stash: 1  TotalTime: 36 s NewGameTimer: 36 s Current Game Time: 72382 s  -Bot paused 
28/09/2013 05:57:16 Last Game: 77 Games Stash: 1  TotalTime: 36 s NewGameTimer: 36 s Current Game Time: 72383 s  -Inventory open @up gems 
28/09/2013 05:57:16 Last Game: 77 Games Stash: 1  TotalTime: 37 s NewGameTimer: 37 s Current Game Time: 72383 s  -Inventory closed @up gems 
28/09/2013 05:57:17 Last Game: 77 Games Stash: 1  TotalTime: 37 s NewGameTimer: 37 s Current Game Time: 72384 s  -@Town Show labels 
28/09/2013 05:57:24 Last Game: 77 Games Stash: 1  TotalTime: 45 s NewGameTimer: 45 s Current Game Time: 72392 s  -@Town Stash opended not found!!!!! 
28/09/2013 05:57:25 Last Game: 77 Games Stash: 1  TotalTime: 46 s NewGameTimer: 46 s Current Game Time: 72392 s  -@Town Show labels off 
28/09/2013 05:57:26 Last Game: 77 Games Stash: 1  TotalTime: 47 s NewGameTimer: 47 s Current Game Time: 72393 s  -Bot paused off 
28/09/2013 05:57:27 Last Game: 77 Games Stash: 1  TotalTime: 48 s NewGameTimer: 48 s Current Game Time: 72394 s  -Checking if we are in town 
28/09/2013 05:57:28 Last Game: 77 Games Stash: 1  TotalTime: 49 s NewGameTimer: 49 s Current Game Time: 72396 s  -Checking if we are in town 
28/09/2013 05:57:30 Last Game: 77 Games Stash: 1  TotalTime: 50 s NewGameTimer: 50 s Current Game Time: 72397 s  -Checking if we are in town 
28/09/2013 05:57:31 Last Game: 77 Games Stash: 1  TotalTime: 52 s NewGameTimer: 52 s Current Game Time: 72398 s  -Checking if we are in town 
28/09/2013 05:57:32 Last Game: 77 Games Stash: 1  TotalTime: 53 s NewGameTimer: 53 s Current Game Time: 72399 s  -Checking if we are in town 
28/09/2013 05:57:33 Last Game: 77 Games Stash: 1  TotalTime: 54 s NewGameTimer: 54 s Current Game Time: 72401 s  -Checking if we are in town 
28/09/2013 05:57:35 Last Game: 77 Games Stash: 1  TotalTime: 55 s NewGameTimer: 55 s Current Game Time: 72402 s  -Checking if we are in town 
28/09/2013 05:57:36 Last Game: 77 Games Stash: 1  TotalTime: 57 s NewGameTimer: 57 s Current Game Time: 72403 s  -Checking if we are in town 
28/09/2013 05:57:36 Last Game: 77 Games Stash: 1  TotalTime: 57 s NewGameTimer: 0 s Current Game Time: 0 s  Auras Starting 
28/09/2013 05:57:37 Last Game: 77 Games Stash: 1  TotalTime: 58 s NewGameTimer: 1 s Current Game Time: 1 s  Auras done 
28/09/2013 05:57:43 Last Game: 77 Games Stash: 1  TotalTime: 64 s NewGameTimer: 1 s Current Game Time: 7 s  long Stuck??????? 
28/09/2013 06:03:17 Last Game: 77 Games Stash: 1  TotalTime: 398 s NewGameTimer: 0 s Current Game Time: 341 s  Maximum Game Length reached, restarting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 06:03:17 Restart Bot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 06:03:17 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 06:03:35 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 06:03:43 Last Game: 77 Games Stash: 1  TotalTime: 8 s NewGameTimer: 8 s Current Game Time: 72771 s  -Checking if we are in town 
28/09/2013 06:03:45 Last Game: 77 Games Stash: 1  TotalTime: 10 s NewGameTimer: 10 s Current Game Time: 72772 s  -Checking if we are in town 
28/09/2013 06:03:46 Last Game: 77 Games Stash: 1  TotalTime: 11 s NewGameTimer: 11 s Current Game Time: 72773 s  -Checking if we are in town 
28/09/2013 06:03:47 Last Game: 77 Games Stash: 1  TotalTime: 12 s NewGameTimer: 12 s Current Game Time: 72774 s  -Checking if we are in town 
28/09/2013 06:03:48 Last Game: 77 Games Stash: 1  TotalTime: 13 s NewGameTimer: 13 s Current Game Time: 72776 s  -Checking if we are in town 
28/09/2013 06:03:50 Last Game: 77 Games Stash: 1  TotalTime: 15 s NewGameTimer: 15 s Current Game Time: 72777 s  -Checking if we are in town 
28/09/2013 06:03:51 Last Game: 77 Games Stash: 1  TotalTime: 16 s NewGameTimer: 16 s Current Game Time: 72778 s  -Checking if we are in town 
28/09/2013 06:03:52 Last Game: 77 Games Stash: 1  TotalTime: 17 s NewGameTimer: 17 s Current Game Time: 72779 s  -Checking if we are in town 
28/09/2013 06:03:53 Last Game: 77 Games Stash: 1  TotalTime: 18 s NewGameTimer: 18 s Current Game Time: 72781 s  -Checking if we are in town 
28/09/2013 06:03:55 Last Game: 77 Games Stash: 1  TotalTime: 20 s NewGameTimer: 20 s Current Game Time: 72782 s  -Checking if we are in town 
28/09/2013 06:03:56 Last Game: 77 Games Stash: 1  TotalTime: 21 s NewGameTimer: 21 s Current Game Time: 72783 s  -Checking if we are in town 
28/09/2013 06:03:57 Last Game: 77 Games Stash: 1  TotalTime: 22 s NewGameTimer: 22 s Current Game Time: 72784 s  -Checking if we are in town 
28/09/2013 06:03:58 Last Game: 77 Games Stash: 1  TotalTime: 23 s NewGameTimer: 23 s Current Game Time: 72786 s  -Checking if we are in town 
28/09/2013 06:04:00 Last Game: 77 Games Stash: 1  TotalTime: 25 s NewGameTimer: 25 s Current Game Time: 72787 s  -Checking if we are in town 
28/09/2013 06:04:01 Last Game: 77 Games Stash: 1  TotalTime: 26 s NewGameTimer: 26 s Current Game Time: 72788 s  -Checking if we are in town 
28/09/2013 06:04:02 Last Game: 77 Games Stash: 1  TotalTime: 27 s NewGameTimer: 27 s Current Game Time: 72789 s  -Checking if we are in town 
28/09/2013 06:04:03 Last Game: 77 Games Stash: 1  TotalTime: 28 s NewGameTimer: 28 s Current Game Time: 72791 s  -Checking if we are in town 
28/09/2013 06:04:05 Last Game: 77 Games Stash: 1  TotalTime: 30 s NewGameTimer: 30 s Current Game Time: 72792 s  -Checking if we are in town 
28/09/2013 06:04:06 Last Game: 77 Games Stash: 1  TotalTime: 31 s NewGameTimer: 31 s Current Game Time: 72793 s  -Checking if we are in town 
28/09/2013 06:04:07 Last Game: 77 Games Stash: 1  TotalTime: 32 s NewGameTimer: 32 s Current Game Time: 72795 s  -Checking if we are in town 
28/09/2013 06:04:08 Last Game: 77 Games Stash: 1  TotalTime: 33 s NewGameTimer: 33 s Current Game Time: 72796 s  -Checking if we are in town 
28/09/2013 06:04:10 Last Game: 77 Games Stash: 1  TotalTime: 35 s NewGameTimer: 35 s Current Game Time: 72797 s  -Checking if we are in town 
28/09/2013 06:04:11 Last Game: 77 Games Stash: 1  TotalTime: 36 s NewGameTimer: 36 s Current Game Time: 72798 s  -Checking if we are in town 
28/09/2013 06:04:12 Last Game: 77 Games Stash: 1  TotalTime: 37 s NewGameTimer: 37 s Current Game Time: 72799 s  -Bot paused 
28/09/2013 06:04:13 Last Game: 77 Games Stash: 1  TotalTime: 38 s NewGameTimer: 38 s Current Game Time: 72800 s  -Inventory open @up gems 
28/09/2013 06:04:13 Last Game: 77 Games Stash: 1  TotalTime: 38 s NewGameTimer: 38 s Current Game Time: 72800 s  -Inventory closed @up gems 
28/09/2013 06:04:14 Last Game: 77 Games Stash: 1  TotalTime: 39 s NewGameTimer: 39 s Current Game Time: 72801 s  -@Town Show labels 
28/09/2013 06:04:21 Last Game: 77 Games Stash: 1  TotalTime: 46 s NewGameTimer: 46 s Current Game Time: 72809 s  -@Town Stash opended not found!!!!! 
28/09/2013 06:04:22 Last Game: 77 Games Stash: 1  TotalTime: 47 s NewGameTimer: 47 s Current Game Time: 72809 s  -@Town Show labels off 
28/09/2013 06:04:23 Last Game: 77 Games Stash: 1  TotalTime: 48 s NewGameTimer: 48 s Current Game Time: 72810 s  -Bot paused off 
28/09/2013 06:04:24 Last Game: 77 Games Stash: 1  TotalTime: 49 s NewGameTimer: 49 s Current Game Time: 72811 s  -Checking if we are in town 
28/09/2013 06:04:25 Last Game: 77 Games Stash: 1  TotalTime: 50 s NewGameTimer: 50 s Current Game Time: 72812 s  -Checking if we are in town 
28/09/2013 06:04:26 Last Game: 77 Games Stash: 1  TotalTime: 51 s NewGameTimer: 51 s Current Game Time: 72814 s  -Checking if we are in town 
28/09/2013 06:04:28 Last Game: 77 Games Stash: 1  TotalTime: 53 s NewGameTimer: 53 s Current Game Time: 72815 s  -Checking if we are in town 
28/09/2013 06:04:29 Last Game: 77 Games Stash: 1  TotalTime: 54 s NewGameTimer: 54 s Current Game Time: 72816 s  -Checking if we are in town 
28/09/2013 06:04:30 Last Game: 77 Games Stash: 1  TotalTime: 55 s NewGameTimer: 55 s Current Game Time: 72818 s  -Checking if we are in town 
28/09/2013 06:04:31 Last Game: 77 Games Stash: 1  TotalTime: 56 s NewGameTimer: 56 s Current Game Time: 72819 s  -Checking if we are in town 
28/09/2013 06:04:32 Last Game: 77 Games Stash: 1  TotalTime: 57 s NewGameTimer: 0 s Current Game Time: 0 s  Auras Starting 
28/09/2013 06:04:33 Last Game: 77 Games Stash: 1  TotalTime: 58 s NewGameTimer: 1 s Current Game Time: 1 s  Auras done 
28/09/2013 06:08:11 Last Game: 78 Games Stash: 2  TotalTime: 276 s NewGameTimer: 3 s Current Game Time: 219 s  End game********************* 
28/09/2013 06:08:12 Last Game: 78 Games Stash: 2  TotalTime: 277 s NewGameTimer: 4 s Current Game Time: 221 s  -Checking if we are in town 
28/09/2013 06:08:14 Last Game: 78 Games Stash: 2  TotalTime: 279 s NewGameTimer: 5 s Current Game Time: 222 s  -Checking if we are in town 
28/09/2013 06:08:15 Last Game: 78 Games Stash: 2  TotalTime: 280 s NewGameTimer: 7 s Current Game Time: 223 s  -Checking if we are in town 
28/09/2013 06:08:16 Last Game: 78 Games Stash: 2  TotalTime: 281 s NewGameTimer: 8 s Current Game Time: 224 s  -Bot paused 
28/09/2013 06:08:17 Last Game: 78 Games Stash: 2  TotalTime: 282 s NewGameTimer: 8 s Current Game Time: 225 s  -Inventory open @up gems 
28/09/2013 06:08:17 Last Game: 78 Games Stash: 2  TotalTime: 282 s NewGameTimer: 9 s Current Game Time: 225 s  -Inventory closed @up gems 
28/09/2013 06:08:18 Last Game: 78 Games Stash: 2  TotalTime: 283 s NewGameTimer: 9 s Current Game Time: 226 s  -@Town Show labels 
28/09/2013 06:08:25 Last Game: 78 Games Stash: 2  TotalTime: 291 s NewGameTimer: 17 s Current Game Time: 234 s  -@Town Stash opended not found!!!!! 
28/09/2013 06:08:26 Last Game: 78 Games Stash: 2  TotalTime: 291 s NewGameTimer: 18 s Current Game Time: 234 s  -@Town Show labels off 
28/09/2013 06:08:27 Last Game: 78 Games Stash: 2  TotalTime: 292 s NewGameTimer: 19 s Current Game Time: 235 s  -Bot paused off 
28/09/2013 06:08:28 Last Game: 78 Games Stash: 2  TotalTime: 293 s NewGameTimer: 20 s Current Game Time: 236 s  -Checking if we are in town 
28/09/2013 06:08:29 Last Game: 78 Games Stash: 2  TotalTime: 294 s NewGameTimer: 21 s Current Game Time: 238 s  -Checking if we are in town 
28/09/2013 06:08:31 Last Game: 78 Games Stash: 2  TotalTime: 296 s NewGameTimer: 22 s Current Game Time: 239 s  -Checking if we are in town 
28/09/2013 06:08:32 Last Game: 78 Games Stash: 2  TotalTime: 297 s NewGameTimer: 24 s Current Game Time: 240 s  -Checking if we are in town 
28/09/2013 06:08:33 Last Game: 78 Games Stash: 2  TotalTime: 298 s NewGameTimer: 25 s Current Game Time: 241 s  -Checking if we are in town 
28/09/2013 06:08:33 Last Game: 78 Games Stash: 2  TotalTime: 299 s NewGameTimer: 0 s Current Game Time: 0 s  Auras Starting 
28/09/2013 06:08:34 Last Game: 78 Games Stash: 2  TotalTime: 299 s NewGameTimer: 1 s Current Game Time: 1 s  Auras done 
28/09/2013 06:08:40 Last Game: 78 Games Stash: 2  TotalTime: 305 s NewGameTimer: 1 s Current Game Time: 7 s  long Stuck??????? 

im sorry that so long.

Share this post


Link to post
Share on other sites

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

Share this post


Link to post
Share on other sites

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)

Ok, im run the bot for few minutes on configuration :

writelog    =1
trylog      =1
upGems      =1
stashGames  =1

And my logs:

28/09/2013 05:53:20 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:53:29 Last Game: 77 Games Stash: 1  TotalTime: 8 s NewGameTimer: 8 s Current Game Time: 72156 s  -Checking if we are in town 
28/09/2013 05:53:30 Last Game: 77 Games Stash: 1  TotalTime: 10 s NewGameTimer: 10 s Current Game Time: 72157 s  -Checking if we are in town 
28/09/2013 05:53:31 Last Game: 77 Games Stash: 1  TotalTime: 11 s NewGameTimer: 11 s Current Game Time: 72158 s  -Checking if we are in town 
28/09/2013 05:53:32 Last Game: 77 Games Stash: 1  TotalTime: 12 s NewGameTimer: 12 s Current Game Time: 72160 s  -Checking if we are in town 
28/09/2013 05:53:34 Last Game: 77 Games Stash: 1  TotalTime: 13 s NewGameTimer: 13 s Current Game Time: 72161 s  -Checking if we are in town 
28/09/2013 05:53:35 Last Game: 77 Games Stash: 1  TotalTime: 15 s NewGameTimer: 15 s Current Game Time: 72162 s  -Checking if we are in town 
28/09/2013 05:53:36 Last Game: 77 Games Stash: 1  TotalTime: 16 s NewGameTimer: 16 s Current Game Time: 72164 s  -Checking if we are in town 
28/09/2013 05:53:37 Last Game: 77 Games Stash: 1  TotalTime: 17 s NewGameTimer: 17 s Current Game Time: 72165 s  -Checking if we are in town 
28/09/2013 05:53:39 Last Game: 77 Games Stash: 1  TotalTime: 18 s NewGameTimer: 18 s Current Game Time: 72166 s  -Checking if we are in town 
28/09/2013 05:53:40 Last Game: 77 Games Stash: 1  TotalTime: 20 s NewGameTimer: 20 s Current Game Time: 72167 s  -Checking if we are in town 
28/09/2013 05:53:41 Last Game: 77 Games Stash: 1  TotalTime: 21 s NewGameTimer: 21 s Current Game Time: 72169 s  -Checking if we are in town 
28/09/2013 05:53:42 Last Game: 77 Games Stash: 1  TotalTime: 22 s NewGameTimer: 22 s Current Game Time: 72170 s  -Checking if we are in town 
28/09/2013 05:53:44 Last Game: 77 Games Stash: 1  TotalTime: 24 s NewGameTimer: 24 s Current Game Time: 72171 s  -Checking if we are in town 
28/09/2013 05:53:45 Last Game: 77 Games Stash: 1  TotalTime: 25 s NewGameTimer: 25 s Current Game Time: 72172 s  -Checking if we are in town 
28/09/2013 05:53:46 Last Game: 77 Games Stash: 1  TotalTime: 26 s NewGameTimer: 26 s Current Game Time: 72174 s  -Checking if we are in town 
28/09/2013 05:53:48 Last Game: 77 Games Stash: 1  TotalTime: 27 s NewGameTimer: 27 s Current Game Time: 72175 s  -Checking if we are in town 
28/09/2013 05:53:49 Last Game: 77 Games Stash: 1  TotalTime: 29 s NewGameTimer: 29 s Current Game Time: 72176 s  -Checking if we are in town 
28/09/2013 05:53:50 Last Game: 77 Games Stash: 1  TotalTime: 30 s NewGameTimer: 30 s Current Game Time: 72177 s  -Checking if we are in town 
28/09/2013 05:53:51 Last Game: 77 Games Stash: 1  TotalTime: 31 s NewGameTimer: 31 s Current Game Time: 72179 s  -Checking if we are in town 
28/09/2013 05:53:53 Last Game: 77 Games Stash: 1  TotalTime: 32 s NewGameTimer: 32 s Current Game Time: 72180 s  -Checking if we are in town 
28/09/2013 05:53:54 Last Game: 77 Games Stash: 1  TotalTime: 34 s NewGameTimer: 34 s Current Game Time: 72181 s  -Checking if we are in town 
28/09/2013 05:53:55 Last Game: 77 Games Stash: 1  TotalTime: 35 s NewGameTimer: 35 s Current Game Time: 72182 s  -Checking if we are in town 
28/09/2013 05:53:56 Last Game: 77 Games Stash: 1  TotalTime: 36 s NewGameTimer: 36 s Current Game Time: 72184 s  -Checking if we are in town 
28/09/2013 05:53:57 Last Game: 77 Games Stash: 1  TotalTime: 37 s NewGameTimer: 37 s Current Game Time: 72185 s  -Bot paused 
28/09/2013 05:53:58 Last Game: 77 Games Stash: 1  TotalTime: 38 s NewGameTimer: 38 s Current Game Time: 72185 s  -Inventory open @up gems 
28/09/2013 05:53:58 Last Game: 77 Games Stash: 1  TotalTime: 38 s NewGameTimer: 38 s Current Game Time: 72186 s  -Inventory closed @up gems 
28/09/2013 05:53:59 Last Game: 77 Games Stash: 1  TotalTime: 39 s NewGameTimer: 39 s Current Game Time: 72186 s  -@Town Show labels 
28/09/2013 05:54:07 Last Game: 77 Games Stash: 1  TotalTime: 46 s NewGameTimer: 46 s Current Game Time: 72194 s  -@Town Stash opended not found!!!!! 
28/09/2013 05:54:07 Last Game: 77 Games Stash: 1  TotalTime: 47 s NewGameTimer: 47 s Current Game Time: 72195 s  -@Town Show labels off 
28/09/2013 05:54:08 Last Game: 77 Games Stash: 1  TotalTime: 48 s NewGameTimer: 48 s Current Game Time: 72195 s  -Bot paused off 
28/09/2013 05:54:09 Last Game: 77 Games Stash: 1  TotalTime: 49 s NewGameTimer: 49 s Current Game Time: 72197 s  -Checking if we are in town 
28/09/2013 05:54:11 Last Game: 77 Games Stash: 1  TotalTime: 50 s NewGameTimer: 50 s Current Game Time: 72198 s  -Checking if we are in town 
28/09/2013 05:54:12 Last Game: 77 Games Stash: 1  TotalTime: 52 s NewGameTimer: 52 s Current Game Time: 72199 s  -Checking if we are in town 
28/09/2013 05:54:13 Last Game: 77 Games Stash: 1  TotalTime: 53 s NewGameTimer: 53 s Current Game Time: 72200 s  -Checking if we are in town 
28/09/2013 05:54:14 Last Game: 77 Games Stash: 1  TotalTime: 54 s NewGameTimer: 54 s Current Game Time: 72202 s  -Checking if we are in town 
28/09/2013 05:54:16 Last Game: 77 Games Stash: 1  TotalTime: 55 s NewGameTimer: 55 s Current Game Time: 72203 s  -Checking if we are in town 
28/09/2013 05:54:17 Last Game: 77 Games Stash: 1  TotalTime: 57 s NewGameTimer: 57 s Current Game Time: 72204 s  -Checking if we are in town 
28/09/2013 05:54:18 Last Game: 77 Games Stash: 1  TotalTime: 58 s NewGameTimer: 58 s Current Game Time: 72206 s  -Checking if we are in town 
28/09/2013 05:54:19 Last Game: 77 Games Stash: 1  TotalTime: 59 s NewGameTimer: 59 s Current Game Time: 72207 s  -Checking if we are in town 
28/09/2013 05:54:21 Last Game: 77 Games Stash: 1  TotalTime: 60 s NewGameTimer: 60 s Current Game Time: 72208 s  -Checking if we are in town 
28/09/2013 05:54:22 Last Game: 77 Games Stash: 1  TotalTime: 62 s NewGameTimer: 62 s Current Game Time: 72209 s  -Checking if we are in town 
28/09/2013 05:54:23 Last Game: 77 Games Stash: 1  TotalTime: 63 s NewGameTimer: 63 s Current Game Time: 72211 s  -Checking if we are in town 
28/09/2013 05:54:25 Last Game: 77 Games Stash: 1  TotalTime: 64 s NewGameTimer: 64 s Current Game Time: 72212 s  -Checking if we are in town 
28/09/2013 05:54:26 Last Game: 77 Games Stash: 1  TotalTime: 66 s NewGameTimer: 66 s Current Game Time: 72213 s  -Checking if we are in town 
28/09/2013 05:54:27 Last Game: 77 Games Stash: 1  TotalTime: 67 s NewGameTimer: 67 s Current Game Time: 72214 s  -Checking if we are in town 
28/09/2013 05:54:28 Last Game: 77 Games Stash: 1  TotalTime: 68 s NewGameTimer: 68 s Current Game Time: 72216 s  -Checking if we are in town 
28/09/2013 05:54:30 Last Game: 77 Games Stash: 1  TotalTime: 69 s NewGameTimer: 69 s Current Game Time: 72217 s  -Checking if we are in town 
28/09/2013 05:54:31 Last Game: 77 Games Stash: 1  TotalTime: 71 s NewGameTimer: 71 s Current Game Time: 72218 s  -Checking if we are in town 
28/09/2013 05:54:32 Last Game: 77 Games Stash: 1  TotalTime: 72 s NewGameTimer: 72 s Current Game Time: 72219 s  -Checking if we are in town 
28/09/2013 05:54:33 Last Game: 77 Games Stash: 1  TotalTime: 73 s NewGameTimer: 73 s Current Game Time: 72221 s  -Checking if we are in town 
28/09/2013 05:54:35 Last Game: 77 Games Stash: 1  TotalTime: 74 s NewGameTimer: 74 s Current Game Time: 72222 s  -Checking if we are in town 
28/09/2013 05:54:36 Last Game: 77 Games Stash: 1  TotalTime: 76 s NewGameTimer: 76 s Current Game Time: 72223 s  -Checking if we are in town 
28/09/2013 05:54:37 Last Game: 77 Games Stash: 1  TotalTime: 77 s NewGameTimer: 77 s Current Game Time: 72224 s  -Checking if we are in town 
28/09/2013 05:54:38 Last Game: 77 Games Stash: 1  TotalTime: 78 s NewGameTimer: 78 s Current Game Time: 72226 s  -Checking if we are in town 
28/09/2013 05:54:40 Last Game: 77 Games Stash: 1  TotalTime: 79 s NewGameTimer: 79 s Current Game Time: 72227 s  -Checking if we are in town 
28/09/2013 05:54:41 Last Game: 77 Games Stash: 1  TotalTime: 81 s NewGameTimer: 81 s Current Game Time: 72228 s  -Checking if we are in town 
28/09/2013 05:54:42 Last Game: 77 Games Stash: 1  TotalTime: 82 s NewGameTimer: 82 s Current Game Time: 72230 s  -Checking if we are in town 
28/09/2013 05:54:43 Last Game: 77 Games Stash: 1  TotalTime: 83 s NewGameTimer: 83 s Current Game Time: 72231 s  -Checking if we are in town 
28/09/2013 05:54:45 Last Game: 77 Games Stash: 1  TotalTime: 84 s NewGameTimer: 84 s Current Game Time: 72232 s  -Checking if we are in town 
28/09/2013 05:54:46 Last Game: 77 Games Stash: 1  TotalTime: 86 s NewGameTimer: 86 s Current Game Time: 72233 s  -Checking if we are in town 
28/09/2013 05:54:47 Last Game: 77 Games Stash: 1  TotalTime: 87 s NewGameTimer: 87 s Current Game Time: 72235 s  -Checking if we are in town 
28/09/2013 05:54:49 Last Game: 77 Games Stash: 1  TotalTime: 88 s NewGameTimer: 88 s Current Game Time: 72236 s  -Checking if we are in town 
28/09/2013 05:54:50 Last Game: 77 Games Stash: 1  TotalTime: 90 s NewGameTimer: 90 s Current Game Time: 72237 s  -Checking if we are in town 
28/09/2013 05:54:51 Last Game: 77 Games Stash: 1  TotalTime: 91 s NewGameTimer: 91 s Current Game Time: 72238 s  -Checking if we are in town 
28/09/2013 05:54:52 Last Game: 77 Games Stash: 1  TotalTime: 92 s NewGameTimer: 92 s Current Game Time: 72240 s  -Checking if we are in town 
28/09/2013 05:54:54 Last Game: 77 Games Stash: 1  TotalTime: 93 s NewGameTimer: 93 s Current Game Time: 72241 s  -Checking if we are in town 
28/09/2013 05:54:55 Last Game: 77 Games Stash: 1  TotalTime: 95 s NewGameTimer: 95 s Current Game Time: 72242 s  -Checking if we are in town 
28/09/2013 05:54:56 Last Game: 77 Games Stash: 1  TotalTime: 96 s NewGameTimer: 96 s Current Game Time: 72243 s  -Checking if we are in town 
28/09/2013 05:54:57 Last Game: 77 Games Stash: 1  TotalTime: 97 s NewGameTimer: 97 s Current Game Time: 72245 s  -Checking if we are in town 
28/09/2013 05:54:59 Last Game: 77 Games Stash: 1  TotalTime: 98 s NewGameTimer: 98 s Current Game Time: 72246 s  -Checking if we are in town 
28/09/2013 05:55:00 Last Game: 77 Games Stash: 1  TotalTime: 100 s NewGameTimer: 100 s Current Game Time: 72247 s  -Checking if we are in town 
28/09/2013 05:55:01 Last Game: 77 Games Stash: 1  TotalTime: 101 s NewGameTimer: 101 s Current Game Time: 72248 s  -Checking if we are in town 
28/09/2013 05:55:02 Last Game: 77 Games Stash: 1  TotalTime: 102 s NewGameTimer: 102 s Current Game Time: 72250 s  -Checking if we are in town 
28/09/2013 05:55:04 Last Game: 77 Games Stash: 1  TotalTime: 103 s NewGameTimer: 103 s Current Game Time: 72251 s  -Checking if we are in town 
28/09/2013 05:55:05 Last Game: 77 Games Stash: 1  TotalTime: 105 s NewGameTimer: 105 s Current Game Time: 72252 s  -Checking if we are in town 
28/09/2013 05:55:06 Last Game: 77 Games Stash: 1  TotalTime: 106 s NewGameTimer: 106 s Current Game Time: 72254 s  -Checking if we are in town 
28/09/2013 05:55:07 Last Game: 77 Games Stash: 1  TotalTime: 107 s NewGameTimer: 107 s Current Game Time: 72255 s  -Checking if we are in town 
28/09/2013 05:55:09 Last Game: 77 Games Stash: 1  TotalTime: 108 s NewGameTimer: 108 s Current Game Time: 72256 s  -Checking if we are in town 
28/09/2013 05:55:10 Last Game: 77 Games Stash: 1  TotalTime: 110 s NewGameTimer: 110 s Current Game Time: 72257 s  -Checking if we are in town 
28/09/2013 05:55:11 Last Game: 77 Games Stash: 1  TotalTime: 111 s NewGameTimer: 111 s Current Game Time: 72259 s  -Checking if we are in town 
28/09/2013 05:55:13 Last Game: 77 Games Stash: 1  TotalTime: 112 s NewGameTimer: 112 s Current Game Time: 72260 s  -Checking if we are in town 
28/09/2013 05:55:14 Last Game: 77 Games Stash: 1  TotalTime: 114 s NewGameTimer: 114 s Current Game Time: 72261 s  -Checking if we are in town 
28/09/2013 05:55:15 Last Game: 77 Games Stash: 1  TotalTime: 115 s NewGameTimer: 115 s Current Game Time: 72262 s  -Checking if we are in town 
28/09/2013 05:55:16 Last Game: 77 Games Stash: 1  TotalTime: 116 s NewGameTimer: 116 s Current Game Time: 72264 s  -Checking if we are in town 
28/09/2013 05:55:18 Last Game: 77 Games Stash: 1  TotalTime: 117 s NewGameTimer: 117 s Current Game Time: 72265 s  -Checking if we are in town 
28/09/2013 05:55:19 Last Game: 77 Games Stash: 1  TotalTime: 119 s NewGameTimer: 119 s Current Game Time: 72266 s  -Checking if we are in town 
28/09/2013 05:55:20 Last Game: 77 Games Stash: 1  TotalTime: 120 s NewGameTimer: 120 s Current Game Time: 72267 s  -Checking if we are in town 
28/09/2013 05:55:21 Last Game: 77 Games Stash: 1  TotalTime: 121 s NewGameTimer: 121 s Current Game Time: 72269 s  -Checking if we are in town 
28/09/2013 05:55:23 Last Game: 77 Games Stash: 1  TotalTime: 122 s NewGameTimer: 122 s Current Game Time: 72270 s  -Checking if we are in town 
28/09/2013 05:55:24 Last Game: 77 Games Stash: 1  TotalTime: 124 s NewGameTimer: 124 s Current Game Time: 72271 s  -Checking if we are in town 
28/09/2013 05:55:25 Last Game: 77 Games Stash: 1  TotalTime: 125 s NewGameTimer: 125 s Current Game Time: 72272 s  -Checking if we are in town 
28/09/2013 05:55:26 Last Game: 77 Games Stash: 1  TotalTime: 126 s NewGameTimer: 126 s Current Game Time: 72274 s  -Checking if we are in town 
28/09/2013 05:55:28 Last Game: 77 Games Stash: 1  TotalTime: 127 s NewGameTimer: 127 s Current Game Time: 72275 s  -Checking if we are in town 
28/09/2013 05:55:29 Last Game: 77 Games Stash: 1  TotalTime: 129 s NewGameTimer: 129 s Current Game Time: 72276 s  -Checking if we are in town 
28/09/2013 05:55:30 Last Game: 77 Games Stash: 1  TotalTime: 130 s NewGameTimer: 130 s Current Game Time: 72278 s  -Checking if we are in town 
28/09/2013 05:55:32 Last Game: 77 Games Stash: 1  TotalTime: 131 s NewGameTimer: 131 s Current Game Time: 72279 s  -Checking if we are in town 
28/09/2013 05:55:33 Last Game: 77 Games Stash: 1  TotalTime: 133 s NewGameTimer: 133 s Current Game Time: 72280 s  -Checking if we are in town 
28/09/2013 05:55:34 Last Game: 77 Games Stash: 1  TotalTime: 134 s NewGameTimer: 134 s Current Game Time: 72281 s  -Checking if we are in town 
28/09/2013 05:55:35 Last Game: 77 Games Stash: 1  TotalTime: 135 s NewGameTimer: 135 s Current Game Time: 72283 s  -Checking if we are in town 
28/09/2013 05:55:37 Last Game: 77 Games Stash: 1  TotalTime: 136 s NewGameTimer: 136 s Current Game Time: 72284 s  -Checking if we are in town 
28/09/2013 05:55:38 Last Game: 77 Games Stash: 1  TotalTime: 138 s NewGameTimer: 138 s Current Game Time: 72285 s  -Checking if we are in town 
28/09/2013 05:55:39 Last Game: 77 Games Stash: 1  TotalTime: 139 s NewGameTimer: 139 s Current Game Time: 72286 s  -Checking if we are in town 
28/09/2013 05:55:40 Last Game: 77 Games Stash: 1  TotalTime: 140 s NewGameTimer: 140 s Current Game Time: 72288 s  -Checking if we are in town 
28/09/2013 05:55:42 Last Game: 77 Games Stash: 1  TotalTime: 141 s NewGameTimer: 141 s Current Game Time: 72289 s  -Checking if we are in town 
28/09/2013 05:55:43 Last Game: 77 Games Stash: 1  TotalTime: 143 s NewGameTimer: 143 s Current Game Time: 72290 s  -Checking if we are in town 
28/09/2013 05:55:44 Last Game: 77 Games Stash: 1  TotalTime: 144 s NewGameTimer: 144 s Current Game Time: 72291 s  -Checking if we are in town 
28/09/2013 05:55:45 Last Game: 77 Games Stash: 1  TotalTime: 145 s NewGameTimer: 145 s Current Game Time: 72293 s  -Checking if we are in town 
28/09/2013 05:55:47 Last Game: 77 Games Stash: 1  TotalTime: 146 s NewGameTimer: 146 s Current Game Time: 72294 s  -Checking if we are in town 
28/09/2013 05:55:48 Last Game: 77 Games Stash: 1  TotalTime: 148 s NewGameTimer: 148 s Current Game Time: 72295 s  -Checking if we are in town 
28/09/2013 05:55:49 Last Game: 77 Games Stash: 1  TotalTime: 149 s NewGameTimer: 149 s Current Game Time: 72297 s  -Checking if we are in town 
28/09/2013 05:55:50 Last Game: 77 Games Stash: 1  TotalTime: 150 s NewGameTimer: 150 s Current Game Time: 72298 s  -Checking if we are in town 
28/09/2013 05:55:52 Last Game: 77 Games Stash: 1  TotalTime: 151 s NewGameTimer: 151 s Current Game Time: 72299 s  -Checking if we are in town 
28/09/2013 05:55:53 Last Game: 77 Games Stash: 1  TotalTime: 153 s NewGameTimer: 153 s Current Game Time: 72300 s  -Checking if we are in town 
28/09/2013 05:55:54 Last Game: 77 Games Stash: 1  TotalTime: 154 s NewGameTimer: 154 s Current Game Time: 72302 s  -Checking if we are in town 
28/09/2013 05:55:56 Last Game: 77 Games Stash: 1  TotalTime: 155 s NewGameTimer: 155 s Current Game Time: 72303 s  -Checking if we are in town 
28/09/2013 05:55:57 Last Game: 77 Games Stash: 1  TotalTime: 157 s NewGameTimer: 157 s Current Game Time: 72304 s  -Checking if we are in town 
28/09/2013 05:55:58 Last Game: 77 Games Stash: 1  TotalTime: 158 s NewGameTimer: 158 s Current Game Time: 72305 s  -Checking if we are in town 
28/09/2013 05:55:59 Last Game: 77 Games Stash: 1  TotalTime: 159 s NewGameTimer: 159 s Current Game Time: 72307 s  -Checking if we are in town 
28/09/2013 05:56:01 Last Game: 77 Games Stash: 1  TotalTime: 160 s NewGameTimer: 160 s Current Game Time: 72308 s  -Checking if we are in town 
28/09/2013 05:56:02 Last Game: 77 Games Stash: 1  TotalTime: 162 s NewGameTimer: 162 s Current Game Time: 72309 s  -Checking if we are in town 
28/09/2013 05:56:03 Last Game: 77 Games Stash: 1  TotalTime: 163 s NewGameTimer: 163 s Current Game Time: 72310 s  -Checking if we are in town 
28/09/2013 05:56:04 Last Game: 77 Games Stash: 1  TotalTime: 164 s NewGameTimer: 164 s Current Game Time: 72312 s  -Checking if we are in town 
28/09/2013 05:56:06 Last Game: 77 Games Stash: 1  TotalTime: 165 s NewGameTimer: 165 s Current Game Time: 72313 s  -Checking if we are in town 
28/09/2013 05:56:07 Last Game: 77 Games Stash: 1  TotalTime: 167 s NewGameTimer: 167 s Current Game Time: 72314 s  -Checking if we are in town 
28/09/2013 05:56:08 Last Game: 77 Games Stash: 1  TotalTime: 168 s NewGameTimer: 168 s Current Game Time: 72315 s  -Checking if we are in town 
28/09/2013 05:56:09 Last Game: 77 Games Stash: 1  TotalTime: 169 s NewGameTimer: 169 s Current Game Time: 72317 s  -Checking if we are in town 
28/09/2013 05:56:11 Last Game: 77 Games Stash: 1  TotalTime: 170 s NewGameTimer: 170 s Current Game Time: 72318 s  -Checking if we are in town 
28/09/2013 05:56:12 Last Game: 77 Games Stash: 1  TotalTime: 172 s NewGameTimer: 172 s Current Game Time: 72319 s  -Checking if we are in town 
28/09/2013 05:56:13 Last Game: 77 Games Stash: 1  TotalTime: 173 s NewGameTimer: 173 s Current Game Time: 72321 s  -Checking if we are in town 
28/09/2013 05:56:14 Last Game: 77 Games Stash: 1  TotalTime: 174 s NewGameTimer: 174 s Current Game Time: 72322 s  -Checking if we are in town 
28/09/2013 05:56:16 Last Game: 77 Games Stash: 1  TotalTime: 175 s NewGameTimer: 175 s Current Game Time: 72323 s  -Checking if we are in town 
28/09/2013 05:56:17 Last Game: 77 Games Stash: 1  TotalTime: 177 s NewGameTimer: 177 s Current Game Time: 72324 s  -Checking if we are in town 
28/09/2013 05:56:18 Last Game: 77 Games Stash: 1  TotalTime: 178 s NewGameTimer: 178 s Current Game Time: 72326 s  -Checking if we are in town 
28/09/2013 05:56:20 Last Game: 77 Games Stash: 1  TotalTime: 179 s NewGameTimer: 179 s Current Game Time: 72327 s  -Checking if we are in town 
28/09/2013 05:56:21 Last Game: 77 Games Stash: 1  TotalTime: 181 s NewGameTimer: 181 s Current Game Time: 72328 s  -Checking if we are in town 
28/09/2013 05:56:21 Last Game: 77 Games Stash: 1  TotalTime: 181 s NewGameTimer: 181 s Current Game Time: 72328 s  Maximum time without a game reached, restarting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:56:21 Restart Bot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:56:21 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:56:39 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 05:56:48 Last Game: 77 Games Stash: 1  TotalTime: 8 s NewGameTimer: 8 s Current Game Time: 72355 s  -Checking if we are in town 
28/09/2013 05:56:49 Last Game: 77 Games Stash: 1  TotalTime: 10 s NewGameTimer: 10 s Current Game Time: 72356 s  -Checking if we are in town 
28/09/2013 05:56:50 Last Game: 77 Games Stash: 1  TotalTime: 11 s NewGameTimer: 11 s Current Game Time: 72357 s  -Checking if we are in town 
28/09/2013 05:56:51 Last Game: 77 Games Stash: 1  TotalTime: 12 s NewGameTimer: 12 s Current Game Time: 72359 s  -Checking if we are in town 
28/09/2013 05:56:53 Last Game: 77 Games Stash: 1  TotalTime: 13 s NewGameTimer: 13 s Current Game Time: 72360 s  -Checking if we are in town 
28/09/2013 05:56:54 Last Game: 77 Games Stash: 1  TotalTime: 15 s NewGameTimer: 15 s Current Game Time: 72361 s  -Checking if we are in town 
28/09/2013 05:56:55 Last Game: 77 Games Stash: 1  TotalTime: 16 s NewGameTimer: 16 s Current Game Time: 72362 s  -Checking if we are in town 
28/09/2013 05:56:56 Last Game: 77 Games Stash: 1  TotalTime: 17 s NewGameTimer: 17 s Current Game Time: 72364 s  -Checking if we are in town 
28/09/2013 05:56:58 Last Game: 77 Games Stash: 1  TotalTime: 18 s NewGameTimer: 18 s Current Game Time: 72365 s  -Checking if we are in town 
28/09/2013 05:56:59 Last Game: 77 Games Stash: 1  TotalTime: 20 s NewGameTimer: 20 s Current Game Time: 72366 s  -Checking if we are in town 
28/09/2013 05:57:00 Last Game: 77 Games Stash: 1  TotalTime: 21 s NewGameTimer: 21 s Current Game Time: 72368 s  -Checking if we are in town 
28/09/2013 05:57:01 Last Game: 77 Games Stash: 1  TotalTime: 22 s NewGameTimer: 22 s Current Game Time: 72369 s  -Checking if we are in town 
28/09/2013 05:57:03 Last Game: 77 Games Stash: 1  TotalTime: 23 s NewGameTimer: 23 s Current Game Time: 72370 s  -Checking if we are in town 
28/09/2013 05:57:04 Last Game: 77 Games Stash: 1  TotalTime: 25 s NewGameTimer: 25 s Current Game Time: 72371 s  -Checking if we are in town 
28/09/2013 05:57:05 Last Game: 77 Games Stash: 1  TotalTime: 26 s NewGameTimer: 26 s Current Game Time: 72373 s  -Checking if we are in town 
28/09/2013 05:57:06 Last Game: 77 Games Stash: 1  TotalTime: 27 s NewGameTimer: 27 s Current Game Time: 72374 s  -Checking if we are in town 
28/09/2013 05:57:08 Last Game: 77 Games Stash: 1  TotalTime: 28 s NewGameTimer: 28 s Current Game Time: 72375 s  -Checking if we are in town 
28/09/2013 05:57:09 Last Game: 77 Games Stash: 1  TotalTime: 30 s NewGameTimer: 30 s Current Game Time: 72376 s  -Checking if we are in town 
28/09/2013 05:57:10 Last Game: 77 Games Stash: 1  TotalTime: 31 s NewGameTimer: 31 s Current Game Time: 72378 s  -Checking if we are in town 
28/09/2013 05:57:11 Last Game: 77 Games Stash: 1  TotalTime: 32 s NewGameTimer: 32 s Current Game Time: 72379 s  -Checking if we are in town 
28/09/2013 05:57:13 Last Game: 77 Games Stash: 1  TotalTime: 34 s NewGameTimer: 34 s Current Game Time: 72380 s  -Checking if we are in town 
28/09/2013 05:57:14 Last Game: 77 Games Stash: 1  TotalTime: 35 s NewGameTimer: 35 s Current Game Time: 72381 s  -Checking if we are in town 
28/09/2013 05:57:15 Last Game: 77 Games Stash: 1  TotalTime: 36 s NewGameTimer: 36 s Current Game Time: 72382 s  -Bot paused 
28/09/2013 05:57:16 Last Game: 77 Games Stash: 1  TotalTime: 36 s NewGameTimer: 36 s Current Game Time: 72383 s  -Inventory open @up gems 
28/09/2013 05:57:16 Last Game: 77 Games Stash: 1  TotalTime: 37 s NewGameTimer: 37 s Current Game Time: 72383 s  -Inventory closed @up gems 
28/09/2013 05:57:17 Last Game: 77 Games Stash: 1  TotalTime: 37 s NewGameTimer: 37 s Current Game Time: 72384 s  -@Town Show labels 
28/09/2013 05:57:24 Last Game: 77 Games Stash: 1  TotalTime: 45 s NewGameTimer: 45 s Current Game Time: 72392 s  -@Town Stash opended not found!!!!! 
28/09/2013 05:57:25 Last Game: 77 Games Stash: 1  TotalTime: 46 s NewGameTimer: 46 s Current Game Time: 72392 s  -@Town Show labels off 
28/09/2013 05:57:26 Last Game: 77 Games Stash: 1  TotalTime: 47 s NewGameTimer: 47 s Current Game Time: 72393 s  -Bot paused off 
28/09/2013 05:57:27 Last Game: 77 Games Stash: 1  TotalTime: 48 s NewGameTimer: 48 s Current Game Time: 72394 s  -Checking if we are in town 
28/09/2013 05:57:28 Last Game: 77 Games Stash: 1  TotalTime: 49 s NewGameTimer: 49 s Current Game Time: 72396 s  -Checking if we are in town 
28/09/2013 05:57:30 Last Game: 77 Games Stash: 1  TotalTime: 50 s NewGameTimer: 50 s Current Game Time: 72397 s  -Checking if we are in town 
28/09/2013 05:57:31 Last Game: 77 Games Stash: 1  TotalTime: 52 s NewGameTimer: 52 s Current Game Time: 72398 s  -Checking if we are in town 
28/09/2013 05:57:32 Last Game: 77 Games Stash: 1  TotalTime: 53 s NewGameTimer: 53 s Current Game Time: 72399 s  -Checking if we are in town 
28/09/2013 05:57:33 Last Game: 77 Games Stash: 1  TotalTime: 54 s NewGameTimer: 54 s Current Game Time: 72401 s  -Checking if we are in town 
28/09/2013 05:57:35 Last Game: 77 Games Stash: 1  TotalTime: 55 s NewGameTimer: 55 s Current Game Time: 72402 s  -Checking if we are in town 
28/09/2013 05:57:36 Last Game: 77 Games Stash: 1  TotalTime: 57 s NewGameTimer: 57 s Current Game Time: 72403 s  -Checking if we are in town 
28/09/2013 05:57:36 Last Game: 77 Games Stash: 1  TotalTime: 57 s NewGameTimer: 0 s Current Game Time: 0 s  Auras Starting 
28/09/2013 05:57:37 Last Game: 77 Games Stash: 1  TotalTime: 58 s NewGameTimer: 1 s Current Game Time: 1 s  Auras done 
28/09/2013 05:57:43 Last Game: 77 Games Stash: 1  TotalTime: 64 s NewGameTimer: 1 s Current Game Time: 7 s  long Stuck??????? 
28/09/2013 06:03:17 Last Game: 77 Games Stash: 1  TotalTime: 398 s NewGameTimer: 0 s Current Game Time: 341 s  Maximum Game Length reached, restarting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 06:03:17 Restart Bot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 06:03:17 Quit Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 06:03:35 Start Botting !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 
28/09/2013 06:03:43 Last Game: 77 Games Stash: 1  TotalTime: 8 s NewGameTimer: 8 s Current Game Time: 72771 s  -Checking if we are in town 
28/09/2013 06:03:45 Last Game: 77 Games Stash: 1  TotalTime: 10 s NewGameTimer: 10 s Current Game Time: 72772 s  -Checking if we are in town 
28/09/2013 06:03:46 Last Game: 77 Games Stash: 1  TotalTime: 11 s NewGameTimer: 11 s Current Game Time: 72773 s  -Checking if we are in town 
28/09/2013 06:03:47 Last Game: 77 Games Stash: 1  TotalTime: 12 s NewGameTimer: 12 s Current Game Time: 72774 s  -Checking if we are in town 
28/09/2013 06:03:48 Last Game: 77 Games Stash: 1  TotalTime: 13 s NewGameTimer: 13 s Current Game Time: 72776 s  -Checking if we are in town 
28/09/2013 06:03:50 Last Game: 77 Games Stash: 1  TotalTime: 15 s NewGameTimer: 15 s Current Game Time: 72777 s  -Checking if we are in town 
28/09/2013 06:03:51 Last Game: 77 Games Stash: 1  TotalTime: 16 s NewGameTimer: 16 s Current Game Time: 72778 s  -Checking if we are in town 
28/09/2013 06:03:52 Last Game: 77 Games Stash: 1  TotalTime: 17 s NewGameTimer: 17 s Current Game Time: 72779 s  -Checking if we are in town 
28/09/2013 06:03:53 Last Game: 77 Games Stash: 1  TotalTime: 18 s NewGameTimer: 18 s Current Game Time: 72781 s  -Checking if we are in town 
28/09/2013 06:03:55 Last Game: 77 Games Stash: 1  TotalTime: 20 s NewGameTimer: 20 s Current Game Time: 72782 s  -Checking if we are in town 
28/09/2013 06:03:56 Last Game: 77 Games Stash: 1  TotalTime: 21 s NewGameTimer: 21 s Current Game Time: 72783 s  -Checking if we are in town 
28/09/2013 06:03:57 Last Game: 77 Games Stash: 1  TotalTime: 22 s NewGameTimer: 22 s Current Game Time: 72784 s  -Checking if we are in town 
28/09/2013 06:03:58 Last Game: 77 Games Stash: 1  TotalTime: 23 s NewGameTimer: 23 s Current Game Time: 72786 s  -Checking if we are in town 
28/09/2013 06:04:00 Last Game: 77 Games Stash: 1  TotalTime: 25 s NewGameTimer: 25 s Current Game Time: 72787 s  -Checking if we are in town 
28/09/2013 06:04:01 Last Game: 77 Games Stash: 1  TotalTime: 26 s NewGameTimer: 26 s Current Game Time: 72788 s  -Checking if we are in town 
28/09/2013 06:04:02 Last Game: 77 Games Stash: 1  TotalTime: 27 s NewGameTimer: 27 s Current Game Time: 72789 s  -Checking if we are in town 
28/09/2013 06:04:03 Last Game: 77 Games Stash: 1  TotalTime: 28 s NewGameTimer: 28 s Current Game Time: 72791 s  -Checking if we are in town 
28/09/2013 06:04:05 Last Game: 77 Games Stash: 1  TotalTime: 30 s NewGameTimer: 30 s Current Game Time: 72792 s  -Checking if we are in town 
28/09/2013 06:04:06 Last Game: 77 Games Stash: 1  TotalTime: 31 s NewGameTimer: 31 s Current Game Time: 72793 s  -Checking if we are in town 
28/09/2013 06:04:07 Last Game: 77 Games Stash: 1  TotalTime: 32 s NewGameTimer: 32 s Current Game Time: 72795 s  -Checking if we are in town 
28/09/2013 06:04:08 Last Game: 77 Games Stash: 1  TotalTime: 33 s NewGameTimer: 33 s Current Game Time: 72796 s  -Checking if we are in town 
28/09/2013 06:04:10 Last Game: 77 Games Stash: 1  TotalTime: 35 s NewGameTimer: 35 s Current Game Time: 72797 s  -Checking if we are in town 
28/09/2013 06:04:11 Last Game: 77 Games Stash: 1  TotalTime: 36 s NewGameTimer: 36 s Current Game Time: 72798 s  -Checking if we are in town 
28/09/2013 06:04:12 Last Game: 77 Games Stash: 1  TotalTime: 37 s NewGameTimer: 37 s Current Game Time: 72799 s  -Bot paused 
28/09/2013 06:04:13 Last Game: 77 Games Stash: 1  TotalTime: 38 s NewGameTimer: 38 s Current Game Time: 72800 s  -Inventory open @up gems 
28/09/2013 06:04:13 Last Game: 77 Games Stash: 1  TotalTime: 38 s NewGameTimer: 38 s Current Game Time: 72800 s  -Inventory closed @up gems 
28/09/2013 06:04:14 Last Game: 77 Games Stash: 1  TotalTime: 39 s NewGameTimer: 39 s Current Game Time: 72801 s  -@Town Show labels 
28/09/2013 06:04:21 Last Game: 77 Games Stash: 1  TotalTime: 46 s NewGameTimer: 46 s Current Game Time: 72809 s  -@Town Stash opended not found!!!!! 
28/09/2013 06:04:22 Last Game: 77 Games Stash: 1  TotalTime: 47 s NewGameTimer: 47 s Current Game Time: 72809 s  -@Town Show labels off 
28/09/2013 06:04:23 Last Game: 77 Games Stash: 1  TotalTime: 48 s NewGameTimer: 48 s Current Game Time: 72810 s  -Bot paused off 
28/09/2013 06:04:24 Last Game: 77 Games Stash: 1  TotalTime: 49 s NewGameTimer: 49 s Current Game Time: 72811 s  -Checking if we are in town 
28/09/2013 06:04:25 Last Game: 77 Games Stash: 1  TotalTime: 50 s NewGameTimer: 50 s Current Game Time: 72812 s  -Checking if we are in town 
28/09/2013 06:04:26 Last Game: 77 Games Stash: 1  TotalTime: 51 s NewGameTimer: 51 s Current Game Time: 72814 s  -Checking if we are in town 
28/09/2013 06:04:28 Last Game: 77 Games Stash: 1  TotalTime: 53 s NewGameTimer: 53 s Current Game Time: 72815 s  -Checking if we are in town 
28/09/2013 06:04:29 Last Game: 77 Games Stash: 1  TotalTime: 54 s NewGameTimer: 54 s Current Game Time: 72816 s  -Checking if we are in town 
28/09/2013 06:04:30 Last Game: 77 Games Stash: 1  TotalTime: 55 s NewGameTimer: 55 s Current Game Time: 72818 s  -Checking if we are in town 
28/09/2013 06:04:31 Last Game: 77 Games Stash: 1  TotalTime: 56 s NewGameTimer: 56 s Current Game Time: 72819 s  -Checking if we are in town 
28/09/2013 06:04:32 Last Game: 77 Games Stash: 1  TotalTime: 57 s NewGameTimer: 0 s Current Game Time: 0 s  Auras Starting 
28/09/2013 06:04:33 Last Game: 77 Games Stash: 1  TotalTime: 58 s NewGameTimer: 1 s Current Game Time: 1 s  Auras done 
28/09/2013 06:08:11 Last Game: 78 Games Stash: 2  TotalTime: 276 s NewGameTimer: 3 s Current Game Time: 219 s  End game********************* 
28/09/2013 06:08:12 Last Game: 78 Games Stash: 2  TotalTime: 277 s NewGameTimer: 4 s Current Game Time: 221 s  -Checking if we are in town 
28/09/2013 06:08:14 Last Game: 78 Games Stash: 2  TotalTime: 279 s NewGameTimer: 5 s Current Game Time: 222 s  -Checking if we are in town 
28/09/2013 06:08:15 Last Game: 78 Games Stash: 2  TotalTime: 280 s NewGameTimer: 7 s Current Game Time: 223 s  -Checking if we are in town 
28/09/2013 06:08:16 Last Game: 78 Games Stash: 2  TotalTime: 281 s NewGameTimer: 8 s Current Game Time: 224 s  -Bot paused 
28/09/2013 06:08:17 Last Game: 78 Games Stash: 2  TotalTime: 282 s NewGameTimer: 8 s Current Game Time: 225 s  -Inventory open @up gems 
28/09/2013 06:08:17 Last Game: 78 Games Stash: 2  TotalTime: 282 s NewGameTimer: 9 s Current Game Time: 225 s  -Inventory closed @up gems 
28/09/2013 06:08:18 Last Game: 78 Games Stash: 2  TotalTime: 283 s NewGameTimer: 9 s Current Game Time: 226 s  -@Town Show labels 
28/09/2013 06:08:25 Last Game: 78 Games Stash: 2  TotalTime: 291 s NewGameTimer: 17 s Current Game Time: 234 s  -@Town Stash opended not found!!!!! 
28/09/2013 06:08:26 Last Game: 78 Games Stash: 2  TotalTime: 291 s NewGameTimer: 18 s Current Game Time: 234 s  -@Town Show labels off 
28/09/2013 06:08:27 Last Game: 78 Games Stash: 2  TotalTime: 292 s NewGameTimer: 19 s Current Game Time: 235 s  -Bot paused off 
28/09/2013 06:08:28 Last Game: 78 Games Stash: 2  TotalTime: 293 s NewGameTimer: 20 s Current Game Time: 236 s  -Checking if we are in town 
28/09/2013 06:08:29 Last Game: 78 Games Stash: 2  TotalTime: 294 s NewGameTimer: 21 s Current Game Time: 238 s  -Checking if we are in town 
28/09/2013 06:08:31 Last Game: 78 Games Stash: 2  TotalTime: 296 s NewGameTimer: 22 s Current Game Time: 239 s  -Checking if we are in town 
28/09/2013 06:08:32 Last Game: 78 Games Stash: 2  TotalTime: 297 s NewGameTimer: 24 s Current Game Time: 240 s  -Checking if we are in town 
28/09/2013 06:08:33 Last Game: 78 Games Stash: 2  TotalTime: 298 s NewGameTimer: 25 s Current Game Time: 241 s  -Checking if we are in town 
28/09/2013 06:08:33 Last Game: 78 Games Stash: 2  TotalTime: 299 s NewGameTimer: 0 s Current Game Time: 0 s  Auras Starting 
28/09/2013 06:08:34 Last Game: 78 Games Stash: 2  TotalTime: 299 s NewGameTimer: 1 s Current Game Time: 1 s  Auras done 
28/09/2013 06:08:40 Last Game: 78 Games Stash: 2  TotalTime: 305 s NewGameTimer: 1 s Current Game Time: 7 s  long Stuck??????? 

im sorry that so long.

try this:

Town Detecting

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

#SingleInstance
CoordMode, Pixel, Relative

;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 in town
	_activeSkillInMap := 0x487DA2 ;pixel color for active skill  out of town
	_activeSkillInMapInactive := 0x344757 ;pixel color for active skill  out of town without mana
	_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


2. Open poe.

3. Run the script.

4. Press F4 for check town (ESC close the script)

5. Stay in town, check message in Toolbar. (Should be "In town")

5. Go out of town, check message in Toolbar. (Should be "In map")

5. Go out of town, use all your mana, check messagge in Toolbar. (Should be "In map")

If you have all three messages, detect town it is working for you

If not working, try this

1. Open poe.

2. Run Script check.town.ahk

3. Press F3.

4. Write the pixel color that you get in town (ex. 0x565656).

5. Go out of town write the pixel color you get.

6. Out of town use all your mana and then write the pixel color you get.

7. Now in file check.town.ahk change this values for the ones you got before.

_activeSkillInTown := 0x565656 ;pixel color for active skill in town

_activeSkillInMap := 0x487DA2 ;pixel color for active skill out of town

_activeSkillInMapInactive := 0x344757 ;pixel color for active skill out of town without mana

8. Run script again.

9. Press f4.

10. Post if it works :P

11. Test "Town Detecting" again.

Comment if "town detecting" it is working for you

Share this post


Link to post
Share on other sites

Ok, problem is solved. problem was highlist. Use always enabled, and no hide the showlist. Next trial change them in _EEB.ahk

ImageSearch, Px, Py, 0,0, 800, 600,*110 %_path_images%\stash.opened.png

to

ImageSearch, Px, Py, 0,0, 800, 600,*120 %_path_images%\stash.opened.png

work lovely, thanks for the script, and sorry for problem!

Have a nice day!

Share this post


Link to post
Share on other sites

try this:

ControlClick, x715 y495,  ahk_pid %EB_PID% 

edit: my code miss a ,

still not clicking.. also, it isnt stashing. it turns on labels.. turns off labels.. i adjusted the 110 that you mentioned a bit back way up.. no difference.

not sure if maybe where you use image search, my colors may just be off?

Share this post


Link to post
Share on other sites

try this:

ControlClick, x715 y495,  ahk_pid %EB_PID% 

edit: my code miss a ,

still not clicking.. also, it isnt stashing. it turns on labels.. turns off labels.. i adjusted the 110 that you mentioned a bit back way up.. no difference.

not sure if maybe where you use image search, my colors may just be off?

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

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.

Share this post


Link to post
Share on other sites

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.

Share this post


Link to post
Share on other sites

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

Share this post


Link to post
Share on other sites

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

Share this post


Link to post
Share on other sites

Hello,

I'm trying to set this up but when I get to image search, I get an error that says "The folder don't exists". Do you know what I could be doing wrong since I do believe I've followed your instructions. TYVM

Share this post


Link to post
Share on other sites

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

try this

MsgBox, %A_WorkingDir%
should be the path of your "eeb.ini" file

Yup, your case was very weird, but glad that now it is "solved"

Hello,

I'm trying to set this up but when I get to image search, I get an error that says "The folder don't exists". Do you know what I could be doing wrong since I do believe I've followed your instructions. TYVM

your "eeb.ini" file is configured correctly?

"imageserach test" read that file and take the path of images from him

Edit: I updated imagesearch script, update yours too.

Share this post


Link to post
Share on other sites

I've got everything working, thank you very much for the script. Would it be possible for you to add a check to see if stash is full and to move to next stash tab because atm once stash is full, it won't work anymore.

Share this post


Link to post
Share on other sites

I've got everything working, thank you very much for the script. Would it be possible for you to add a check to see if stash is full and to move to next stash tab because atm once stash is full, it won't work anymore.

Yup it is in my TODO list, at this moment I have not much time available, but the next thing I want to do is that

the new update for the bot has a pop up, which stops this from starting bot, anyway to code to get rid of the pop up if it needs to reload the bot?

I updated the script, update yours and should work without problem (exiledbot v.10)

Share this post


Link to post
Share on other sites

town ist still not detected i ran the check town script

in town=0x2B3964

outside=0x2B3964

all mana used=0x2B3964

all the same, and i dont know why

eeb.ini

[general]

;##############################################################################

;

; AURAS CONFIG

;

;##############################################################################

;

; *doauras => Want to use auras at the beginning of each run (1=yes 0=no)

;

; *aurakeys => This represent your 5 skill slots keystones

; change if you use different keys than default keystones (default Q,W,E,R,T)

;

; *auras => This represent your 5 skill slots

; Set 1 = use as aura, 0 = dont use as aura

; example 0,0,1,1,1 two first skills slots(Q,W) dont used as auras

; last three skills slots(E,R,T) used as auras

;

;==============================================================================

doauras =1

aurakeys =Q,W,E,R,T

auras =1,1,1,1,0

;==============================================================================

;##############################################################################

;

; INVENTORY CONFIG

;

;##############################################################################

;

; *row1...5 => Represent every cell of row1 to 5 at your inventory

; Set 1 to keep whatever is there, 0 to stash it.

;

;==============================================================================

row1 =1,1,0,0,0,0,0,0,0,0,0,0

row2 =0,0,0,0,0,0,0,0,0,0,0,0

row3 =0,0,0,0,0,0,0,0,0,0,0,0

row4 =0,0,0,0,0,0,0,0,0,0,0,0

row5 =0,0,0,0,0,0,0,0,0,0,0,0

;==============================================================================

;##############################################################################

;

; GAME AND Exiledbot KEYSTONES

;

;##############################################################################

;

; *keyPauseBot => Keystone for pause unpause @ exiledbot (default F12)

;

; *keyOpenInv => Keystone for open inventory @ poe (default I)

;

; *keyShowLabels => Keystone for show labels @ poe (default Z)

;

; *keyShowCharInfo => Keystone for show character info @ poe (default C)

;

;==============================================================================

keyPauseBot =F12

keyOpenInv =I

keyShowLabels =Z

keyShowCharInfo =C

;==============================================================================

;##############################################################################

;

; GAME AND Exiledbot PATHS & NAMES

;

;##############################################################################

;

; *path_poe => Path where is installed poe (don't include game exe)

; normal paths C:\Program Files\Grinding Gear Games\Path of Exile or

; C:\Program Files (x86)\Grinding Gear Games\Path of Exile

;

; *path_bot => Path of exiledbot (don't include exiledbot exe)

;

; *name_poe => Name of the game exe

; If GGG change the name of their exe change this, otherwise leave it

;

; *name_bot => Name of the exiledbot exe

; If exiledbot team change the name of their exe change this, otherwise

; leave it

;

; *name_poe_win => Name of the window when you run game exe

; If GGG change the name displayed on window poe change this,

; otherwise leave it

;

; *name_bot_win => Name of the window when you run exilebot exe

; The name of exilebot window is the path + the exe name including the

; extension of exilebot

;

; *path_images => Path where images are

;

;==============================================================================

path_poe =C:\Program Files (x86)\GGG\Path of Exile

path_bot =D:\Bot\_eebv2.1\Exiled Bot Beta v0.10

name_poe =PathOfExile.exe

name_bot =ExiledBot.exe

name_poe_win =Path of Exile

name_bot_win =ExiledBot v0.10

path_images =D:\Bot\_eebv2.1\_images

;==============================================================================

;##############################################################################

;

; RESTART & BREAK CONFIG

;

;##############################################################################

;

; *restartBot => Restart exiledbot and poe every xxx time (1=yes 0=no)

;

; *timeRestartBot => Time transcurred before restart (in seconds)

;

; *takeBreak => When bot is restarting, take a break (1=yes 0=no)

;

; *timeBreak => Duration of break (in seconds)

;

; 7200 seconds = 2 hours

; 300 seconds = 5 minutes

;

;==============================================================================

restartBot =1

timeRestartBot =3600

takeBreak =1

timeBreak =5

;==============================================================================

;##############################################################################

;

; TIMERS CONFIG

;

;##############################################################################

;

; *maxGameLength => Max time in a map (in seconds), if this time is reached,

; the bot and game is restarted, should be like 10 seconds more than

; run_max_time variable in config.ini

;

; *maxTimeNoNewGame => Max time without new game detected (in seconds), if this

; time is reached, the bot and game is restarted.

;

; *minGameLength => Minimum Game Length (in seconds), if game duration is shorter

; than this, bot it's paused till time is reached.

;

; *lagTimer => If you have lag, increase this value (in milliseconds **) ?????

;

;==============================================================================

maxGameLength =280

maxTimeNoNewGame =180

minGameLength =120

lagTimer =60

;==============================================================================

;##############################################################################

;

; MISC CONFIG

;

;##############################################################################

;

; *writelog => Write log @ file log_eeb.txt (1=yes 0=no)

;

; *trylog => Use TrayTip log (1=yes 0=no)

;

; *upGems => Upgrade gems when visiting town (1=yes 0=no)

;

; *stashGames => Number of games before stashing

;

;==============================================================================

writelog =0

trylog =0

upGems =1

stashGames =2

;==============================================================================

[internal]

;##############################################################################

;

; INTERNAL CONFIG

;

;##############################################################################

;

;

; *lastgame => number of last game done, automatically updated

; You can reset or change this number

;

; *crash => counter for number of crash found (ExiledBot GUI), automatically updated

;

; *minGameExit => counter for number of games with premature exit, automatically updated

;

;==============================================================================

lastgame =69

crash =0

minGameExit =0

resurrect =0

loopwalk =109

;==============================================================================

any idea?

Share this post


Link to post
Share on other sites

town ist still not detected i ran the check town script

in town=0x2B3964

outside=0x2B3964

all mana used=0x2B3964

all the same, and i dont know why

eeb.ini

[general]

;##############################################################################

;

; AURAS CONFIG

;

;##############################################################################

;

; *doauras => Want to use auras at the beginning of each run (1=yes 0=no)

;

; *aurakeys => This represent your 5 skill slots keystones

; change if you use different keys than default keystones (default Q,W,E,R,T)

;

; *auras => This represent your 5 skill slots

; Set 1 = use as aura, 0 = dont use as aura

; example 0,0,1,1,1 two first skills slots(Q,W) dont used as auras

; last three skills slots(E,R,T) used as auras

;

;==============================================================================

doauras =1

aurakeys =Q,W,E,R,T

auras =1,1,1,1,0

;==============================================================================

;##############################################################################

;

; INVENTORY CONFIG

;

;##############################################################################

;

; *row1...5 => Represent every cell of row1 to 5 at your inventory

; Set 1 to keep whatever is there, 0 to stash it.

;

;==============================================================================

row1 =1,1,0,0,0,0,0,0,0,0,0,0

row2 =0,0,0,0,0,0,0,0,0,0,0,0

row3 =0,0,0,0,0,0,0,0,0,0,0,0

row4 =0,0,0,0,0,0,0,0,0,0,0,0

row5 =0,0,0,0,0,0,0,0,0,0,0,0

;==============================================================================

;##############################################################################

;

; GAME AND Exiledbot KEYSTONES

;

;##############################################################################

;

; *keyPauseBot => Keystone for pause unpause @ exiledbot (default F12)

;

; *keyOpenInv => Keystone for open inventory @ poe (default I)

;

; *keyShowLabels => Keystone for show labels @ poe (default Z)

;

; *keyShowCharInfo => Keystone for show character info @ poe (default C)

;

;==============================================================================

keyPauseBot =F12

keyOpenInv =I

keyShowLabels =Z

keyShowCharInfo =C

;==============================================================================

;##############################################################################

;

; GAME AND Exiledbot PATHS & NAMES

;

;##############################################################################

;

; *path_poe => Path where is installed poe (don't include game exe)

; normal paths C:\Program Files\Grinding Gear Games\Path of Exile or

; C:\Program Files (x86)\Grinding Gear Games\Path of Exile

;

; *path_bot => Path of exiledbot (don't include exiledbot exe)

;

; *name_poe => Name of the game exe

; If GGG change the name of their exe change this, otherwise leave it

;

; *name_bot => Name of the exiledbot exe

; If exiledbot team change the name of their exe change this, otherwise

; leave it

;

; *name_poe_win => Name of the window when you run game exe

; If GGG change the name displayed on window poe change this,

; otherwise leave it

;

; *name_bot_win => Name of the window when you run exilebot exe

; The name of exilebot window is the path + the exe name including the

; extension of exilebot

;

; *path_images => Path where images are

;

;==============================================================================

path_poe =C:\Program Files (x86)\GGG\Path of Exile

path_bot =D:\Bot\_eebv2.1\Exiled Bot Beta v0.10

name_poe =PathOfExile.exe

name_bot =ExiledBot.exe

name_poe_win =Path of Exile

name_bot_win =ExiledBot v0.10

path_images =D:\Bot\_eebv2.1\_images

;==============================================================================

;##############################################################################

;

; RESTART & BREAK CONFIG

;

;##############################################################################

;

; *restartBot => Restart exiledbot and poe every xxx time (1=yes 0=no)

;

; *timeRestartBot => Time transcurred before restart (in seconds)

;

; *takeBreak => When bot is restarting, take a break (1=yes 0=no)

;

; *timeBreak => Duration of break (in seconds)

;

; 7200 seconds = 2 hours

; 300 seconds = 5 minutes

;

;==============================================================================

restartBot =1

timeRestartBot =3600

takeBreak =1

timeBreak =5

;==============================================================================

;##############################################################################

;

; TIMERS CONFIG

;

;##############################################################################

;

; *maxGameLength => Max time in a map (in seconds), if this time is reached,

; the bot and game is restarted, should be like 10 seconds more than

; run_max_time variable in config.ini

;

; *maxTimeNoNewGame => Max time without new game detected (in seconds), if this

; time is reached, the bot and game is restarted.

;

; *minGameLength => Minimum Game Length (in seconds), if game duration is shorter

; than this, bot it's paused till time is reached.

;

; *lagTimer => If you have lag, increase this value (in milliseconds **) ?????

;

;==============================================================================

maxGameLength =280

maxTimeNoNewGame =180

minGameLength =120

lagTimer =60

;==============================================================================

;##############################################################################

;

; MISC CONFIG

;

;##############################################################################

;

; *writelog => Write log @ file log_eeb.txt (1=yes 0=no)

;

; *trylog => Use TrayTip log (1=yes 0=no)

;

; *upGems => Upgrade gems when visiting town (1=yes 0=no)

;

; *stashGames => Number of games before stashing

;

;==============================================================================

writelog =0

trylog =0

upGems =1

stashGames =2

;==============================================================================

[internal]

;##############################################################################

;

; INTERNAL CONFIG

;

;##############################################################################

;

;

; *lastgame => number of last game done, automatically updated

; You can reset or change this number

;

; *crash => counter for number of crash found (ExiledBot GUI), automatically updated

;

; *minGameExit => counter for number of games with premature exit, automatically updated

;

;==============================================================================

lastgame =69

crash =0

minGameExit =0

resurrect =0

loopwalk =109

;==============================================================================

any idea?

You have to manually edit those lines in eeb.ahk to match the values you got.

Share this post


Link to post
Share on other sites

You have to manually edit those lines in eeb.ahk to match the values you got.

the problem is he is getting the same values for all variables so town detecting it is not working for him

town ist still not detected i ran the check town script

in town=0x2B3964

outside=0x2B3964

all mana used=0x2B3964

all the same, and i dont know why

eeb.ini

[general]

;##############################################################################

;

; AURAS CONFIG

;

;##############################################################################

;

; *doauras => Want to use auras at the beginning of each run (1=yes 0=no)

;

; *aurakeys => This represent your 5 skill slots keystones

; change if you use different keys than default keystones (default Q,W,E,R,T)

;

; *auras => This represent your 5 skill slots

; Set 1 = use as aura, 0 = dont use as aura

; example 0,0,1,1,1 two first skills slots(Q,W) dont used as auras

; last three skills slots(E,R,T) used as auras

;

;==============================================================================

doauras =1

aurakeys =Q,W,E,R,T

auras =1,1,1,1,0

;==============================================================================

;##############################################################################

;

; INVENTORY CONFIG

;

;##############################################################################

;

; *row1...5 => Represent every cell of row1 to 5 at your inventory

; Set 1 to keep whatever is there, 0 to stash it.

;

;==============================================================================

row1 =1,1,0,0,0,0,0,0,0,0,0,0

row2 =0,0,0,0,0,0,0,0,0,0,0,0

row3 =0,0,0,0,0,0,0,0,0,0,0,0

row4 =0,0,0,0,0,0,0,0,0,0,0,0

row5 =0,0,0,0,0,0,0,0,0,0,0,0

;==============================================================================

;##############################################################################

;

; GAME AND Exiledbot KEYSTONES

;

;##############################################################################

;

; *keyPauseBot => Keystone for pause unpause @ exiledbot (default F12)

;

; *keyOpenInv => Keystone for open inventory @ poe (default I)

;

; *keyShowLabels => Keystone for show labels @ poe (default Z)

;

; *keyShowCharInfo => Keystone for show character info @ poe (default C)

;

;==============================================================================

keyPauseBot =F12

keyOpenInv =I

keyShowLabels =Z

keyShowCharInfo =C

;==============================================================================

;##############################################################################

;

; GAME AND Exiledbot PATHS & NAMES

;

;##############################################################################

;

; *path_poe => Path where is installed poe (don't include game exe)

; normal paths C:\Program Files\Grinding Gear Games\Path of Exile or

; C:\Program Files (x86)\Grinding Gear Games\Path of Exile

;

; *path_bot => Path of exiledbot (don't include exiledbot exe)

;

; *name_poe => Name of the game exe

; If GGG change the name of their exe change this, otherwise leave it

;

; *name_bot => Name of the exiledbot exe

; If exiledbot team change the name of their exe change this, otherwise

; leave it

;

; *name_poe_win => Name of the window when you run game exe

; If GGG change the name displayed on window poe change this,

; otherwise leave it

;

; *name_bot_win => Name of the window when you run exilebot exe

; The name of exilebot window is the path + the exe name including the

; extension of exilebot

;

; *path_images => Path where images are

;

;==============================================================================

path_poe =C:\Program Files (x86)\GGG\Path of Exile

path_bot =D:\Bot\_eebv2.1\Exiled Bot Beta v0.10

name_poe =PathOfExile.exe

name_bot =ExiledBot.exe

name_poe_win =Path of Exile

name_bot_win =ExiledBot v0.10

path_images =D:\Bot\_eebv2.1\_images

;==============================================================================

;##############################################################################

;

; RESTART & BREAK CONFIG

;

;##############################################################################

;

; *restartBot => Restart exiledbot and poe every xxx time (1=yes 0=no)

;

; *timeRestartBot => Time transcurred before restart (in seconds)

;

; *takeBreak => When bot is restarting, take a break (1=yes 0=no)

;

; *timeBreak => Duration of break (in seconds)

;

; 7200 seconds = 2 hours

; 300 seconds = 5 minutes

;

;==============================================================================

restartBot =1

timeRestartBot =3600

takeBreak =1

timeBreak =5

;==============================================================================

;##############################################################################

;

; TIMERS CONFIG

;

;##############################################################################

;

; *maxGameLength => Max time in a map (in seconds), if this time is reached,

; the bot and game is restarted, should be like 10 seconds more than

; run_max_time variable in config.ini

;

; *maxTimeNoNewGame => Max time without new game detected (in seconds), if this

; time is reached, the bot and game is restarted.

;

; *minGameLength => Minimum Game Length (in seconds), if game duration is shorter

; than this, bot it's paused till time is reached.

;

; *lagTimer => If you have lag, increase this value (in milliseconds **) ?????

;

;==============================================================================

maxGameLength =280

maxTimeNoNewGame =180

minGameLength =120

lagTimer =60

;==============================================================================

;##############################################################################

;

; MISC CONFIG

;

;##############################################################################

;

; *writelog => Write log @ file log_eeb.txt (1=yes 0=no)

;

; *trylog => Use TrayTip log (1=yes 0=no)

;

; *upGems => Upgrade gems when visiting town (1=yes 0=no)

;

; *stashGames => Number of games before stashing

;

;==============================================================================

writelog =0

trylog =0

upGems =1

stashGames =2

;==============================================================================

[internal]

;##############################################################################

;

; INTERNAL CONFIG

;

;##############################################################################

;

;

; *lastgame => number of last game done, automatically updated

; You can reset or change this number

;

; *crash => counter for number of crash found (ExiledBot GUI), automatically updated

;

; *minGameExit => counter for number of games with premature exit, automatically updated

;

;==============================================================================

lastgame =69

crash =0

minGameExit =0

resurrect =0

loopwalk =109

;==============================================================================

any idea?

You can try two options

Option 1.

Search in script check.town.ahk

original

655, 582
and change all occurrences(7) with this

new

655, 563

earlier someone got similar problem and these coordinate ran for him.

however a better option should be this

Option 2

basically we are looking for 3 values, all 3 diferent

1. _activeSkillInTown mouse right skill in town. Ex.

Posted Image

2. _activeSkillInMap mouse right skill out of town. Ex

Posted Image

3. _activeSkillInMapInactive mouse right skill out of town without mana

no image sry : / but you get the idea

4. Zoom for better understanding

Posted Image

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

5. So save this script as check.xy.color.ahk and run it


#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

6. Run POE.

7. Put your mouse hover the center of the red circle (point 4), write coordinates you got and then go to opcion 1 and test with these coordinates.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...