Tbl_GuildList

God33344

Dedicated Member
Dedicated Member
Mar 1, 2005
72
1
34
lo , ive over looked this problem for a while now but it needs fixing , whenever i make a guild on my server i get an error on my M2 saying that it cannot create it? (even tho it does ingame) i can also add people to the guild but have similar error on M2 saying error adding character.... it looks as though im in need of a new Tbl_Guildlist...

If any1 has theirs working fine could they tell me what fields they have in their Tbl and what data type its using (e.g bigint or int ect)

thanks alot in advance :)
 

Elise

Dedicated Member
Dedicated Member
Jun 1, 2008
132
4
45
North East
If useing TD files you need add TBL_GuildMemberList in SQL


- TBL_GuildMemberList, contains:
Code:
               Fld_GuildName: varchar, length 20, allow null : false
		Fld_GuildRank:   int	      , length 4	, allow null: false
		Fld_CharName: varchar , length20,  allow null: false
		Fld_Level	  :  int	      , length 4  , allow null: false
		Fld_RankName: varchar, length 50, allow null: false

This will save the characters to the guild.


- TBL_GuildList (contains only one field: Fld_GuildName, data type: varchar, length: 20, allow nulls:false) This will add and save the guild.
 
Upvote 0