isxGamesPatcher

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
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
	}
but it doesnt work until the patcher has finished.

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}
but would be nice to have both isxeq2 and lavish in one script.

Any help is appriciated.

Kindly

Val
 

Amadeus

The Maestro
Staff member
The answer is in the patch notes from April 12:

Code:
April 12, 2007 -- By Amadeus
[ISXEQ2-20070328.0073]
* Added a new MEMBER to the ISXEQ2 datatype:
  1. IsReady                 (bool type)
    ~ This member returns TRUE once the authentication and patching routines have finished and ISXEQ2 is *TRULY* loaded and ready to go.
      Your scripts should always check to make sure that this is TRUE before continuing.
Just have all of your scripts "hold" until ${ISXEQ2.IsReady} is TRUE.
 

hegvape

Well-Known Member
Thanks much Ama, I've been away for a while and must have missed that one. I kinda figured You already had it all worked out :)

I guess I'm gonna post a new script asap (I just posted one 2 mins ago)

Kindly

Val
 

Kalt

Active Member
ok, I'm sure this is a total nOOb question, and I just hope I dun get flamed for asking it.

I just finished the configuration on InnerSpace as shown on step 3 and 4 of the acquisition process. I subscribed before the force patch of EQ2. (Think it was last Sunday (April, 22nd). Now each time I start the game from InnerSpace, I dun get the Authentication window and ISXEQ2 refuses to load.

I double-checked what I entered in the profile in innerspace, and everything seems right, yet each time I try load isxeq2, from innerspace or the console itself, I get the error message that my EQ2.exe does not match the ISXEQ2 version, and invites me to get the autoupdate from the last force patch. (the one from
arch, 28th) Tried on my laptop, and same thing happens

Anything I'm doing wrong here, or is this happening because I subscribed too quickly and used the ISXVG to subscribe?

Thx a lot

Kalt
 
Last edited:

Amadeus

The Maestro
Staff member
First, the last forced patch was on April 25, not April 22.

Secondly, yes, you should not have used the ISXVG subscription process ..why would you think that was ok? ISXEQ2 and ISXVG are completely different things.

So, what you need to do is go to paypal and cancel your ISXVG subscription (unless you want to use ISXVG, that is), then follow the instructions carefully that were posted on April 25: http://www.isxgames.com/forums/showthread.php?t=1040 ..if you follow the instructions under "For those already using ISXEQ2", then you'll be fine.
 

Kalt

Active Member
ok, did so, switched the subscription. Now is there a delay before we can authentify or is it suppose to work right away?

Tried it right after; since authentificator wasn't loading, followed the procedure to edit the isxeq2.xml with the subscription info, then tried loading the extension manually from console, like said on step 3. still get the same error message.
 
Top Bottom