hegvape
Well-Known Member
Hi all
Does anyone know if there's a way to check if the isxGamesPatcher is running?
Reason I am asking is that the autologin script doesnt run as long as isxeq2 is patching. Atm I am using
but it doesnt work until the patcher has finished.
I have solved it with lavish commands
but would be nice to have both isxeq2 and lavish in one script.
Any help is appriciated.
Kindly
Val
Does anyone know if there's a way to check if the isxGamesPatcher is running?
Reason I am asking is that the autologin script doesnt run as long as isxeq2 is patching. Atm I am using
Code:
if ${Extension[isxeq2](exists)}
{
echo "ISXEQ2 is loaded..."
EQ2UIPage[LoginScene,LSUsernamePassword].Child[Textbox,LSUsernamePassword.WindowPage.Password]:AddToTextBox[${StationPwd}]
waitframe
EQ2UIPage[LoginScene,LSUsernamePassword].Child[Button,LSUsernamePassword.WindowPage.ConnectButton]:LeftClick
}
I have solved it with lavish commands
Code:
do
{
if ${StationPwd.GetAt[${PwdChar}]} >=65 && ${StationPwd.GetAt[${PwdChar}]} <=90
{
Keyboard:Type[${StationPwd.Mid[${PwdChar},1]}]
}
else
{
Keyboard:Type[${StationPwd.Mid[${PwdChar},1]}]
}
waitframe
}
while ${StationPwd.Length} >= ${PwdChar:Inc}
Any help is appriciated.
Kindly
Val