If not, get AutoRegister.java and configure it, add the AutoRegister functions into net/login/handler/LoginPasswordHandler.java, compile, update jar, and test.
You can get AutoRegister.java and Login functions from sources like MapleBlade.
Step 1 - Making the AutoRegister.class file! In Netbeans, right-click on "client" > New > Java Class > name it "AutoRegister"
Step 2 - Replace all of the text with this:
Step 3 - In Netbeans, go to net.login.handler package. Find "LoginPasswordHandler"
Step 4 - In it, find package net.login.handler; below it you'll find imports. add:
PHP Code:
import client.AutoRegister;
Step 5 - Next, in LoginPasswordHandler find: final boolean isBanned = c.hasBannedIP() || c.hasBannedMac();
After it, add:
Compile, update jar, and test it out! -- as that should do it.
If it needs a SQL, I remember in v62 days you needed the lastknownip SQL. I already had it so i'm not sure. If you don't have lastknownip inside of the table 'accounts', or receive an error in your BAT about it, go to MySQL and click File > New Script Tab > and paste this in: ALTER TABLE `accounts` ADD COLUMN `lastknownip` TINYTEXT NULL;