Joined: 10 Feb 2006 Posts: 293 Location: Myrtle Beach, South Carolina
Posted: Fri Jan 04, 2008 2:37 am Post subject: POL097-2007-08-23 RC5 Coregina - CheckPassword problem?
I got this inside of my auto account packet hook script and it always fails. I tested inside a command and it worked. Maybe it being ran in a critical script is causing it to always fail? Might test that later, I'll report back if I ever do.
Code:
var account := FindAccount(username);
if ( account )
if ( !(account.CheckPassword(password)) )
UUOAALog(username, password, mobile.ip, "FailedPassword");
endif
return 0;
endif
Author
Message
CWO
Joined: 04 Feb 2006 Posts: 685 Location: Chicago, IL USA
Posted: Sat Jan 05, 2008 9:27 pm Post subject:
I know it becomes a bit decentralized this way and you're reporting a possible bug but as a workaround for now, can't you just hook the failure packet to log invalid passwords?