Multiple accounts from one ip.
Alright, so you want people to be able to log into multiple accounts from a web page. Here's one way to do it. There's would be a much easier way to do it if minilogin would hand the encrypted password to the world server. I'm guessing the opcode for the password is off, or minilogin just doesn't bother to send it through. Anyways... This method works by requiring the end user to log into a web page before they log into the emu server, if they have multiple accounts.
Well the first thing you want to do is log into mysql and alter the accounts table.
alter table account add column zlock tinyint(1);
|