Yeah, i release this fix :juggle:
First, edit your spBuyBountyItem procedure
You have this procedure:
Ok, the bug is in this line:Code:CREATE PROCEDURE [dbo].[spBuyBountyItem] @nCID INT, @nItemID INT, @nPrice INT AS BEGIN SET NOCOUNT ON; UPDATE Character SET BP = BP-@nPrice INSERT INTO Items VALUES(@nCID,@nItemID,NULL) SELECT 0 OrderCIID END
This line, set the ALL characters BP to negative but dont have a WHERE CID = @nCIDCode:UPDATE Character SET BP = BP-@nPrice
This is a fixed procedure
Credits to meCode:CREATE 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 0 OrderCIID END


Reply With Quote![[RELEASE] Negative Bounty Fix](http://ragezone.com/hyper728.png)


