[HELP] Character naked!! [HELP]

Results 1 to 7 of 7
  1. #1
    Apprentice Miksu6996 is offline
    MemberRank
    Nov 2007 Join Date
    20Posts

    [HELP] Character naked!! [HELP]

    When i log in to my private server and buy clothes and weapons
    then i close GunZ and play again BUT my character is naked NO clothes
    or weapons HOW do i fix this problem:question1


  2. #2
    Account Upgraded | Title Enabled! ghostrevan is offline
    MemberRank
    Jul 2007 Join Date
    257Posts

    Re: [HELP] Character naked!! [HELP]

    did u look at the lvl? u must be lvl -- for some clothes (i meen lvl 9 ore 15 ore 55 )
    make sure u changed ure lvl for some other clothes u need to be lvl 45 ore lower

  3. #3
    Account Upgraded | Title Enabled! 7-Eleven is offline
    MemberRank
    Oct 2007 Join Date
    LalaLandLocation
    714Posts

    Re: [HELP] Character naked!! [HELP]

    Use BRZ 2007 database

  4. #4
    Apprentice Miksu6996 is offline
    MemberRank
    Nov 2007 Join Date
    20Posts

    Re: [HELP] Character naked!! [HELP]

    @ ghostrevan Lolz iam not stupid,iam 100lv admin xD XD

  5. #5
    Apprentice Miksu6996 is offline
    MemberRank
    Nov 2007 Join Date
    20Posts

    Re: [HELP] Character naked!! [HELP]

    7-Eleven u mean that Maxtrax's one??

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

    Re: [HELP] Character naked!! [HELP]

    Quote Originally Posted by Miksu6996 View Post
    When i log in to my private server and buy clothes and weapons
    then i close GunZ and play again BUT my character is naked NO clothes
    or weapons HOW do i fix this problem:question1
    its old bug... :D use br or july server files

    or

    1.open SpInsertChar
    instert this code bottom of text what u see:
    Code:
    SET @CharIdent = @@IDENTITY
      /* Melee */
      SET @MeleeItemID = 
        CASE @Costume
        WHEN 0 THEN 1
        WHEN 1 THEN 2
        WHEN 2 THEN 1
        WHEN 3 THEN 2
        WHEN 4 THEN 2
        WHEN 5 THEN 1
        END
      INSERT INTO CharacterItem (CID, ItemID) Values (@CharIdent, @MeleeItemID)
      IF 0 <> @@ERROR BEGIN
     ROLLBACK TRAN
     RETURN (-1)
      END
      SET @MeleeCIID = @@IDENTITY
      /* Primary */
      SET @PrimaryItemID = 
        CASE @Costume
        WHEN 0 THEN 5001
        WHEN 1 THEN 5002
        WHEN 2 THEN 4005
        WHEN 3 THEN 4001
        WHEN 4 THEN 4002
        WHEN 5 THEN 4006
        END
      INSERT INTO CharacterItem (CID, ItemID) Values (@CharIdent, @PrimaryItemID)
      IF 0 <> @@ERROR BEGIN
     ROLLBACK TRAN
     RETURN (-1)
      END
      SET @PrimaryCIID = @@IDENTITY
      /* Secondary */
    IF @Costume = 0 OR @Costume = 2 BEGIN
      SET @SecondaryItemID =
        CASE @Costume
        WHEN 0 THEN 4001
        WHEN 1 THEN 0
        WHEN 2 THEN 5001
        WHEN 3 THEN 4006
        WHEN 4 THEN 0
        WHEN 5 THEN 4006
        END
      IF @SecondaryItemID <> 0 BEGIN
        INSERT INTO CharacterItem (CID, ItemID) Values (@CharIdent, @SecondaryItemID)
        IF 0 <> @@ERROR BEGIN
     ROLLBACK TRAN
     RETURN (-1)
        END
        SET @SecondaryCIID = @@IDENTITY
      END
    END
      SET @Custom1ItemID = 
        CASE @Costume
        WHEN 0 THEN 30301
        WHEN 1 THEN 30301
        WHEN 2 THEN 30401
        WHEN 3 THEN 30401
        WHEN 4 THEN 30401
        WHEN 5 THEN 30101
        END
      /* Custom1 */
      INSERT INTO CharacterItem (CID, ItemID) Values (@CharIdent, @Custom1ItemID)
      IF 0 <> @@ERROR BEGIN
     ROLLBACK TRAN
     RETURN (-1)
      END
      SET @Custom1CIID = @@IDENTITY
      /* Custom2 */
    IF @Costume = 4 OR @Costume = 5
    BEGIN
      SET @Custom2ItemID =
        CASE @Costume
        WHEN 0 THEN 0
        WHEN 1 THEN 0
        WHEN 2 THEN 0
        WHEN 3 THEN 0
        WHEN 4 THEN 30001
        WHEN 5 THEN 30001
        END
      IF @Custom2ItemID <> 0
      BEGIN
        INSERT INTO CharacterItem (CID, ItemID) Values (@CharIdent, @Custom2ItemID)
        IF 0 <> @@ERROR BEGIN
     ROLLBACK TRAN
     RETURN (-1)
        END
        SET @Custom2CIID = @@IDENTITY
      END
    END
    
    IF @Sex = 0  /* 남자일 경우 */
    BEGIN
      /* Chest */
      SET @ChestItemID =
        CASE @Costume
        WHEN 0 THEN 21001
        WHEN 1 THEN 21001
        WHEN 2 THEN 21001
        WHEN 3 THEN 21001
        WHEN 4 THEN 21001
        WHEN 5 THEN 21001
        END
    
      INSERT INTO CharacterItem (CID, ItemID) Values (@CharIdent, @ChestItemID)
      IF 0 <> @@ERROR BEGIN
     ROLLBACK TRAN
     RETURN (-1)
      END
      SET @ChestCIID = @@IDENTITY
      /* Legs */
      SET @LegsItemID =
        CASE @Costume
        WHEN 0 THEN 23001
        WHEN 1 THEN 23001
        WHEN 2 THEN 23001
        WHEN 3 THEN 23001
        WHEN 4 THEN 23001
        WHEN 5 THEN 23001
        END
    
      INSERT INTO CharacterItem (CID, ItemID) Values (@CharIdent, @LegsItemID)
      IF 0 <> @@ERROR BEGIN 
     ROLLBACK TRAN
     RETURN (-1)
      END
      SET @LegsCIID = @@IDENTITY
    END
    ELSE
    BEGIN   /* 여자일 경우 */
      /* Chest */
      SET @ChestItemID =
        CASE @Costume
        WHEN 0 THEN 21501
        WHEN 1 THEN 21501
        WHEN 2 THEN 21501
        WHEN 3 THEN 21501
        WHEN 4 THEN 21501
        WHEN 5 THEN 21501
        END
    
      INSERT INTO CharacterItem (CID, ItemID) Values (@CharIdent, @ChestItemID)
      IF 0 <> @@ERROR BEGIN
     ROLLBACK TRAN
     RETURN (-1)
      END
      SET @ChestCIID = @@IDENTITY
      /* Legs */
      SET @LegsItemID =
        CASE @Costume
        WHEN 0 THEN 23501
        WHEN 1 THEN 23501
        WHEN 2 THEN 23501
        WHEN 3 THEN 23501
        WHEN 4 THEN 23501
        WHEN 5 THEN 23501
        END
    
      INSERT INTO CharacterItem (CID, ItemID) Values (@CharIdent, @LegsItemID)
      IF 0 <> @@ERROR BEGIN
     ROLLBACK TRAN
     RETURN (-1)
      END
      SET @LegsCIID = @@IDENTITY
    END  
    UPDATE Character
    SET chest_slot = @ChestCIID, legs_slot = @LegsCIID, melee_slot = @MeleeCIID,
        primary_slot = @PrimaryCIID, secondary_slot = @SecondaryCIID, custom1_slot = @Custom1CIID,
        custom2_slot = @Custom2CIID,
        chest_itemid = @ChestItemID, legs_itemid = @LegsItemID, melee_itemid = @MeleeItemID,
        primary_itemid = @PrimaryItemID, secondary_itemid = @SecondaryItemID, custom1_itemid = @Custom1ItemID,
        custom2_itemid = @Custom2ItemID
    WHERE CID=@CharIdent
    IF 0 = @@ROWCOUNT BEGIN
     ROLLBACK TRAN
     RETURN (-1)
    END
    COMMIT TRAN
    ' 
    END
    GO
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    but it may give error cuz its taken from br database

  7. #7
    Account Upgraded | Title Enabled! sexy fire slash is offline
    MemberRank
    Oct 2007 Join Date
    Canada B.C. Currently A Developer.Location
    553Posts

    Re: [HELP] Character naked!! [HELP]

    How About He Just Uses Ure Files Kekku.



Advertisement