dutch-force Posted August 22, 2005 Posted August 22, 2005 Well i posted something in an old thread to but k i tought i'd make a new topic i'm trying to make something for mu It has to auto attack monsters and auto heal and auto pickup the auto pickup part is done Well for the auto attack it needs to get the coords or pixels what ever i don't know of the monsters so it can left click it how can this be done? Then for auto heal how can i get a script to know how far my health has dropped is this also with pixels or what? well i hope somebody can help me i'm a total n00b at this but can learn fast
SupraNatural Posted August 22, 2005 Posted August 22, 2005 Try something like; $health = PixelGetColor ( x , y ) If $health = 16711689 Then send("q") endif ;16711689 = pure red (not sure if the same color as your health bar) ;0xFF0009 = pure red hex code Im not sure why the autoit window viewer sees it as 0xFF0009 instead of 0xFF0000 Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
w0uter Posted August 22, 2005 Posted August 22, 2005 it sees the 9 since it isnt PURE red My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
dirtybob Posted August 23, 2005 Posted August 23, 2005 Can we get a look at your auto pick up? Looting in World of Wacraft. Im struggling with that part.
SupraNatural Posted August 23, 2005 Posted August 23, 2005 the loot might be a bit different though, all i wanna know is how the people in the past made pickit for diablo 2 or for that matter how in the world they made maphack. Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
dutch-force Posted August 23, 2005 Author Posted August 23, 2005 its just some stupid thingy pressing space all the time since thats the key to pick up things
dutch-force Posted August 23, 2005 Author Posted August 23, 2005 by the way $health = PixelGetColor ( x , y ) If $health = 16711689 Then send("q") endif ;16711689 = pure red (not sure if the same color as your health bar) ;0xFF0009 = pure red hex code $health = PixelGetColor ( x , y ) Thats the line where is should fill in the coord from what point i want it to use the potion or what? Cuz well with meh n00bie skills i figured out this script will press q on the coord i set at the pixelgetcolor and then when it gets the color you send it will press the q right? Or isn't that correct? lol sorry i'm still a total n00b at this?
SupraNatural Posted August 23, 2005 Posted August 23, 2005 Actually i messed up it should be; while 1 $health = PixelGetColor ( x , y ) If $health = 16711689 Then send("q") wend endif Ok all you need to do is set PixelGetColor ( x , y ) to the point you want to the script to look for to NOT be red at a certain time. Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
dutch-force Posted August 23, 2005 Author Posted August 23, 2005 (edited) This is what i made of it :\ but it doesn't workHotKeySet("!{F8}", "AutoHeal0rz") HotKeySet("+{F8}", "UnAutoHeal0rz") Global $pick = 0 While 1 $health = PixelGetColor ( 418 , 897 ) If $health = 0x030503 Then send("q") Wend endif ;( 418 , 897 ) is set at the point where you should be healed ;0x030503 = the HeX color of the pixel it will change to when you go lower then the amount of healt func AutoHeal0rz() $pick = 1 endfunc func UnAutoHeal0rz() $pick = 0 endfunchere i have a picture how it all looks and where it should start healing maybe it will clear everything up Edited August 23, 2005 by dutch-force
SupraNatural Posted August 23, 2005 Posted August 23, 2005 My bad again it should be If NOT $health = 0x030503 Then Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
dutch-force Posted August 23, 2005 Author Posted August 23, 2005 aha yeh that sounds pretty good damn why didn't i think of that earlier :\ well really thnx for teh help on autoheal
SupraNatural Posted August 23, 2005 Posted August 23, 2005 Also if that doesn't work try this script HotKeySet("!{F8}", "AutoHeal0rz") HotKeySet("+{F8}", "UnAutoHeal0rz") Global $pick = 0 While 1 $HPBox = PixelSearch(197, 988, 279, 1012, 0x020401, 3) If Not @error Then Send("Q") ExitLoop EndIf Wend ;( 418 , 897 ) is set at the point where you should be healed ;0x030503 = the HeX color of the pixel it will change to when you go lower then the amount of healt func AutoHeal0rz() $pick = 1 endfunc func UnAutoHeal0rz() $pick = 0 endfunc Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
dutch-force Posted August 23, 2005 Author Posted August 23, 2005 hmmz i problem the coords r wrong with the color :\ i need to get it while full screen how can i record the coords n color while having mouse on it in full screen?
SupraNatural Posted August 23, 2005 Posted August 23, 2005 Well use AutoIT window info tool, and just ctrl alt F on the spot. Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
SupraNatural Posted August 23, 2005 Posted August 23, 2005 (edited) with the autoit window tool it pause the information when u press it, like mouse pos, color under mouse, etc. If i had MU i would be glad to help you more. Edited August 23, 2005 by SupraNatural Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
dutch-force Posted August 23, 2005 Author Posted August 23, 2005 (edited) nvm i know k i'll go and try it well you can download it for free www.muonline.com if that helps lol its really much better then d2 Edited August 23, 2005 by dutch-force
SupraNatural Posted August 23, 2005 Posted August 23, 2005 Alright im downloadin it now... Ill get back to u after it installs. Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
dutch-force Posted August 23, 2005 Author Posted August 23, 2005 cool if you want you can add meh on MSN silent__pretenderr@hotmail.com
SupraNatural Posted August 23, 2005 Posted August 23, 2005 Im havin a problem playin it, when i start it up and hit connect button nothing happens. Visit http://www.blizzedout.com/forums/register....referrerid=8306 for the top blizzard hacks. WoW, TfT, D2/LOD, CS. You name it we got it!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now