Tailor Made Tools/Programs for You - AHK

03/08/2009 13:56 Darkyy#286
Quote:
Originally Posted by Evan Lim View Post
Darkyy@
fill in the xpos and ypos and it should be good
Thanks alot.
Couldn't find a guide on AHKs site.
03/08/2009 17:37 Evan Lim#287
hellbladelll@
link:
[Only registered and activated users can see links. Click Here To Register...]
03/09/2009 03:48 hellbladelll#288
I need an auto left clicker for the healthbar of monsters,
I wanna use FatalStrike on monsters, without having to hurt my hands :D.
----------------------------------
ctrl q- pause/unpause
left clicks on "red" health bar at a speed of .5ms/click
everywere it sees a healthbar, it just left clicks on it, changing "targets" every .5ms
need any more info?
03/09/2009 04:04 Evan Lim#289
hellbladelll@
Code:
#Persistent
msgbox, 1024x768 mode`nCtrl + Q to pause
settimer, red, 1000
return

red:
IfWinActive , [Conq
{
PixelSearch, outx, outy, 400, 200, 600, 400,0x0303B8,,Fast
if ErrorLevel
{
PixelSearch, outx, outy, 100, 50, 900, 600,0x0303B8,,Fast
if ErrorLevel
{
sleep 500
}
else
{
EnvAdd, outy, 20
EnvAdd, outx, 20
click %outx%, %outy%
}
}
else
{
EnvAdd, outy, 20
EnvAdd, outx, 20
click %outx%, %outy%
}
}

return

^q::pause
03/09/2009 04:08 BlindingPheonix#290
can u make me a tro lvling bot that, auto pots at half hp, dcs on blue names red names gms and blak names, picks up rues, gems and picks up normasl to check if they are +1, auto dropper for normal crap, spams xp skills at f10, auto dcs if u pick up db. thanks it would gratelly appreciated if u could do this or atleast some of it. thanks again
03/09/2009 07:41 Evan Lim#291
BlindingPheonix@
Quote:
dcs on blue names red names gms and blak names
picks up rues, gems and picks up normasl to check if they are +1
auto dropper for normal crap
auto dcs if u pick up db
the above list all no, dont know how to do it
03/09/2009 20:55 Dr.unreal#292
Hello,

I am playing at Qonquer and i am an warrior.I would like to request a bot for leveling/hunting.The bot should attack/pot (F1)/use xp skills(F10).it should also pick up mets,gems and dragon balls.It should wait for respawn and when it kills monsters it souldnt click on sm counter while sm is on like other bots . I know the sm counter is the same color as the hp bars but idk how to change it:) Thank you for your time.
03/10/2009 00:10 carmaster01#293
is it possible to make an item detector?
like if there is a specific item in the widest area possible, it puts a message in the conquer window showing the item name and coordinates.

items such as:
quality items
dbs
mets
gems
etc...
03/10/2009 01:16 Evan Lim#294
Dr.unreal@
i dont know how to fix the sm counter problem anyways
so might as well point u to use ELSEpath bot

carmaster01@
no idea how to read what text is on screen
03/10/2009 06:49 Dr.unreal#295
Well i got 1 idea but idk if its good.Is there any chance to write a function that when sm is active will ignore some space above the center of screen ? And the ELSEpath is not workng on Qonquer :( even b4 and after ur debug.
03/10/2009 06:54 Evan Lim#296
Dr.unreal@
1. i dont know how to detect sm. plus splitting the pixel search into 4x searching region (to aviod the center part) is just wasting resources
2. ELSEpath detects window title [Conquer2.0], thus without changing the script to detect Qonquer of course not work. and its been describe how to solve this problem in ELSEpath solution section

also, u can avoid the sm counter by covering it:
Code:
Gui, -Caption +ToolWindow +alwaysontop
Gui, color, black
Gui, Add, Text, x1 y1 h100 w100 Center GuiMove,
Gui, Show, h50 w50, block
settimer, function, 5000
Return

uiMove:
PostMessage, 0xA1, 2,,, A
Return

function:
WinWaitNotActive, [Conquer
WinActivate, [Conquer
return
03/10/2009 06:59 Dr.unreal#297
Well ok ill look for it but dont u know how to modify or where in co folder is the n umber couunter of sm ? I want to modify the color so it wont click it :) Anyway the wway sm could be detected that it wil check the right bottom for red color u know tghe basic counter changes to red when sm is on :)
03/10/2009 23:13 carmaster01#298
Quote:
Originally Posted by Dr.unreal View Post
Well ok ill look for it but dont u know how to modify or where in co folder is the n umber couunter of sm ? I want to modify the color so it wont click it :) Anyway the wway sm could be detected that it wil check the right bottom for red color u know tghe basic counter changes to red when sm is on :)

what you could do is turn off counter

maybe theres an effect you can mod to turn off superman's xp effect

also, to exclude the cursor from clicking the middle of the screen, you probably can make like 4 cordinates in the center, everytime the mouse clicks in that area, you can probably tell the program to click again
03/11/2009 01:38 hax0rzz#299
this request is not co related but would be cool if it is possible. Here goes... The program needs to be able close the videolan player then turn off the monitor at a certain time or put it to sleep at a certain time.

ex. watching tv on your pc to fall asleep to... at 2:00am so at that time ahk takes out vlc and puts the monitor to sleep or turns off.

so far with my own attempts i can't seem to get to the monitor part... shutting down vlc isn't a problem its the shutdown/sleep monitor stuff that is the problem. people on the vlc forums have been looking for a utility for this for a good long while hopefully somethin will work out. Thanx

i'm running xp pro desktop res 1440x900
03/11/2009 04:33 Evan Lim#300
hax0rzz@
change the "Title of the Player Program" to whatever ur player title name is called.
Code:
#Persistent
settimer, check, 60000
check:
; function will only works within 2-5am
if (A_Hour >= 2) and (A_hour <= 5)
{
; if no interaction with computer for more than 10 mins
if A_TimeIdlePhysical > 600000
{
MsgBox, 0, This MsgBox will time out in 10 seconds, Press OK to prevent screen turning off., 10
 IfMsgBox OK
    return
IfWinActive, Title of the Player Program
WinClose, Title of the Player Program

SendMessage, 0x112, 0xF170, 2,, Program Manager 
settimer, check, off
settimer, check2, 120000
}
}
return

check2:
if A_TimeIdlePhysical < 60000
{
settimer, check, 60000
settimer, check2, off
}
return