PDA

View Full Version : How to turn off minilogin


shanxi
11-19-2004, 06:34 PM
I wrote a semi-guide based on my experiences over the past few days, figured it might help people out, so they wont have to re-trudge the stuff I did. Anyway heres my post:
http://www.eqemulator.net/forums/viewtopic.php?t=18559

My question is in regards to:

INSERT INTO variables (varname, value, information) VALUES ('LoginType', 'Minilogin', 'Set this to Minilogin to login using a minilogin server ');

Supposing I dont want to enable minilogin.. what would I change the value "Minilogin" to?

I dont want to be directing people down the wrong path, now.

Cisyouc
11-20-2004, 10:41 AM
alter variables set value='login' where varname like 'logintype';

Derision
11-20-2004, 10:57 AM
alter variables set value='login' where varname like 'logintype';

update variables set value='not minilogin' where varname like 'LoginType';

shanxi
11-20-2004, 01:34 PM
Thanks, thats just what I needed =)

Cisyouc
11-20-2004, 05:19 PM
alter variables set value='login' where varname like 'logintype';

update variables set value='not minilogin' where varname like 'LoginType';Oops.