• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Percent and Bounty Bug

Newbie Spellweaver
Joined
Oct 14, 2006
Messages
46
Reaction score
0
for percent how come mine is stuck at 100% and for the bounty bug i followed the bounty bug fix release
http://forum.ragezone.com/gunz-releases/release-negative-bounty-fix-210307.html
but I still get negative bounty. This is what i did like it said:
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
so i added the line WHERE CID = @nCID to it

and it became like this
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
this happens after i die in quest I logged out and logged back on and my bounty was in the negatives. Anyone know what is wrong?
 
Junior Spellweaver
Joined
Oct 16, 2006
Messages
133
Reaction score
1
the 100% is because your character does not have enought exp to make it the level that it says, so you have to actually acuire enough exp to make you that lvl at 100% before you will level. or just set the exp in the character table.
 
Upvote 0
Banned
Banned
Joined
Jan 13, 2007
Messages
1,898
Reaction score
65
i know that sucks...
and that fix...um...what dose it fix?, quest, when you get a chest? that bounty fix, if it dose not work....
 
Upvote 0
Back
Top