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:
to:
Launcher.iss:
Code:
function main(string unchar="")
{
if !${ISXEVE(exists)}
{
;echo DEBUG: ISXEVE not loaded, loading it now
call LoginHandler.LoadExtension
wait 200
}
Code:
function main(string unchar="")
{
wait 500
if !${ISXEVE(exists)}
{
;echo DEBUG: ISXEVE not loaded, loading it now
call LoginHandler.LoadExtension
wait 200
}