View Single Post
  #7  
Old 05-29-2010, 06:44 PM
Akyra
Fire Beetle
 
Join Date: Apr 2010
Posts: 18
Default

In the World.exe screenshot you linked, it's showing that there is no minilogin account set. You will need to add an account, here is some SQL to add an account, don't forget to update the fields:

Quote:
insert into account (id, name, status, minilogin_ip) values(2, 'accountname', 250, '192.168.1.x');
Ensure to replace ID with the next ID available in the table, and choose a decent account name, also change the 192.168.1.x to your client's IP address - this is very important. This script above will add a GM status account. Note that when using Minilogin, you won't need to enter a password to login.

May be a wise idea to restart all server console windows once you've added this account just to make sure it loads everything fresh.

Akyra
Reply With Quote