rollback

Results 1 to 3 of 3
  1. #1
    Member PercyGloryKal is offline
    MemberRank
    May 2014 Join Date
    In the worldLocation
    60Posts

    cool rollback

    i have hexed DB server with the release from madnight
    i change the sql create player

    plz can some one help for fixing the rolback

    thx for ur time


  2. #2
    Account Upgraded | Title Enabled! David Emad is offline
    MemberRank
    Oct 2013 Join Date
    VipeRLocation
    230Posts

    Re: rollback

    use this db. http://www15.zippyshare.com/v/52767382/file.html
    and at player_db0 add CurHT as int and also add CurMT as int

    and stored procedure add this:

    CREATE PROCEDURE [dbo].[CreatePlayer]


    @uid int, @name varchar(14), @class tinyint, @Strength tinyint, @Health tinyint, @Intelligence tinyint, @Wisdom tinyint, @dexterity tinyint, @curht int, @curmt int, @Map tinyint,
    @x int,
    @y int,
    @z int, @face tinyint, @Hair tinyint
    AS


    INSERT INTO Player ( [UID], [Name], [Class], [Strength], Health, Intelligence, Wisdom, Dexterity, [CurHT], [CurMT], [Map], [X], [Y], [Z], [Face], [Hair])
    VALUES ( @uid @name @class @Strength, @Health @Intelligence @Wisdom, @dexterity @curht @curmt, 0, 256171, 256020, 16410, @face, @Hair)
    Last edited by David Emad; 29-12-14 at 06:19 PM.

  3. #3
    Enthusiast SmithieBoy is offline
    MemberRank
    Feb 2011 Join Date
    34Posts

    Re: rollback

    Quote Originally Posted by David Emad View Post
    use this db. http://www15.zippyshare.com/v/52767382/file.html
    and at player_db0 add CurHT as int and also add CurMT as int

    and stored procedure add this:

    CREATE PROCEDURE [dbo].[CreatePlayer]


    @uid int, @name varchar(14), @class tinyint, @Strength tinyint, @Health tinyint, @Intelligence tinyint, @Wisdom tinyint, @dexterity tinyint, @curht int, @curmt int, @Map tinyint,
    @x int,
    @y int,
    @z int, @face tinyint, @Hair tinyint
    AS


    INSERT INTO Player ( [UID], [Name], [Class], [Strength], Health, Intelligence, Wisdom, Dexterity, [CurHT], [CurMT], [Map], [X], [Y], [Z], [Face], [Hair])
    VALUES ( @uid @name @class @Strength, @Health @Intelligence @Wisdom, @dexterity @curht @curmt, 0, 256171, 256020, 16410, @face, @Hair)
    Your stored missing somethings.

    CREATE PROCEDURE [dbo].[CreatePlayer]


    @uid int, @name varchar(14), @class tinyint, @Strength tinyint, @Health tinyint, @Intelligence tinyint, @Wisdom tinyint, @dexterity tinyint, @curht int, @curmt int, @Map tinyint,
    @x int,
    @y int,
    @z int, @face tinyint, @Hair tinyint
    AS


    INSERT INTO Player ( [UID], [Name], [Class], [Strength], Health, Intelligence, Wisdom, Dexterity, [CurHT], [CurMT], [Map], [X], [Y], [Z], [Face], [Hair])
    VALUES ( @uid, @name, @class, @Strength, @Health, @Intelligence, @Wisdom, @dexterity, @curht, @curmt, 0, 256171, 256020, 16410, @face, @Hair)



Advertisement