"Waiting for cache to initialize - != NULL" error

Override13

Active Member
After the 1.5 patch some people may get a "Waiting for cache to initialize - != NULL" error when you use the auto login feature of EVEBot. You just need to add a small wait time in the main function of launcher.iss. Below is an example:

Launcher.iss:
Code:
function main(string unchar="")
{
	if !${ISXEVE(exists)}
	{
		;echo DEBUG: ISXEVE not loaded, loading it now
		call LoginHandler.LoadExtension
		wait 200
	}
to:

Code:
function main(string unchar="")
{
        wait 500
	if !${ISXEVE(exists)}
	{
		;echo DEBUG: ISXEVE not loaded, loading it now
		call LoginHandler.LoadExtension
		wait 200
	}
 

retcyn

Member
Beating my head !

Yeah so I had this problem, and after many reinstalls and playing with files, it was simply because I had not logged into the game under my toon. Once in station worked fine. The waiting null error went away.
 
Top Bottom