Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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