-
Enthusiast
[Help] Take away Debug Server from DavD
I'm now deciding if I should use the normal GunZ or Davd, I prefer DavD but I dont want the Debug Server, is it possible to take it there away ?
Edit : I also got the negative bounty problem.
my procedure looks like this :
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[spBuyBountyItem]
@nCID INT,
@nItemID INT,
@nPrice INT
AS
BEGIN
SET NOCOUNT ON;
UPDATE Character SET BP = BP-@nPrice WHERE CID = @nCID
INSERT INTO Items
VALUES(@nCID,@nItemID,NULL)
SELECT SCOPE_IDENTITY() OrderCIID
END
may tell me whats wrong here ?
-