i know im not so specific but can u make abot witch u can chat while using it
i think its like the idea of pathfinding or so
i think its like the idea of pathfinding or so
msgbox, activiate the chatting box and press Ctrl+H to hook onto it`nTurn on/off this feature by pressing Ctrl+O
^h::
WinGet, ID, ID, A
Hotkey,q,function
Hotkey,w,function
Hotkey,e,function
Hotkey,r,function
Hotkey,t,function
Hotkey,y,function
Hotkey,u,function
Hotkey,i,function
Hotkey,o,function
Hotkey,p,function
Hotkey,a,function
Hotkey,s,function
Hotkey,d,function
Hotkey,f,function
Hotkey,g,function
Hotkey,h,function
Hotkey,j,function
Hotkey,k,function
Hotkey,l,function
Hotkey,z,function
Hotkey,x,function
Hotkey,c,function
Hotkey,v,function
Hotkey,b,function
Hotkey,n,function
Hotkey,m,function
Hotkey,1,function
Hotkey,2,function
Hotkey,3,function
Hotkey,4,function
Hotkey,5,function
Hotkey,6,function
Hotkey,7,function
Hotkey,8,function
Hotkey,9,function
Hotkey,0,function
Hotkey,space,function
Hotkey,enter,function
Hotkey,?,function
Hotkey,bs,function
Suspend
Pause,,1
return
^o::
Suspend
Pause,,1
return
function:
ControlSend, Trillian Window2, {%A_ThisHotkey%}, ahk_id %id%
return
the first part i ment chatting in clientQuote:
mk1992@
ok i get the first part, u say u want a bot which u can chat, but chat where? in client? in MSN/AIM/etc?
then the second part confuse me, what has chat has to "alike" with the idea of pathfinding?
outside client to chat works with trillian
if u are using trillian, u can use this:
Code:msgbox, activiate the chatting box and press Ctrl+H to hook onto it`nTurn on/off this feature by pressing Ctrl+O ^h:: WinGet, ID, ID, A Hotkey,q,function Hotkey,w,function Hotkey,e,function Hotkey,r,function Hotkey,t,function Hotkey,y,function Hotkey,u,function Hotkey,i,function Hotkey,o,function Hotkey,p,function Hotkey,a,function Hotkey,s,function Hotkey,d,function Hotkey,f,function Hotkey,g,function Hotkey,h,function Hotkey,j,function Hotkey,k,function Hotkey,l,function Hotkey,z,function Hotkey,x,function Hotkey,c,function Hotkey,v,function Hotkey,b,function Hotkey,n,function Hotkey,m,function Hotkey,1,function Hotkey,2,function Hotkey,3,function Hotkey,4,function Hotkey,5,function Hotkey,6,function Hotkey,7,function Hotkey,8,function Hotkey,9,function Hotkey,0,function Hotkey,space,function Hotkey,enter,function Hotkey,?,function Hotkey,bs,function Suspend Pause,,1 return ^o:: Suspend Pause,,1 return function: ControlSend, Trillian Window2, {%A_ThisHotkey%}, ahk_id %id% return
msgbox, Turn on/off this feature by pressing Ctrl+O
#IfWinActive, [Con
q::
w::
e::
r::
t::
y::
u::
i::
o::
p::
a::
s::
d::
f::
g::
h::
j::
k::
l::
z::
x::
c::
v::
b::
n::
m::
1::
2::
3::
4::
5::
6::
7::
8::
9::
0::
numpad1::
numpad2::
numpad3::
numpad4::
numpad5::
numpad6::
numpad7::
numpad8::
numpad9::
numpad0::
?::
list = %list%%space%%A_ThisHotkey%
tooltip, %list%,1,1
space=
return
space::
space:=" "
return
~enter::
oldclipboard = %clipboard%
clipboard = %list%
send, {enter}^v{enter}
clipboard = %oldclipboard%
list=
tooltip,
return
bs::
StringTrimRight, list, list, 1
tooltip, %list%,1,1
return
^o::
Suspend
Pause,,1
return
Tried compatibility mode and it still doesn't work - my guess is that it is a 64bit issue.Quote:
pokey2@
ur other "SH leveler", just set the compatibility mode to vista or lower, should be fine
or u can provide the coordinates where to click, i will write out the script for u
example:
1. press F1
2. press F2..etc
loop
{
send {F1}
click, 123,456, right[color=green] ; change the 123, 456 to whatever the x,y coordinate the first item slot is[/color]
sleep 1000
click, 123,456, right [color=green] ; same here [/color]
sleep 6000
send {F8}
[color=green];what is rinse?[/color]
}
^q::pause[color=green] ;Ctrl+Q to pause[/color]
That's superb, thank you. You wouldn't happen to know of a good tool for finding out co-ordinates would you?Quote:
pokey2@
Code:loop { send {F1} click, 123,456, right[color=green] ; change the 123, 456 to whatever the x,y coordinate the first item slot is[/color] sleep 1000 click, 123,456, right [color=green] ; same here [/color] sleep 6000 send {F8} [color=green];what is rinse?[/color] } ^q::pause[color=green] ;Ctrl+Q to pause[/color]
loop
{
mousegetpos, x, y
tooltip, x%x% y%y%
sleep 300
}