have you sourced in the minilogin variable in mysql
Code:
INSERT INTO variables (varname, value, information) VALUES ('LoginType', 'Minilogin', 'Set this to Minilogin to login using a minilogin server :)');
alter table account add minilogin_ip varchar(32) not null;
and this to create the account
Code:
insert into account (name,status, minilogin_ip) values('account_name_here',250,'127.0.0.1');