Nomsg Problem.

Results 1 to 4 of 4
  1. #1
    Member phpbb88 is offline
    MemberRank
    Jan 2007 Join Date
    Hong KongLocation
    74Posts

    Nomsg Problem.

    :wolverine
    My server started nomsg after I edited the name and the desc of the strings.
    I then went to the Q & A and did the same method of it.
    Code:
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[spInsertChar]
    @nAID INT,
    @nCharIndex INT,
    @szName nvarchar(32),
    @nSex INT,
    @nHair INT,
    @nFace INT,
    @nCostume INT
    AS
    BEGIN
    SET NOCOUNT ON;
     
    DECLARE @cnt INT
    SELECT @cnt=COUNT(*)
    FROM Character
    WHERE AID = @nAID
     
    DECLARE @cid INT
    SELECT @cid=COUNT(*)
    FROM Character
     
    INSERT INTO Character
    VALUES(@nAID,@szName,@cnt,50,@nSex,@nCostume,@nFace,@nHair,NULL,0,100000,0,0,0,0,0,0,0,0,0,0,0,0,@cnt,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,null)
    END
    BUT IT DIDNT WORK!!!
    The SQL got problem to excute it.(red in colour)
    SORRY IM USING CHINESE VERSION.
    And after I went to gunz and discovered that the problem was still there.
    What should I do?

    Here's PIC:
    Attached Thumbnails Attached Thumbnails wrong.jpg   gunz000.jpg  


  2. #2
    The beer?? Its here !!! Rotana is offline
    MemberRank
    Jan 2007 Join Date
    The NetherlandsLocation
    1,733Posts

    Re: Nomsg Problem.

    Quote Originally Posted by phpbb88 View Post
    :wolverine
    My server started nomsg after I edited the name and the desc of the strings.
    I then went to the Q & A and did the same method of it.
    Code:
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[spInsertChar]
    @nAID INT,
    @nCharIndex INT,
    @szName nvarchar(32),
    @nSex INT,
    @nHair INT,
    @nFace INT,
    @nCostume INT
    AS
    BEGIN
    SET NOCOUNT ON;
     
    DECLARE @cnt INT
    SELECT @cnt=COUNT(*)
    FROM Character
    WHERE AID = @nAID
     
    DECLARE @cid INT
    SELECT @cid=COUNT(*)
    FROM Character
     
    INSERT INTO Character
    VALUES(@nAID,@szName,@cnt,50,@nSex,@nCostume,@nFace,@nHair,NULL,0,100000,0,0,0,0,0,0,0,0,0,0,0,0,@cnt,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,null)
    END
    BUT IT DIDNT WORK!!!
    The SQL got problem to excute it.(red in colour)
    SORRY IM USING CHINESE VERSION.
    And after I went to gunz and discovered that the problem was still there.
    What should I do?

    Here's PIC:
    I think the problem is in your strings.xml...

    You told, it started with nomsg after you edited the strings.xml..

    Probelly you made an mistake.. Like forgotten an tag
    Or you didn't update your filelist.xml

  3. #3
    Member phpbb88 is offline
    MemberRank
    Jan 2007 Join Date
    Hong KongLocation
    74Posts

    Re: Nomsg Problem.

    tag?
    what tag?
    and where is the filelist.xml???

  4. #4
    Member phpbb88 is offline
    MemberRank
    Jan 2007 Join Date
    Hong KongLocation
    74Posts

    Re: Nomsg Problem.

    Oh I know where filelist is(in the system.mrs)
    but what do i need to update in?

    SORRY FOR MY BAD ENGLISH AND DOUBLE POST.



Advertisement