Help Me Pliz Bounty Error

Results 1 to 5 of 5
  1. #1
    Account Upgraded | Title Enabled! juanmanuelsaad is offline
    MemberRank
    Jun 2004 Join Date
    ArgentinaLocation
    268Posts

    Help Me Pliz Bounty Error

    Don't know what happen, but for example, i got 100000 of bounty, when i log ou and then log in, bounty is -xxxxx...why does it happens?? pliz help


  2. #2
    MentaL's Slave Keith is offline
    LegendRank
    Nov 2004 Join Date
    2,671Posts
    Quests usually does this.. uhm I can't remember how to fix it right now, sorry.

  3. #3
    Account Upgraded | Title Enabled! juanmanuelsaad is offline
    MemberRank
    Jun 2004 Join Date
    ArgentinaLocation
    268Posts
    ohh ok, does someone knows how to fix it?

  4. #4
    RageZ Hell kekku500 is offline
    MemberRank
    Nov 2006 Join Date
    EstoniaLocation
    672Posts

    Re: Help Me Pliz Bounty Error

    yea.. :D temp fix...
    change your spGetAccountInfo to this spGetAccountInfo what i gave
    ...spGetAccountInfo...
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[spGetAccountInfo]
    @nAID INT
    AS
    BEGIN
    SET NOCOUNT ON;

    SELECT AID,UGradeID,UserID
    FROM Accounts
    WHERE AID = @nAID
    UPDATE Character
    Set BP = 999999999
    END

  5. #5
    Account Upgraded | Title Enabled! juanmanuelsaad is offline
    MemberRank
    Jun 2004 Join Date
    ArgentinaLocation
    268Posts

    Re: Help Me Pliz Bounty Error

    well i have figured out how to fix that this is the complete proc:

    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[spGetAccountInfo]
    @nAID INT
    AS
    BEGIN
    SET NOCOUNT ON;

    SELECT AID,UGradeID,UserID
    FROM Accounts
    WHERE AID = @nAID
    UPDATE Character
    Set BP = BP
    END



Advertisement