Hey all,
i'm working on the clanwar procedures, i think i have the right procedure for WinTheClanGame but the score is not showing up in Gunz.
The GetClanInfo procedure i have is
In gunz is only showing up The ClanName and the clanmaster name, but the score stays on zero.
Who can help me with it?
BTW: I put in some win and losses in the table manually but it wont showup
i'm working on the clanwar procedures, i think i have the right procedure for WinTheClanGame but the score is not showing up in Gunz.
The GetClanInfo procedure i have is
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[spGetClanInfo]
@nCLID INT
AS
BEGIN
SET NOCOUNT ON;
SELECT CLID FROM Character
SELECT * FROM Clan
WHERE CLID = @nCLID
END
In gunz is only showing up The ClanName and the clanmaster name, but the score stays on zero.
Who can help me with it?
BTW: I put in some win and losses in the table manually but it wont showup