Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Windows Servers

Support::Windows Servers Support forum for Windows EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 09-13-2009, 04:50 AM
eqemuross
Hill Giant
 
Join Date: Sep 2008
Location: South Florida
Posts: 100
Default cant create guilds

I am having this same exact issue:

"We are unable to get guilds working properly. When I try to #guildcreate it does not put the character in the guild, but does create it. I have to actually go into the database to put the character into the guild, it does not work via commands.

Also when a person is in the guild, as the leader, when they try to invite someone else it gives them the error that the database may be inconsistent...

Does anyone know how to fix this problem? I have even updated to a newer database and I am still having this issue. We are currently using Rev946."


http://www.projecteq.net/phpBB2/view...431&highlight=

I've had it with 946 and 973. I have all the right tables in my database... the guild gets created in the 'guilds' table but it wont put the members in the guild under 'guild_members'.

Any help would greatly be appreciated!

-ross
Reply With Quote
  #2  
Old 09-13-2009, 06:33 PM
eqemuross
Hill Giant
 
Join Date: Sep 2008
Location: South Florida
Posts: 100
Default

The other person who has this issue (Grim from the Order of Sin server) also has a PvP server... could this be the problem? My server has PvP enabled as well.
Reply With Quote
  #3  
Old 09-13-2009, 07:33 PM
leslamarch
Discordant
 
Join Date: Sep 2006
Location: Green Bay, WI
Posts: 436
Default

This is just a wild guess and I have never played with a PVP server but add these tables to your DB if you dont have them...

Code:
DROP TABLE IF EXISTS `guild_alliances`;

CREATE TABLE `guild_alliances` (
  `id` int(11) NOT NULL auto_increment,
  `guildone` int(11) NOT NULL default '0',
  `guildtwo` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;


DROP TABLE IF EXISTS `guild_controllers`;

CREATE TABLE `guild_controllers` (
  `id` int(11) NOT NULL auto_increment,
  `npc_id` int(11) NOT NULL default '0',
  `owned_guild_id` int(11) NOT NULL default '0',
  `zoneid` int(11) NOT NULL default '0',
  `terrainarea` varchar(64) character set utf8 NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `npc_id` (`npc_id`),
  UNIQUE KEY `zoneid` (`zoneid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;
Reply With Quote
  #4  
Old 09-13-2009, 07:49 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

You can make guilds by doing the following command:

#guild create <leadername> <guildname>

Without the < and > of course and also no quotes needed or anything like that for guildnames.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
  #5  
Old 09-13-2009, 08:36 PM
jimm0thy
Sarnak
 
Join Date: Jul 2002
Posts: 71
Default

I get the same errors running a pve server.
Reply With Quote
  #6  
Old 09-13-2009, 10:09 PM
eqemuross
Hill Giant
 
Join Date: Sep 2008
Location: South Florida
Posts: 100
Default

Quote:
Originally Posted by trevius View Post
You can make guilds by doing the following command:

#guild create <leadername> <guildname>

Without the < and > of course and also no quotes needed or anything like that for guildnames.

Like I said, I've used all of these commands... the guild gets created in the database, but the leader/members don't get added. If I manually add a guild leader and he tries to invite someone, there is an error as well.
Reply With Quote
  #7  
Old 09-14-2009, 04:09 AM
eqemuross
Hill Giant
 
Join Date: Sep 2008
Location: South Florida
Posts: 100
Default

Quote:
Originally Posted by leslamarch View Post
This is just a wild guess and I have never played with a PVP server but add these tables to your DB if you dont have them...

Code:
DROP TABLE IF EXISTS `guild_alliances`;

CREATE TABLE `guild_alliances` (
  `id` int(11) NOT NULL auto_increment,
  `guildone` int(11) NOT NULL default '0',
  `guildtwo` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;


DROP TABLE IF EXISTS `guild_controllers`;

CREATE TABLE `guild_controllers` (
  `id` int(11) NOT NULL auto_increment,
  `npc_id` int(11) NOT NULL default '0',
  `owned_guild_id` int(11) NOT NULL default '0',
  `zoneid` int(11) NOT NULL default '0',
  `terrainarea` varchar(64) character set utf8 NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `npc_id` (`npc_id`),
  UNIQUE KEY `zoneid` (`zoneid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;
added this table.... same errors.

anyone have any ideas? looks like a few of us have these issues.. it's really hurting my server w/ out having guilds implemented :(
Reply With Quote
  #8  
Old 09-14-2009, 08:18 AM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

Quote:
Originally Posted by eqemuross View Post
We are unable to get guilds working properly. When I try to #guildcreate it does not put the character in the guild, but does create it.
Technically, you said that you tried using the #guildcreate command, which is not the same as using #guild with the "create" option like I showed above.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
  #9  
Old 09-14-2009, 02:13 PM
eqemuross
Hill Giant
 
Join Date: Sep 2008
Location: South Florida
Posts: 100
Default

Quote:
Originally Posted by trevius View Post
Technically, you said that you tried using the #guildcreate command, which is not the same as using #guild with the "create" option like I showed above.
Unable to set the guild leader's guild in the database. Your going to have to run #guild set.


I run #guild set charname guildid and:

Error putting 'X' into guild 1
Reply With Quote
  #10  
Old 09-14-2009, 07:26 PM
Capheus
Hill Giant
 
Join Date: Apr 2008
Location: Milwaukee
Posts: 141
Default

I am running 946 also and having the exact same problems, This is not an operator #guild create error. What worked for me before (535 I think) doesn't work now.
Reply With Quote
  #11  
Old 09-14-2009, 08:18 PM
eqemuross
Hill Giant
 
Join Date: Sep 2008
Location: South Florida
Posts: 100
Default

Is everyone thats having this issue hosting their server on Windows 64bit? It's the only thing another person and I with this problem have in common.
Reply With Quote
  #12  
Old 09-14-2009, 08:18 PM
eqemuross
Hill Giant
 
Join Date: Sep 2008
Location: South Florida
Posts: 100
Default

Quote:
Originally Posted by Capheus View Post
I am running 946 also and having the exact same problems, This is not an operator #guild create error. What worked for me before (535 I think) doesn't work now.
I had the problem with 946 and 973... only two sources/dbs I've touched.
Reply With Quote
  #13  
Old 09-14-2009, 09:07 PM
Tharkun
Hill Giant
 
Join Date: Aug 2009
Posts: 125
Default

i had an issue with this using #guildcreate, i dont know if that command should no longer be used or what... but i ended up deleting that entry and using #guild create <leadername> <guildname>, and everything was fine after that.
Reply With Quote
  #14  
Old 09-14-2009, 11:33 PM
jimm0thy
Sarnak
 
Join Date: Jul 2002
Posts: 71
Default

Quote:
Originally Posted by eqemuross View Post
Is everyone thats having this issue hosting their server on Windows 64bit? It's the only thing another person and I with this problem have in common.
I am, Vista 64bit
Reply With Quote
  #15  
Old 09-15-2009, 12:32 AM
eqemuross
Hill Giant
 
Join Date: Sep 2008
Location: South Florida
Posts: 100
Default

Quote:
Originally Posted by jimm0thy View Post
I am, Vista 64bit
this has to be the issue.... its the only thing 3 of us have had in common
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:44 PM.


 

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 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3