Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[help] Mssql

Newbie Spellweaver
Joined
Jan 8, 2007
Messages
93
Reaction score
0
Er, This didnt post right, firefox spazed out...

Im working on adding onto the db so that I can use Locator.exe (needs more tables, etc, to run)

I have found out the tables it needs to use...

Opened
CurrPlayer
Time
IP
Port

(Do note: Im still trying to learn mssql)

Anyways, I don't know if this would be right or not, I just wrote it up....

If you have any info on this please, bring it forth lol...

Code:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
BEGIN
CREATE TABLE [dbo].[GetServerStatus](
    [Opened] [bol] NULL,
    [CurrPlayer] [int] NULL,
    [Time] [varchar](114) NULL,
    [IP] [decimal](10) NULL
    [PORT] [int] NULL
) ON [PRIMARY]
END
 
Back
Top