Tailor Made Tools/Programs for You - AHK

03/11/2009 07:10 ipod08#301
can u make me a auto follow? so my noobs can just follow me around?
03/11/2009 07:41 Evan Lim#302
ipod08@
followMe still works, just that it will send u to click jail
as far as i know, there is no work around for background control left clicks
03/11/2009 15:25 hax0rzz#303
had to do a little tweaking but works great! thanx man!
03/11/2009 17:30 tange16#304
is there a way to make:
auto-login;
option to change speed of login


alls i need this for is to click on a program and it will enter my password and/or account name pretty fast, i dont need specific servers just for the CO client.
03/12/2009 00:10 Evan Lim#305
tange16@
change the click x,y coorindate to where ever u want to click on the program, then u are all set. Press Ctrl+space to activate the hotkey.
Code:
account = evan
password = 123
^space::
WinActivate , [Conquer
click, 100, 100 ;<------------ change this to click at the account box coordinate
send, %account%
click, 200, 200 ;<------------ change this to click at the password box coordinate
send, %password%{enter}
return
03/12/2009 00:31 carmaster01#306
is it possible to make some kinda hack that does not show other characters animate the jump but you see the character at the end of his jump?

very useful in pvp
03/12/2009 00:54 tange16#307
Quote:
Originally Posted by Evan Lim View Post
tange16@
change the click x,y coorindate to where ever u want to click on the program, then u are all set. Press Ctrl+space to activate the hotkey.
Code:
account = evan
password = 123
^space::
WinActivate , [Conquer
click, 100, 100 ;<------------ change this to click at the account box coordinate
send, %account%
click, 200, 200 ;<------------ change this to click at the password box coordinate
send, %password%{enter}
return
ty for this but it didnt work for me
i copied and pasted into AutoScriptWriter II removed your name and pass and put with my own(but for the sake of this i put them back in). here is what i did,
1) put this into AutoScriptWriter II
Code:
account = evan
password = 123
^space::
WinActivate , [Conquer
click, 537,  659 ;
send, %account%
click, 537,  683 ;
send, %password%{enter}
return
2) clicked Save and saved it desktop
3) opened the program that converts the .ahk files to .exe and converted the .ahk file into .exe
4) ran the .exe and nothing happend.

what am i doing wrong?? or is code missing or what??

EDIT: i tried just copy and paste into AutoScriptWriter II and pressing ctrl + space but it just clicks on the account box and then password box and doesnt type anything.
03/12/2009 02:26 Evan Lim#308
carmaster01@
probably its possible if one can change the gravity of the jump
but of course, i dont know how

tange16@
try replacing all the "send" to "sendplay", it should work
03/12/2009 05:14 Billybob1233#309
Hey there Evan Lim

I was wondering if you could make an updated version of evanxxxm's version of the "Market Camper" ([Only registered and activated users can see links. Click Here To Register...]) To change it from a Background bot to a NON background bot so that it doesnt send you to auto click jail.

Thanks much appreciated =D
03/12/2009 06:29 Evan Lim#310
Billybob1233@
press esc to pause the program
Code:
WinGet,id, ID,[C
WinActivate, ahk_id %id%
WinGetActiveStats, [C, Width, Height, Xpos, Ypos

if width > 900
{
Xpos+=561
Ypos+=325
xx=566
yy=385
}
else
{
Xpos+=459
Ypos+=293
xx=463
yy=325
}

Gui, Color, red
Gui +LastFound +AlwaysOnTop -Caption
Gui, Show, x%Xpos% y%Ypos% w10 h100
sleep 1000
MsgBox, 262144, Market, After shifting and moving below the flag`nPress OK to continue.
Gui, destroy


loop 
{
click %xx%, %yy%
sleep 2000
}

esc::pause
03/12/2009 06:57 Billybob1233#311
Quote:
Originally Posted by Evan Lim View Post
Billybob1233@
press esc to pause the program
Code:
WinGet,id, ID,[C
WinActivate, ahk_id %id%
WinGetActiveStats, [C, Width, Height, Xpos, Ypos

if width > 900
{
Xpos+=561
Ypos+=325
xx=566
yy=385
}
else
{
Xpos+=459
Ypos+=293
xx=463
yy=325
}

Gui, Color, red
Gui +LastFound +AlwaysOnTop -Caption
Gui, Show, x%Xpos% y%Ypos% w10 h100
sleep 1000
MsgBox, 262144, Market, After shifting and moving below the flag`nPress OK to continue.
Gui, destroy


loop 
{
click %xx%, %yy%
sleep 2000
}

esc::pause

Thanks, works like a charm =D :D
03/12/2009 13:04 tange16#312
Quote:
Originally Posted by Evan Lim View Post
carmaster01@
probably its possible if one can change the gravity of the jump
but of course, i dont know how

tange16@
try replacing all the "send" to "sendplay", it should work
thnx so much it worked

EDIT: ouch i see the letters and * for password but it says wrong password when i press enter( i have to press enter myself :( )

maybe if the letters where actually typed instead of send all at once??
03/12/2009 15:26 Evan Lim#313
tange16@
quite sure its not related, but u can try adding the press delay 1 at a time:
Code:
SetKeyDelay, 50, 100, Play
03/12/2009 16:31 tange16#314
Quote:
Originally Posted by Evan Lim View Post
tange16@
quite sure its not related, but u can try adding the press delay 1 at a time:
Code:
SetKeyDelay, 50, 100, Play
this worked for the 1 character typing, but its still saying wrong password for some reason.

EDIT: why dont you make the tweak the code and test before putting here. thnx again.
03/12/2009 17:10 Evan Lim#315
tange16@
cant test, because i dont have CO for almost half year already
so probably its not ahk problem, but CO login flash blocks sending keys