Welcome to the RaGEZONE - MMORPG development forums.

MMT Official Season II (Eng)

This is a discussion on MMT Official Season II (Eng) within the MU Releases forums, part of the MU Online category; Eng:Emmm, last problem(i think), i don't see servers.. Screen: Any body help me ? Russ: Кто-то мне поможет ?...

Page 10 of 276 FirstFirst ... 234567891011121314151617182060110 ... LastLast
Results 136 to 150 of 4139
  1. #136
    Member
    Rank
    Member
    Join Date
    Dec 2008
    Location
    Россия
    Posts
    64
    Liked
    0

    Re: [Release] MMT Official Season II (Eng)

    Click
    Eng:Emmm, last problem(i think), i don't see servers.. Screen:

    Any body help me ?

    Russ: Кто-то мне поможет ?

  2. #137
    Website Designer
    Rank
    Member +
    Join Date
    Dec 2007
    Location
    Greece
    Posts
    542
    Liked
    2

    Re: [Release] MMT Official Season II (Eng)

    CashShopServer.exe have virus !!!! only this . and cant up server without CashShopServer how fix?

  3. #138
    Mystery Man
    Rank
    Alpha Member
    Join Date
    Jun 2008
    Location
    Nowhere
    Posts
    1,936
    Liked
    941

    Re: [Release] MMT Official Season II (Eng)

    Quote Originally Posted by throzen View Post
    CashShopServer.exe have virus !!!! only this . and cant up server without CashShopServer how fix?
    its not virus, its just packed


    No one can stop you from removing the credit line below, but ..
    consider respecting my work for creating it and leave it as it is,
    I am sure you will find that it is barely noticeable by anyone...

  4. #139
    Gyvastis
    Rank
    Member +
    Join Date
    Apr 2006
    Location
    Lithuania
    Posts
    866
    Liked
    71

    Re: [Release] MMT Official Season II (Eng)

    Why does main don't support my hooked dll? I did hooked it correctly..

  5. #140
    Newbie
    Rank
    Member
    Join Date
    Sep 2007
    Location
    .: Odyssey - Network :.
    Posts
    3
    Liked
    0

    Re: [Release] MMT Official Season II (Eng)

    Another bug: When a Commoner kills a Phono, he become Outlaw, instead of Hero.

  6. #141
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Oct 2006
    Location
    Brazil
    Posts
    515
    Liked
    19

    Re: [Release] MMT Official Season II (Eng)

    Quote Originally Posted by Radu2007 View Post
    Another bug: When a Commoner kills a Phono, he become Outlaw, instead of Hero.
    check the hero system option at commonserver.cfg i think '-.-
    [SIGPIC][/SIGPIC]

  7. #142
    Member
    Rank
    Member
    Join Date
    Dec 2008
    Location
    Россия
    Posts
    64
    Liked
    0

    Re: [Release] MMT Official Season II (Eng)

    English : When i open game, i check server, checked 1 connect, chek my accc and pass, and it's give me what Account Invalid - but it's have in DB, site..
    Help please..
    thanks


    Russian: Zapuskaiu igru, jmu na server, jmu na konnekt, vvoju akk i pass i mne vibivaet accaunt invalid, proboval uje po 20-30 raz, odno i toje..
    pomogite plz =((

  8. #143
    Hardcore Member
    Rank
    Member
    Join Date
    Jan 2007
    Location
    NY
    Posts
    146
    Liked
    15

    Re: [Release] MMT Official Season II (Eng)

    Quote Originally Posted by SpounZz View Post
    English : When i open game, i check server, checked 1 connect, chek my accc and pass, and it's give me what Account Invalid - but it's have in DB, site..
    Help please..
    thanks


    Russian: Zapuskaiu igru, jmu na server, jmu na konnekt, vvoju akk i pass i mne vibivaet accaunt invalid, proboval uje po 20-30 raz, odno i toje..
    pomogite plz =((

    Use this in SQL Server and after recreate your acc :

    (Poprobui eto v SQL SERVER a potom sozdai zanovo acc)

    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[XP_MD5_EncodeKeyVal]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
    drop procedure [dbo].[XP_MD5_EncodeKeyVal]
    GO

    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS OFF
    GO

    exec sp_addextendedproc N'XP_MD5_EncodeKeyVal', N'WZ_MD5_MOD.dll'
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO

    and

    USE [master]
    GO
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[XP_MD5_EncodeKeyVal]') and OBJECTPROPERTY(id, N'IsExtendedProc') = 1)
    exec sp_dropextendedproc N'[dbo].[XP_MD5_EncodeKeyVal]'
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS OFF
    GO
    exec sp_addextendedproc N'XP_MD5_EncodeKeyVal', N'WZ_MD5_MOD.dll'
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[XP_MD5_CheckValue]') and OBJECTPROPERTY(id, N'IsExtendedProc') = 1)
    exec sp_dropextendedproc N'[dbo].[XP_MD5_CheckValue]'
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS OFF
    GO
    exec sp_addextendedproc N'XP_MD5_CheckValue', N'WZ_MD5_MOD.dll'
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO
    USE [MuOnline]
    GO
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[SP_MD5_ENCODE_VALUE]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
    drop procedure [dbo].[SP_MD5_ENCODE_VALUE]
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS OFF
    GO
    CREATE PROCEDURE SP_MD5_ENCODE_VALUE (@btInStr VARCHAR(10), @btInStrIndex VARCHAR(10))
    --RETURNS BINARY(16)
    --Created By WebZen
    --Adapted By [CzF]Deathway
    AS
    BEGIN
    DECLARE @btOutVal BINARY(16)
    EXEC master..XP_MD5_EncodeKeyVal @btInStr, @btInStrIndex, @btOutVal OUT
    UPDATE MEMB_INFO SET memb__pwd = @btOutVal WHERE memb___id = @btInStrIndex
    RETURN @btOutVal
    END
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    SET ANSI_NULLS ON
    GO

  9. #144
    Member
    Rank
    Member
    Join Date
    Dec 2008
    Location
    Россия
    Posts
    64
    Liked
    0

    Re: [Release] MMT Official Season II (Eng)

    блях куда именно этот текст вписать?
    Emm... where i must read this text?

    Sorry for my bad english

  10. #145
    Mu2
    Member
    Rank
    Member
    Join Date
    Jan 2008
    Location
    Moldova City
    Posts
    52
    Liked
    0

    Re: [Release] MMT Official Season II (Eng)

    HI, anyoane can tell me what is this and how can I fix it? (screen)

    and when I want to kill a monster without any skill I can't do it... It is in my files or it is a bag?
    and on maps CryWolf & DeepLoren I can't kill tehm with any skill. WTF =)
    Attached Thumbnails Attached Thumbnails 123456789.jpg  
    Last edited by Mu2; 07-12-08 at 12:00 AM.


  11. #146
    Hardcore Member
    Rank
    Member
    Join Date
    Apr 2007
    Posts
    121
    Liked
    5

    Re: [Release] MMT Official Season II (Eng)

    Gameserver that a problem with this. for him this paked with any program (I believe that the molebox) to open a few minutes he spends using 100% cpu for the team that Codou the post he unpaked server to reduce the use of the cpu

  12. #147
    Member
    Rank
    Member
    Join Date
    Apr 2008
    Posts
    37
    Liked
    0

    Re: [Release] MMT Official Season II (Eng)

    wingsofhell, the gs_cs is having incompatibility problems with the cashshop, because when you open the GS + cashshop + gs_cs the CPU usage is 100%, JA realized you this?

  13. #148
    Hardcore Member
    Rank
    Member
    Join Date
    Apr 2005
    Location
    Brazil
    Posts
    117
    Liked
    1

    Re: [Release] MMT Official Season II (Eng)

    Quote Originally Posted by PhenoN View Post
    wingsofhell, the gs_cs is having incompatibility problems with the cashshop, because when you open the GS + cashshop + gs_cs the CPU usage is 100%, JA realized you this?
    For my too. Quad core 4gb ram, open gs_cs 100% cpu usage.

  14. #149
    Ultimate Member
    Rank
    Member
    Join Date
    Apr 2005
    Location
    Lithuania
    Posts
    183
    Liked
    0

    Re: [Release] MMT Official Season II (Eng)

    CPU usage reason can be ports, check all it might help
    [SIGPIC][/SIGPIC]

  15. #150
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Oct 2006
    Location
    Brazil
    Posts
    515
    Liked
    19

    Re: [Release] MMT Official Season II (Eng)

    Ok i got invalid socket error when trying to go to GS-CS.. i already checked all ips and connections... maybe it can be an item problem, since i was using a seal from cashshop..
    i'll make more tests but i'm going to sleep now... cya dudes, and please tell me what's the changes made in 1.00.02 version.
    [SIGPIC][/SIGPIC]

 

 

Posting Permissions

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