Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Path of Exile: Chicken Script (Don't Die in Hardcore/Invasion) Any Resolution - 03.04.2014


  • Please log in to reply
53 replies to this topic
theblessed
  • Members
  • 1 posts
  • Last active: Apr 25 2013 10:15 AM
  • Joined: 25 Apr 2013

hi  form where i can get this program? and its not hack to get my acc?

 



Sanctus
  • Members
  • 283 posts
  • Last active: Dec 06 2014 04:05 PM
  • Joined: 30 Nov 2012

hi  form where i can get this program? and its not hack to get my acc?

 

short answer:

download ahk, install, then copy the code and save as .ahk file then run, simple as that

and no it will not steal your account (the whole programs code is shown there for everyone to seen)


Check out ALL My Scripts  ;)


wittydealings
  • Members
  • 1 posts
  • Last active: Jul 15 2013 02:46 AM
  • Joined: 15 Jul 2013

This script seems to work great, but for one thing. It doesnt log me out based on my health, but on the energy shield. How do I fix this?



Sanctus
  • Members
  • 283 posts
  • Last active: Dec 06 2014 04:05 PM
  • Joined: 30 Nov 2012

http://www.autohotke...nates-at-mouse/

use this script and edit

"PixelGetColor, color1 , 127, 983"

and this line

PixelSearch, FoundhX, FoundhY, 60, 872, 170, 991, %color1%, 5, Fast

this line, until it works for you


Check out ALL My Scripts  ;)


bndtbc522
  • Members
  • 2 posts
  • Last active: Aug 30 2013 06:36 PM
  • Joined: 25 Aug 2013

how can I get it to work for 1920X1200 windowed fullscreen???



bndtbc522
  • Members
  • 2 posts
  • Last active: Aug 30 2013 06:36 PM
  • Joined: 25 Aug 2013

my screen is to big for this program -.-"



Sanctus
  • Members
  • 283 posts
  • Last active: Dec 06 2014 04:05 PM
  • Joined: 30 Nov 2012

my screen is to big for this program -.-"

 

how can I get it to work for 1920X1200 windowed fullscreen???

 

use this script

http://www.autohotke...se/#entry575989

to find the correct value locations, with basic knowledge of auto hotkey you are sure to be able to figure it out ;)


Check out ALL My Scripts  ;)


BossKiller
  • Members
  • 1 posts
  • Last active: Oct 30 2013 06:16 PM
  • Joined: 26 Oct 2013

Hey man, first of all great work! I was looking into your chicken script last night and decided to try it out today. I too use 1920x1200 reso monitor and tried to edit the values using your other script(I am newb to autohotkey/scripts)

So first I changed the color values of health pool1, health pool2 and chat button(I wasn't sure where I had to put my mouse for the chat button and why do we need that?)

Then I changed the coordinates for the MouseClick -> log out button, after I edit:


PixelSearch, FoundhX, FoundhY, 60, 940, 178, 1070, %color3%, 5, Fast ;Pick Hero
if ErrorLevel = 1
{
SendInput, 12345
}
PixelSearch, FoundhX, FoundhY, 60, 1000, 179, 1091, %color1%, 5, Fast ;Pick Hero
if ErrorLevel = 1
but here we have 4 values and I wasn't sure what to do, I again got new coordinates with mouse-overing my health globe and changed the last 2 values of each line, but didn't know what to do with the 60, 940/60, 1000

and with this I have no idea what to change:
PixelSearch, FoundoX, FoundoY, 4, 873, 25, 894, %color2%, 5, Fast ;Pick Hero
if ErrorLevel = 0

 

Anyway I ran the script, press f4 in town and when I zone out all my pots got 'clicked once', but when I was testing it on a pack of mobs after I dropped to low health I did got logged out, so it worked!(my game closed actually, so I guess I 'clicked' on the exit button), but then when I start the game after Loading it got closed few times, I had to turn the script off and then it starts, so I guess I messed up

Would be happy if you can help me out! And sorry if my questions are dumb lol, I have no idea what I am doing :D



Sanctus
  • Members
  • 283 posts
  • Last active: Dec 06 2014 04:05 PM
  • Joined: 30 Nov 2012

Hey man, first of all great work! I was looking into your chicken script last night and decided to try it out today.

I think since Poe just released I'll go into re-releasing the script :)

 

There we go

F4::
PixelGetColor, hpcolor , 127, 983
PixelGetColor, chaticon , 15, 882

MsgBox, Press OK to Activate Chicken Script (values found : %hpcolor% , %chaticon%)
Loop {
IfWinActive, Path of Exile
{
	;Find the Orange chat Icon (makes sure you are on a character)
	PixelSearch, FoundoX, FoundoY, 4, 873, 25, 894, %chaticon%, 5, Fast
	if ErrorLevel = 0
	{
		;Just under 50% start drinking pots
		PixelSearch, FoundhX, FoundhY, 60, 872, 170, 972, %hpcolor%, 5, Fast
		if ErrorLevel = 1
		{
			SendInput, 12345
		}
		;If HP goes to 35%~ or below quit
		PixelSearch, FoundhX, FoundhY, 60, 872, 170, 991, %hpcolor%, 5, Fast
		if ErrorLevel = 1
		{
			SendInput, 1112345
			SendInput, {Esc}
			MouseClick, Left, 962, 432,,Fast
		}
	}
}
Sleep, 100
}
return

If you have a shield based character use this script:

F4::
PixelGetColor, shieldcolor , 220, 999
PixelGetColor, chaticon , 15, 882

MsgBox, Press OK to Activate Chicken Script (values found : %shieldcolor% , %chaticon%)
Loop {
IfWinActive, Path of Exile
{
	;Find the Orange chat Icon (makes sure you are on a character)
	PixelSearch, FoundoX, FoundoY, 4, 873, 25, 894, %chaticon%, 5, Fast
	if ErrorLevel = 0
	{
		;Just under 50% start drinking pots
		PixelSearch, FoundhX, FoundhY, 168, 883, 225, 966, %shieldcolor%, 5, Fast
		if ErrorLevel = 1
		{
			SendInput, 12345
		}
		;If Shield goes to 35%~ or below quit
		PixelSearch, FoundhX, FoundhY, 166, 883, 219, 1010, %shieldcolor%, 5, Fast
		if ErrorLevel = 1
		{
			SendInput, 1112345
			SendInput, {Esc}
			MouseClick, Left, 962, 432,,Fast
		}
	}
}
Sleep, 100
}
return

Again I must repeat myself and say that this script does not make you invincible, if you get 2 shot it will not save you. Build a great character and it will do its best to save you.

It's best used in combination with the F1 Instant logout script

F1::
SendInput, 1112345
SendInput, {Esc}
MouseClick, Left, 962, 432,,Fast
return

As well as this script (ctrl+x) will send /oos to the chat which will force a resync of the game.

^x::
SendInput, {Enter}
sleep, 20
SendInput, {/}oos
SendInput, {Enter}
return

Good luck guys.


Check out ALL My Scripts  ;)


Sanctus
  • Members
  • 283 posts
  • Last active: Dec 06 2014 04:05 PM
  • Joined: 30 Nov 2012

I too use 1920x1200 reso monitor and tried to edit the values using your other script(I am newb to autohotkey/scripts)

So first I changed the color values of health pool1, health pool2 and chat button(I wasn't sure where I had to put my mouse for the chat button and why do we need that?)

Then I changed the coordinates for the MouseClick -> log out button, after I edit:


PixelSearch, FoundhX, FoundhY, 60, 940, 178, 1070, %color3%, 5, Fast ;Pick Hero
if ErrorLevel = 1
{
SendInput, 12345
}
PixelSearch, FoundhX, FoundhY, 60, 1000, 179, 1091, %color1%, 5, Fast ;Pick Hero
if ErrorLevel = 1
but here we have 4 values and I wasn't sure what to do, I again got new coordinates with mouse-overing my health globe and changed the last 2 values of each line, but didn't know what to do with the 60, 940/60, 1000

and with this I have no idea what to change:
PixelSearch, FoundoX, FoundoY, 4, 873, 25, 894, %color2%, 5, Fast ;Pick Hero
if ErrorLevel = 0

 

Anyway I ran the script, press f4 in town and when I zone out all my pots got 'clicked once', but when I was testing it on a pack of mobs after I dropped to low health I did got logged out, so it worked!(my game closed actually, so I guess I 'clicked' on the exit button), but then when I start the game after Loading it got closed few times, I had to turn the script off and then it starts, so I guess I messed up

Would be happy if you can help me out! And sorry if my questions are dumb lol, I have no idea what I am doing :D

PixelGetColor, hpcolor , 127, 983
PixelGetColor, chaticon , 15, 882

PixelSearch, FoundoX, FoundoY, 4, 873, 25, 894, %chaticon%, 5, Fast
PixelSearch, FoundhX, FoundhY, 60, 872, 170, 972, %hpcolor%, 5, Fast
PixelSearch, FoundhX, FoundhY, 60, 872, 170, 991, %hpcolor%, 5, Fast
MouseClick, Left, 962, 432,,Fast

These are the lines you need to edit

 

PixelGetColor, hpcolor , 127, 983

This is a random red color in your hp pool (location I use is below the white glance under the middle of the hp pool)

PixelGetColor, chaticon , 15, 882

This is the orange chat icon (its quite small so you may never have noticed it before) It makes sure the script doesn't run unless your actually playing on a character.

PixelSearch, FoundoX, FoundoY, 4, 873, 25, 894, %chaticon%, 5, Fast

This is a box around the orange chat icon (top right corner (4, 873) and bottom left corner(25, 894))

PixelSearch, FoundhX, FoundhY, 60, 872, 170, 972, %hpcolor%, 5, Fast
PixelSearch, FoundhX, FoundhY, 60, 872, 170, 991, %hpcolor%, 5, Fast

The first one looks to see if the red color can be found anywhere in the top half of the health pool if not it drinks pots to try to save your character

The second one looks to see if the red color can be found anywhere between 100% and 35% of the hp pool if not it drinks all pots and logs out

MouseClick, Left, 962, 432,,Fast

After pressing escape it logs out of the character (its simply the location of the log out button)

 

To edit the script to work for your resolution you can use this script I made

http://www.autohotke...se/#entry575989

 

Good luck.


Check out ALL My Scripts  ;)


Amaterasu81
  • Members
  • 2 posts
  • Last active: Dec 06 2013 04:15 AM
  • Joined: 29 Nov 2013

Anyone got this script made for 2560*1600 resolution?



Marci0
  • Members
  • 1 posts
  • Last active: Dec 02 2013 03:19 PM
  • Joined: 02 Dec 2013

Hi Dude,

 

Thanks for the script, it's amazing. I need 3 scripts to work in my resolution 1440x900, can you help me please?

 

1 - A script to sen /oos every 5s or another time

2 - A script to drink pots when my hp/mana is below 40%. Flask1 for HP and flask 2 for mana.

3 - A script to keep using flask 5 (+40% hero speed, +3000 armor etc) or another number, 

 

Allof my flasks are in 1 - 5.

 

Sorry to bother you, but I tried to modify and didn't work in 1440x900, i'm noob :p

I would appreciate your help

 

Peace man!



Amaterasu81
  • Members
  • 2 posts
  • Last active: Dec 06 2013 04:15 AM
  • Joined: 29 Nov 2013

come on...please somebody help us! :)



Nasdac
  • Members
  • 1 posts
  • Last active: Dec 30 2013 06:45 PM
  • Joined: 04 Dec 2013

Hi Sunctus.I''m sorry but could you make a script for 1280x1024 resolution?



Sanctus
  • Members
  • 283 posts
  • Last active: Dec 06 2014 04:05 PM
  • Joined: 30 Nov 2012

come on...please somebody help us!  :)

Anyone got this script made for 2560*1600 resolution?

my screen is to big for this program -.-"

how can I get it to work for 1920X1200 windowed fullscreen???

Hi Sunctus.I''m sorry but could you make a script for 1280x1024 resolution?

 

I need some time to make a script that works for every resolution, need to make sure its not too heavy and is as fast and simple to use.

 

But for now, if you want the chicken script in a resolution other than 1920x1080

 

use this script:

http://www.autohotke...en-resolutions/

 

PixelSearch, FoundoX, FoundoY, 4, 873, 25, 894, %chaticon%, 5, Fast

MouseClick, Left, 962, 432,,Fast

PixelGetColor, hpcolor , 127, 983

 

Just in case you didn't realize which numbers are x and y

x = red

y = green

and those are the positions you will find them in the script

Convert every x and y position in the script to the relative one in your resolution

Original Resolution should be 1920x1080

 

Do test it on a casual character before you try it on your main

 

Should work if Fullscreen borderless, windowed border makes the calculation incorrect.

 

Good Luck & Don't Die.


Check out ALL My Scripts  ;)