Go Back   EQEmulator Home > EQEmulator Forums > General > General::General Discussion

General::General Discussion General discussion about EverQuest(tm), EQEMu, and related topics.
Do not post support topics here.

Reply
 
Thread Tools Display Modes
  #31  
Old 03-23-2009, 12:12 PM
devn00b's Avatar
devn00b
Demi-God
 
Join Date: Jan 2002
Posts: 15,658
Default

Quote:
Originally Posted by Sakrateri View Post
That was it Number6 Thanks alot, all working great now, Thank you Image and Devnoob for this, This is awesome!

Devnoob you can finally take yourself out of the I hate Devnoob club after all these years
I know right?! Amazing!
__________________
(Former)Senior EQEMu Developer
GuildWars Co-Founder / World Builder.
World Builder and Co-Founder Zek [PVP/Guild Wars/City Takeovers]
Member of the "I hate devn00b" Club
Most Senior EQEMu Member.

Current Work: EverQuest 2 Emulator. Zeklabs Server
Reply With Quote
  #32  
Old 03-23-2009, 01:50 PM
image
Demi-God
 
Join Date: Jan 2002
Posts: 1,290
Default

Losing numbers in the I hate devn00b club is unacceptable! I will help increase the numbers back to norm.
__________________
www.eq2emu.com
EQ2Emu Developer
Former EQEMu Developer / GuildWars / Zek Seasons Servers
Member of the "I hate devn00b" club.
Reply With Quote
  #33  
Old 03-23-2009, 01:53 PM
devn00b's Avatar
devn00b
Demi-God
 
Join Date: Jan 2002
Posts: 15,658
Default

For every one that leaves...5 more crop up!! Guess I'll always be hated.
__________________
(Former)Senior EQEMu Developer
GuildWars Co-Founder / World Builder.
World Builder and Co-Founder Zek [PVP/Guild Wars/City Takeovers]
Member of the "I hate devn00b" Club
Most Senior EQEMu Member.

Current Work: EverQuest 2 Emulator. Zeklabs Server
Reply With Quote
  #34  
Old 03-23-2009, 07:46 PM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

I got a problem here, sort of know what it is, but not sure what to do.
You all using MySql 5.1x? I have MySql 5.0x
here's my problem;
After the variables table is made, I get this error;
Code:
ERROR 1231 (42000): Variable 'character_set_client' can't be set to the value of 'NULL'
When attempting to run this line;
Code:
SET character_set_client = @saved_cs_client;
I'm thinking it's the version, or maybe it's because I have the old password method active?
Reply With Quote
  #35  
Old 03-23-2009, 07:52 PM
devn00b's Avatar
devn00b
Demi-God
 
Join Date: Jan 2002
Posts: 15,658
Default

yeah stupid sql i think you can just remove that line from the sql file and it should load normally
__________________
(Former)Senior EQEMu Developer
GuildWars Co-Founder / World Builder.
World Builder and Co-Founder Zek [PVP/Guild Wars/City Takeovers]
Member of the "I hate devn00b" Club
Most Senior EQEMu Member.

Current Work: EverQuest 2 Emulator. Zeklabs Server
Reply With Quote
  #36  
Old 03-23-2009, 08:01 PM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Thanks! I had an urge to do that but I wasn't sure, been researching that error for about an hour now (I found a lot of brick walls). I'll give it a run.
Reply With Quote
  #37  
Old 03-23-2009, 08:41 PM
image
Demi-God
 
Join Date: Jan 2002
Posts: 1,290
Default

Yea you can ignore those, thats new MySQL stuff, don't ask me what for. You just need the default tables anyway.
__________________
www.eq2emu.com
EQ2Emu Developer
Former EQEMu Developer / GuildWars / Zek Seasons Servers
Member of the "I hate devn00b" club.
Reply With Quote
  #38  
Old 03-26-2009, 02:15 AM
Aergad
Banned
 
Join Date: Mar 2009
Location: In a house
Posts: 150
Default

Just a side note you have to put the minilogin server into a seperate directory from your main eqemu server with all the files included in the zip file for it to work
Reply With Quote
  #39  
Old 03-26-2009, 04:08 PM
warhawk
Sarnak
 
Join Date: Mar 2008
Posts: 47
Default

I'm having trouble sourcing the SQL. This bit seems to cause a 1064 error:-

Code:
DROP TABLE IF EXISTS `variables`;
CREATE TABLE `variables` (
  `varname` varchar(25) NOT NULL default '',
  `value` text NOT NULL,
  `information` text NOT NULL,
  `ts` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  PRIMARY KEY  (`varname`)
) ENGINE=MyISAM DEFAULT;
Any Ideas?
Reply With Quote
  #40  
Old 03-26-2009, 04:26 PM
image
Demi-God
 
Join Date: Jan 2002
Posts: 1,290
Default

DROP TABLE IF EXISTS `variables`;
CREATE TABLE `variables` (
`varname` varchar(25) NOT NULL default '',
`value` text NOT NULL,
`information` text NOT NULL,
`ts` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
PRIMARY KEY (`varname`)
) ENGINE=MyISAM;

Remove " DEFAULT"
__________________
www.eq2emu.com
EQ2Emu Developer
Former EQEMu Developer / GuildWars / Zek Seasons Servers
Member of the "I hate devn00b" club.
Reply With Quote
  #41  
Old 03-26-2009, 04:43 PM
warhawk
Sarnak
 
Join Date: Mar 2008
Posts: 47
Default

Bah, simple when you know how

Thanks Image!
Reply With Quote
  #42  
Old 03-28-2009, 10:42 AM
warhawk
Sarnak
 
Join Date: Mar 2008
Posts: 47
Default

Hi again

I'm still struggling to get this working.

I'm getting the following error on the minilogin shell.
Code:
Error in CheckWorldVerAuth query `SELECT approval From login_versions Where version=`0.7.0`;`
#1146: Table `peq.login_versions` does not exist
Bad Version <soft>: #1 192.168.11.53:4972
World.exe shows

Code:
[WORLD__LS] Connecting to login server...
[WORLD__LS] Setting World to MiniLogin Server type
[WORLD__LS] Connected to Loginserver: 192.168.11.53:5999
[WORLD__LS_ERR] Login server responded with FatalError. Disabling reconnect.
[WORLD__LS_ERR]      Incorrect version
I`ve ran in the loginserver.sql and configured the db.ini. Also ensuring that the its set to minilogin in the variables DB.

Any help would be great.

Thanks

War
Reply With Quote
  #43  
Old 03-28-2009, 10:59 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Quote:
[WORLD__LS] Setting World to MiniLogin Server type

You gotta set it to Public, not MiniLogin (it's in Variables)
Reply With Quote
  #44  
Old 03-28-2009, 11:10 AM
image
Demi-God
 
Join Date: Jan 2002
Posts: 1,290
Default

The MiniLogin type will work I think, it just seems to have more checks like the world version and such
__________________
www.eq2emu.com
EQ2Emu Developer
Former EQEMu Developer / GuildWars / Zek Seasons Servers
Member of the "I hate devn00b" club.
Reply With Quote
  #45  
Old 03-28-2009, 11:21 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Quote:
Originally Posted by image View Post
I can set the values to whatever I want for how many users/worlds can be used, this was just a number that was suggested to me.

World accounts can only connect as one otherwise they get ghosted, it will limit to 3.

Secrets says this works for Titanium and SoF.
Anyway I'm still unsure about this, but what I'm looking for in this new mini-login, is unlimited user/player accounts. the reason for this is I already have hundreds of users for the AX_CLASSIC Server Repack (probably still have people that use my older MiniLogin package too), and they already have their characters and accounts made (the REPACK updates characters to newer versions of DB). My test server, which I don't promote and use at home, has 126 accounts - I need to protect those too, as I see people playing there.

I would even be willing to trade this feature off with only one game server able to connect LS. I would still greatly benefit because it has a true account system that doesn't require the old ip system

Three game servers hooked up to the LS would be nice, I could bring back my old ax_peq , and even some other old DB i was thinking of resurrecting.

Unlimited would be even nicer , all us "Minilogin" people could hook up with each other if we wanted.

But it's not needed - a true account system that doesn't require the old ip system is what I need, I think this wouldn't burst anybody's bubble.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 07:42 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3