Welcome to the RaGEZONE - MMORPG development forums.

[How to?]Client Setup

This is a discussion on [How to?]Client Setup within the Luna Online forums, part of the MMO and MMORPG Developments category; How did you setup your client? What client did you use? What patch(es) did you apply? What changed? I have ...

Results 1 to 11 of 11
  1. #1
    (oO (||||) (||||) Oo)
    Rank
    Alpha Member
    Join Date
    Aug 2009
    Location
    USA (Fuck Yeah)
    Posts
    2,592
    Liked
    479

    config [How to?]Client Setup

    Click
    How did you setup your client? What client did you use? What patch(es) did you apply? What changed?

    I have like 6 client now. My 1.0.0, thai 1.3.5, thai 1.4.0, gpotato 1.0.0, my 1.0.0, titan (unpacked exe :) ), celestia (unpacked :) too ), ph unknown version.

    Which of those client should I use? Maybe just use titan' s client or celestia client?

    Edit:
    One that works for me is mix of titan + thai 1.3.5 but character model is invisible >.<

  2. #2
    Royal Family
    Rank
    Member +
    Join Date
    Oct 2008
    Location
    Somewhere IN KL
    Posts
    322
    Liked
    1

    information Re: [How to?]Client Setup

    Ya so do i too.... i was using thai 1.3.5 client and thai patch..
    Remaining problem was the skill cant learn and invisible npc model...



    Hope some 1 can help us here and i would like to thank Dansp for some good guide
    THANKYOU:
    Cross

  3. #3
    Royal Family
    Rank
    Member +
    Join Date
    Oct 2008
    Location
    Somewhere IN KL
    Posts
    322
    Liked
    1

    Re: [How to?]Client Setup

    Here is the procedure for experience.

    you should excute these 2 query, or your player won't get to higher level:

    USE [luna_logdb]
    GO
    /****** Object: StoredProcedure [dbo].[up_ExpPointLog] Script Date: 01/30/2009 13:16:06 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO









    ALTER proc [dbo].[up_ExpPointLog]
    (
    @Logtype tinyint
    , @charno int
    , @Grade int
    , @Value int
    , @ExpPoint bigint
    , @MurderKind smallint
    , @MurderIdx int
    , @AbilPoint int
    )

    as
    Set Nocount on
    -- Set Xact_Abort on

    insert tb_ExpPointLog
    (
    charno,
    Grade,
    changeValue,
    exppoint,
    KillerKind,
    KillerIdx,
    abilpoint,
    logDate
    )
    values
    (
    @charno,
    @Grade,
    @value,
    @ExpPoint,
    @MurderKind,
    @MurderIdx,
    @AbilPoint,
    getdate()
    )
    USE [lunagamedb00]
    GO
    /****** Object: StoredProcedure [dbo].[MP_CHARACTER_HeroInfoUPdate] Script Date: 01/30/2009 13:17:39 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO



    /*
    080530 LUJ, 레벨 값이 0인 경우 현재 레벨로 업데이트하도록 함
    */
    ALTER proc [dbo].[MP_CHARACTER_HeroInfoUPdate]
    (
    @CHARACTER_IDX int
    , @CHARACTER_STR int
    , @CHARACTER_MANA int
    , @CHARACTER_DEX int
    , @CHARACTER_VIT int
    , @CHARACTER_INT int
    , @CHARACTER_WIS int
    , @CHARACTER_FAME smallint
    , @CHARACTER_KARMA tinyint
    , @CHARACTER_EXPOINT bigint
    , @CHARACTER_GRADEUPPOINT smallint
    , @CHARACTER_MONEY bigint
    , @CHARACTER_QUICKPACE int
    , @CHARACTER_ABILITYEXP int
    , @CHARACTER_PLAYTIME int
    , @CHARACTER_LASTPKENDTIME int
    , @CHARACTER_MAXGRADE tinyint
    )

    as
    Set Nocount on
    -- Set Xact_Abort on

    declare @Cur_Date datetime
    Set @Cur_Date = getdate()

    -- 080530 LUJ, 레벨이 0인 경우 현재 레벨로 세팅함
    IF 0 = @CHARACTER_MAXGRADE
    BEGIN
    SELECT @CHARACTER_MAXGRADE = CHARACTER_MAXGRADE
    FROM TB_CHARACTER
    WHERE CHARACTER_IDX = @CHARACTER_IDX
    END

    update TB_CHARACTER set
    CHARACTER_STR = @CHARACTER_STR
    , CHARACTER_MANA = @CHARACTER_MANA
    , CHARACTER_DEX = @CHARACTER_DEX
    , CHARACTER_VIT = @CHARACTER_VIT
    , CHARACTER_INT = @CHARACTER_INT
    , CHARACTER_WIS = @CHARACTER_WIS
    , CHARACTER_FAME = @CHARACTER_FAME
    , CHARACTER_KARMA = @CHARACTER_KARMA
    , CHARACTER_EXPOINT = @CHARACTER_EXPOINT
    , CHARACTER_GRADEUPPOINT = @CHARACTER_GRADEUPPOINT
    , CHARACTER_MONEY = @CHARACTER_MONEY
    -- , CHARACTER_ABILITYEXP = @CHARACTER_ABILITYEXP
    , CHARACTER_PLAYTIME = @CHARACTER_PLAYTIME
    , CHARACTER_LASTPKENDTIME = @CHARACTER_LASTPKENDTIME
    , CHARACTER_LASTMODIFIED = @Cur_date
    , CHARACTER_MAXGRADE = @CHARACTER_MAXGRADE

    where CHARACTER_IDX = @CHARACTER_IDX
    **Then delete tb_EXPointlog and excute this query:**
    USE [luna_logdb]
    GO
    /****** Object: Table [dbo].[tb_ExpPointLog] Script Date: 01/30/2009 13:21:47 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[tb_ExpPointLog](
    [LogIdx] [int] IDENTITY(1,1) NOT NULL,
    [LogType] [tinyint] NOT NULL CONSTRAINT [DF_tb_ExpPointLog_LogType] DEFAULT ((0)),
    [charno] [int] NOT NULL,
    [Grade] [int] NOT NULL,
    [changeValue] [int] NOT NULL,
    [KillerKind] [smallint] NOT NULL,
    [KillerIdx] [int] NOT NULL,
    [ExpPoint] [bigint] NOT NULL,
    [AbilPoint] [int] NOT NULL,
    [LogDate] [datetime] NOT NULL CONSTRAINT [DF_tb_ExpPointLog_LogDate] DEFAULT (getdate())
    ) ON [PRIMARY]
    I not understanding th final quote that ask to delete the tb_EXPointlog since the 1st qoute is asking to replace

    Dansp,maybe u figure it out and guide us ok

    Here the skill learning fix file
    http://forum.ragezone.com/attachment...-systemmsg.rar

    Credit for this prosedure and skill learning file:

    Zell Dinch

    http://forum.ragezone.com/f543/full-...ml#post4686544
    THANKYOU:
    Cross

  4. #4
    Royal Family
    Rank
    Member +
    Join Date
    Oct 2008
    Location
    Somewhere IN KL
    Posts
    322
    Liked
    1

    Re: [How to?]Client Setup

    Dansp, i think can use those my client if any1 can find the version in dat client exe. Dansp can u upload those client that can use ipset to change vversion ?
    THANKYOU:
    Cross

  5. #5
    Royal Family
    Rank
    Member +
    Join Date
    Oct 2008
    Location
    Somewhere IN KL
    Posts
    322
    Liked
    1

    smile Re: [How to?]Client Setup

    Dansp,

    Now i have success make the luna online and my frenz also can join without problem.And i now hosting 10map in 1 pc no problem.Only now i found out few problem so far.

    1st: Party and only leader get exp other none?
    2nd: Some item like flower seed lvl1 when u sell to npc client crash if drop nothing no problem?(FIXED)
    3rd: Cant create FEMALE character?

    This is the problem i found out so far .....

    Request MY client Or any other latest client that can be use and ip_changer can change that MY client insteal.

    Future: Will release and make a fully complete guide for this section and for all if i done my current project success.Hopfully some one out there help us how to fix those problem.Thank You

    Edited 2.dec.2009 =
    1:Eng and Chi language done successfully.
    2:Fix item selling to npc problem.
    Last edited by maryjane25; 01-12-09 at 06:20 PM. Reason: CHI and ENG language done
    THANKYOU:
    Cross

  6. #6
    Newbie
    Rank
    Member
    Join Date
    Dec 2009
    Posts
    1
    Liked
    0

    Re: [How to?]Client Setup

    maryjane, when i run my server, why does it crash even before i get to server select? have you encountered this kind of problem? *using thai client btw.*

  7. #7
    Member
    Rank
    Member
    Join Date
    Jul 2009
    Posts
    53
    Liked
    2

    Re: [How to?]Client Setup

    Is your server crashing or your game?

  8. #8
    (oO (||||) (||||) Oo)
    Rank
    Alpha Member
    Join Date
    Aug 2009
    Location
    USA (Fuck Yeah)
    Posts
    2,592
    Liked
    479

    Re: [How to?]Client Setup

    I think his client crashes. I have had the same while I was using Chapter 2 server with old database and gpotato client. It crashed because of missing procedure.

    ALso it might crash if he didn't apply patch, thats what I have had too.

  9. #9
    Member
    Rank
    Member
    Join Date
    Jul 2009
    Posts
    53
    Liked
    2

    Re: [How to?]Client Setup

    hmm, interesting, never had that happen, even with missing procedures. It also may be that the client isn;t correctly setup. unfortunately there may be many reasons
    Silver Gaming Network's Head Admin

  10. #10
    Hardcore Member
    Rank
    Member
    Join Date
    Dec 2006
    Posts
    105
    Liked
    1

    Re: [How to?]Client Setup

    Hi maryjane25 sorry for digging this post.. how did you fix this.

    The invisible NPC Model.

  11. #11
    Ultimate Member
    Rank
    Member
    Join Date
    Apr 2010
    Posts
    181
    Liked
    23

    Re: [How to?]Client Setup

    Quote Originally Posted by maryjane25 View Post
    Here is the procedure for experience.

    you should excute these 2 query, or your player won't get to higher level:





    **Then delete tb_EXPointlog and excute this query:**


    I not understanding th final quote that ask to delete the tb_EXPointlog since the 1st qoute is asking to replace

    Dansp,maybe u figure it out and guide us ok

    Here the skill learning fix file
    http://forum.ragezone.com/attachment...-systemmsg.rar

    Credit for this prosedure and skill learning file:

    Zell Dinch

    http://forum.ragezone.com/f543/full-...ml#post4686544
    I've run the query above
    but my character still would not higher than 140
    anyone can help?

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •