-
Apprentice
2 more to go and ONLINE
two last problems, my ITEM_MALL and RANKING
HELP! its been a week of hard ass configuration of item mall and sqldaemon
-
-
Apprentice
Re: 2 more to go and ONLINE
what happen you item maill no work? and what happen with your ranking?
-
Proficient Member
Re: 2 more to go and ONLINE
IF YOUR SYSTEM WINDOWS IS 64 BITS OR 86 CREATE ODBC FOR THIS DIRECTION
C:\Windows\SysWOW64\odbcad32.exe
SQL RANKING PASTE THIS QUERY IN YOUR BD Tantra click Right New Query and paste this query
USE [Tantra]
GO
/****** Object: Table [dbo].[TantraBackup00] Script Date: 10/11/2012 11:57:22 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[TantraBackup00](
[idx] [int] IDENTITY(1,1) NOT NULL,
[UserID] [varchar](40) NOT NULL,
[CharacterName] [varchar](40) NOT NULL,
[CharacterLevel] [smallint] NOT NULL,
[BrahmanPoint] [int] NOT NULL,
[MBrahmanPoint] [int] NOT NULL,
[Tribe] [smallint] NOT NULL,
[Trimurity] [smallint] NOT NULL,
[GuildName] [varchar](20) NULL,
[GuildID] [int] NULL,
[GuildRank] [smallint] NOT NULL,
[curtime] [datetime] NOT NULL,
[Name1] [varchar](40) NULL,
[Name2] [varchar](40) NULL,
[Name3] [varchar](40) NULL,
[Level1] [smallint] NOT NULL,
[Level2] [smallint] NOT NULL,
[Level3] [smallint] NOT NULL,
[TotalMoney] [float] NOT NULL,
[Blocked] [tinyint] NOT NULL,
[Account] [binary](7124) NULL
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO