Log in

View Full Version : MySQL help


shadowdeamon01
12-17-2006, 04:25 AM
Hi, im so close to getting my server running, but i cant figure this out. According to the guide on http://www.eqemulator.net/wiki/wikka.php?wakka=ws70845mysql5 i need to input

INSERT INTO accounts VALUES (1, 'Admin', '', 0, 'mini', 250, , 0, 0, 0, 0, 'IP of Account')

and Modify this with the IP of the computer that will be connecting to the server. Admin is the username. Lets say 12.345.67.890 is my IP adress, what would i input in that code?

Cripp
12-17-2006, 04:50 AM
INSERT INTO accounts VALUES (1, 'Admin', '', 0, 'mini', 255, , 0, 0, 0, 0, '12.345.67.890');

actually i wouldnt use that one.. 1 sec gona edit with better one..

try this one..
INSERT INTO accounts (name, status, minilogin_ip) VALUES ('Admin', 255, '12.345.67.890');