i have some tables if you need :) i dont know if that tables need for this MuOnline DB or not :)
T_MineSystem
Code:
USE [MuOnline]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[T_MineSystem](
[CharacterName] [varchar](10) NOT NULL,
[TwinkleType] [int] NOT NULL,
[CurrentStage] [int] NOT NULL,
CONSTRAINT [PK_T_MineSystem] PRIMARY KEY CLUSTERED
(
[CharacterName] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
T_PentagramInfo
Code:
USE [MuOnline]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[T_PentagramInfo](
[UserGuid] [int] NOT NULL,
[AccountID] [varchar](10) NOT NULL,
[Name] [varchar](10) NULL,
[JewelPos] [tinyint] NOT NULL,
[JewelIndex] [smallint] NOT NULL,
[ItemType] [smallint] NOT NULL,
[ItemIndex] [int] NOT NULL,
[MainAttribute] [smallint] NOT NULL,
[JewelLevel] [smallint] NOT NULL,
[Rank1] [tinyint] NOT NULL,
[Rank1Level] [tinyint] NULL,
[Rank2] [tinyint] NOT NULL,
[Rank2Level] [tinyint] NULL,
[Rank3] [tinyint] NOT NULL,
[Rank3Level] [tinyint] NULL,
[Rank4] [tinyint] NOT NULL,
[Rank4Level] [tinyint] NULL,
[Rank5] [tinyint] NOT NULL,
[Rank5Level] [tinyint] NULL,
[RegDate] [datetime] NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_JewelIndex] DEFAULT ((255)) FOR [JewelIndex]
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_ItemType] DEFAULT ((255)) FOR [ItemType]
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_ItemIndex] DEFAULT ((511)) FOR [ItemIndex]
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_MainAttribute] DEFAULT ((255)) FOR [MainAttribute]
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_Rank1] DEFAULT ((255)) FOR [Rank1]
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_Rank2] DEFAULT ((255)) FOR [Rank2]
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_Rank3] DEFAULT ((255)) FOR [Rank3]
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_Rank4] DEFAULT ((255)) FOR [Rank4]
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_Rank5] DEFAULT ((255)) FOR [Rank5]
GO
ALTER TABLE [dbo].[T_PentagramInfo] ADD CONSTRAINT [DF_T_PentagramInfo_RegDate] DEFAULT (getdate()) FOR [RegDate]
GO
i have some araca battles tables + stored procedures if you need PM ME :)