Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,91 @@
|
||||
alter table PartyInfo
|
||||
drop column GID
|
||||
|
||||
go
|
||||
|
||||
alter Table TblGuildMember
|
||||
add Tactics tinyint NULL
|
||||
|
||||
go
|
||||
|
||||
drop proc dbo.InsertParty_Part2
|
||||
|
||||
go
|
||||
|
||||
/*
|
||||
<EFBFBD><EFBFBD>Ƽ <20>߰<EFBFBD> <20><><EFBFBD>ν<EFBFBD><CEBD><EFBFBD>
|
||||
*/
|
||||
|
||||
CREATE PROCEDURE dbo.InsertParty_Part2
|
||||
@Party AS varBINARY(202), /* ģ<><C4A3> <20><><EFBFBD><EFBFBD>Ʈ */
|
||||
@UserInfo AS varBINARY(72) /* <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> */
|
||||
AS
|
||||
|
||||
SET NOCOUNT ON
|
||||
|
||||
|
||||
INSERT INTO PartyInfo (Party, UserInfo) VALUES (@Party, @UserInfo)
|
||||
|
||||
/* <20><><EFBFBD><EFBFBD> <20><><EFBFBD>̵<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
||||
SELECT CAST(SCOPE_IDENTITY() AS INT)
|
||||
|
||||
go
|
||||
|
||||
drop proc dbo.GetPartyInfo_Part2
|
||||
|
||||
go
|
||||
|
||||
/*
|
||||
<EFBFBD><EFBFBD>Ƽ <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>ν<EFBFBD><CEBD><EFBFBD>
|
||||
*/
|
||||
|
||||
CREATE PROCEDURE dbo.GetPartyInfo_Part2
|
||||
@Party_uid AS INT /* <20><>Ƽ <20><><EFBFBD>̵<EFBFBD> */
|
||||
AS
|
||||
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT Party, UserInfo FROM PartyInfo WHERE PID = @Party_uid
|
||||
|
||||
go
|
||||
|
||||
drop proc dbo.UpdatePartyInfo_Part2
|
||||
|
||||
go
|
||||
|
||||
CREATE PROCEDURE dbo.UpdatePartyInfo_Part2
|
||||
@Party_uid AS INT, /* <20><>Ƽ <20><><EFBFBD><EFBFBD> <20><><EFBFBD>̵<EFBFBD> */
|
||||
@Party AS varBINARY(202), /* ģ<><C4A3> <20><><EFBFBD><EFBFBD>Ʈ */
|
||||
@UserInfo AS varBINARY(72) /* <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> */
|
||||
AS
|
||||
|
||||
SET NOCOUNT ON
|
||||
|
||||
UPDATE PartyInfo SET Party = @Party, UserInfo = @UserInfo WHERE PID = @Party_uid
|
||||
|
||||
|
||||
/*
|
||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> DB
|
||||
|
||||
DESC : <09><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> DB <20><> TblGuildOtherList <20><><EFBFBD>̺<EFBFBD><CCBA><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ϰ<EFBFBD>
|
||||
TblGuildRelation <20><> <20>߰<EFBFBD><DFB0>Ѵ<EFBFBD>.
|
||||
*/
|
||||
|
||||
DROP TABLE dbo.TblGuildOtherList
|
||||
|
||||
GO
|
||||
|
||||
CREATE TABLE [TblGuildRelation] (
|
||||
[nGuildID] [int] NOT NULL ,
|
||||
[nTargetGuildID] [int] NOT NULL ,
|
||||
[tnRelation] [tinyint] NOT NULL ,
|
||||
CONSTRAINT [PK_TblGuildRelation_1] PRIMARY KEY CLUSTERED
|
||||
(
|
||||
[nGuildID],
|
||||
[nTargetGuildID]
|
||||
) ON [PRIMARY] ,
|
||||
CHECK ([tnRelation] = 1 or [tnRelation] = 2 or [tnRelation] = 3)
|
||||
) ON [PRIMARY]
|
||||
|
||||
GO
|
||||
|
||||
Reference in New Issue
Block a user