Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

Newbie Spellweaver
Joined
May 13, 2014
Messages
25
Reaction score
0
client sir cant download megaupload....please upload to mediafire please sir
 
Experienced Elementalist
Joined
Nov 29, 2009
Messages
259
Reaction score
30
Need help here, DataServer is always "Not Responding" i waited for so long and it doesn't change.

Maybe i just overlooked something, any idea guys?

NVM/ ODBC issue

Can you tell me how you fixed it?

I had no issue with these files on my VMWare, yet i have dataserver not responding issue on my vps
 
Newbie Spellweaver
Joined
Jul 2, 2007
Messages
18
Reaction score
3
Does anyone know how to enable Socket+Exe option in the files?

My editor says
[9:33:30 PM] (Item Editor) Socket Option also selected. Make sure to set "CanUseSocketExcItem = 1" in IGCCommon.ini file.

But there is no such option in the files..

And when creating items in the editor, they work but they are normal Sockte items notexe.
 
Initiate Mage
Joined
Mar 8, 2020
Messages
1
Reaction score
0
Have u know the Mu Editor is too old?lots of items are not supported...
 
Initiate Mage
Joined
Mar 9, 2020
Messages
2
Reaction score
0
DarkLord's horse cannot be displayed. When using another database, it can be displayed. Is there any way to solve that problem in the other database?
 
Newbie Spellweaver
Joined
Dec 10, 2019
Messages
30
Reaction score
15
DarkLord's horse cannot be displayed. When using another database, it can be displayed. Is there any way to solve that problem in the other database?

Darklord's Horse display normally. Right click at Darklord's Horse in your inventory.
 
Initiate Mage
Joined
Jun 16, 2014
Messages
4
Reaction score
0
I have fixed the Errtel creation, but it just seems like there is something missing globally. What I mean is that whenever you put something into the cells for creating Errtel or upgrading it, there are no items in lpObj->m_playerData->pPentagramMixSystem, all problems come from that. Maybe someone has a knowledge of where to look, because unfortunately I'm not that good at c++ and especially at developing MuOnline servers.
 
Newbie Spellweaver
Joined
Dec 10, 2019
Messages
30
Reaction score
15
I have fixed the Errtel creation, but it just seems like there is something missing globally. What I mean is that whenever you put something into the cells for creating Errtel or upgrading it, there are no items in lpObj->m_playerData->pPentagramMixSystem, all problems come from that. Maybe someone has a knowledge of where to look, because unfortunately I'm not that good at c++ and especially at developing MuOnline servers.

PentagramMixSystem is empty source. In the function CPentagramMixSystem::CGPentagramJewelRefineRecv you can see g_Log.AddC(TColor::Red, "[PentagramJewelMix] in Progress..");

So if you want to fix Errtel, you have to code these functions in PentagramMixSystem.
 
Newbie Spellweaver
Joined
May 13, 2014
Messages
25
Reaction score
0
link pls sir?

JfMuS12 Ver.5.0 : now working
 
Newbie Spellweaver
Joined
Mar 26, 2020
Messages
9
Reaction score
1
hi,
first : I cant save settings, they are deleted after reconnection.
second : Logs arent not saved
third : I asked nothing and my caracter pick up all items xd


 
Last edited:
Newbie Spellweaver
Joined
Dec 10, 2019
Messages
30
Reaction score
15
first : I cant save settings, they are deleted after reconnection.
third : I asked nothing and my caracter pick up all items xd

Fixed settings & auto pickup by my attach file: FixAutoHunting.zip


second : Logs arent not saved

Hunting Record I can't fix right now, there are a lot of work to make that feature work.
  • DataServer to store log hunting of user.
  • GameServer to handle request packet of user.
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jan 4, 2007
Messages
18
Reaction score
0
I have problems with the scroll evil spirit! I buy it in the market and when I add it it disappears from the inventory but it does not appear in the list of the skills! someone had the same problem?
 
Newbie Spellweaver
Joined
Dec 10, 2019
Messages
30
Reaction score
15
I have problems with the scroll evil spirit! I buy it in the market and when I add it it disappears from the inventory but it does not appear in the list of the skills! someone had the same problem?
I didn't have this error. How about other skills? Is there any error show in the Sameserver / Dataserver console?
 
Newbie Spellweaver
Joined
Jan 4, 2007
Messages
18
Reaction score
0
I put it to work thanks!What I can not fix the one that does not run the database of the battlecore throws me this ODBC error that I do not know how to solve it and I tried several things but I could not !!

[00:05:29] SELECT ItemCount FROM GameServerInfo WHERE Number = 0[00:05:29] SQLSTATE: 42S02, Diagnosis: [Microsoft][ODBC SQL Server Driver][SQL Server]El nombre de objeto 'GameServerInfo' no es válido.
 
Newbie Spellweaver
Joined
Dec 10, 2019
Messages
30
Reaction score
15
I put it to work thanks!What I can not fix the one that does not run the database of the battlecore throws me this ODBC error that I do not know how to solve it and I tried several things but I could not !!

[00:05:29] SELECT ItemCount FROM GameServerInfo WHERE Number = 0[00:05:29] SQLSTATE: 42S02, Diagnosis: [Microsoft][ODBC SQL Server Driver][SQL Server]El nombre de objeto 'GameServerInfo' no es válido.

You're missing table GameServerInfo.

1. Create table GameServerInfo
PHP:
USE [MuOnline]

GO

/****** Object:  Table [dbo].[GameServerInfo] ******/

SET ANSI_NULLS ON

GO

SET QUOTED_IDENTIFIER ON

GO

CREATE TABLE [dbo].[GameServerInfo](
    [Number] [int] NOT NULL,
    [ItemCount] [bigint] NULL,
    [ZenCount] [int] NULL,
    [GmItemCount] [int] NULL,
    [AceItemCount] [int] NULL,
    [GensRankingMonth] [int] NULL,
 CONSTRAINT [PK_GameServerInfo] PRIMARY KEY NONCLUSTERED 
(
    [Number] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, 

ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]
GO


ALTER TABLE [dbo].[GameServerInfo] ADD  CONSTRAINT [DF_GameServerInfo_Number]  

DEFAULT ((0)) FOR [Number]
GO

ALTER TABLE [dbo].[GameServerInfo] ADD  CONSTRAINT [DF_GameServerInfo_ZenCount]  

DEFAULT ((0)) FOR [ZenCount]
GO

ALTER TABLE [dbo].[GameServerInfo] ADD  DEFAULT ((1)) FOR [GensRankingMonth]
GO

2. Create stored produce:
PHP:
USE [MuOnline]

GO


/****** Object:  StoredProcedure [dbo].[WZ_GetItemSerial2] ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE Procedure [dbo].[WZ_GetItemSerial2]

    @iAddSerialCount    int
AS
BEGIN    
    DECLARE @ItemSerial    bigint

    SET NOCOUNT ON
    BEGIN TRANSACTION

    UPDATE GameServerInfo 
    SET @ItemSerial = ItemCount = ItemCount+@iAddSerialCount
        
    IF ( @@error  <> 0 )
    BEGIN
        ROLLBACK TRANSACTION
        SELECT -1
    END
    ELSE
    BEGIN
        COMMIT TRANSACTION    
        SELECT @ItemSerial-@iAddSerialCount+1 AS ItemSerial
    END

    SET NOCOUNT OFF
END
GO


3. Import data:
PHP:
USE [MuOnline]

GO

INSERT [dbo].[GameServerInfo] ([Number] ,[ItemCount], [ZenCount], [GmItemCount], [AceItemCount], [GensRankingMonth]) VALUES (0, 0, 0, 0, 0, 0)

GO


Remember to change your Database Name in USE [MuOnline]
 
Newbie Spellweaver
Joined
Jan 4, 2007
Messages
18
Reaction score
0
[QUOTE-GameMoiRa;9002039] Te falta la tabla GameServerInfo.







1. Crear tabla GameServerInfo
PHP:
 USE [MuOnline] GO /****** Objeto: Tabla [dbo]. 
 [GameServerInfo] ******/
 
 SET
 
 
 
 ANSI_NULLS ON
 
 
 
 GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo]. [GameServerInfo] (
 [Número] [int]
 NO NULL, [ItemCount] [bigint] NULL,
 [ZenCount] [int] NULL,
 
 [GmItemCount] [int]
 NULL, [AceItemCount] [int] NULL, [GensRankingMonth] [int] NULL,
 CONSTRAINT [PK_GameServerInfo] PRIMARY KEY NONCLUSTERED 
 (
 [Number] ASC
 )WITH (PAD_INDEX ALLOW_PAGE_LOCKS 
 
 
 ALLOW_ROW_LOCKS IGNORE_DUP_KEY STATISTICS_NORECOMPUTE de " ON
 [PRIMARY]
 
 
 GO ALTER TABLE [dbo]. [GameServerInfo] ADD CONSTRAINT [DF_GameServerInfo_Number] 
 
 DEFAULT ((0))
 
 
 FOR [Number] GO ALTER TABLE [dbo]. [GameServerInfo] 
 
 ADD CONSTRAINT [DF_GameServerInfo_ZenCount] DEFAULT ((0))
 FOR
 
 [ZenCount] GO ALTER TABLE [dbo]. [GameServerInfo] 
 ADD DEFAULT ((1)) FOR [GensRankingMonth] GO

2. Crear productos
almacenados:

PHP:
 USE
 
 
 [MuOnline] GO /****** Objeto: StoredProcedure [dbo]. [WZ_GetItemSerial2]
 ******/ SET
 
 ANSI_NULLS ON
 
 GO SET QUOTED_IDENTIFIER ON GO CREATE Procedure [dbo]. [WZ_GetItemSerial2] 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 @iAddSerialCount int
 
 
 AS BEGIN DECLARE @ItemSerial bigint SET NOCOUNT ON BEGIN TRANSACTION UPDATE GameServerInfo SET @ItemSerial ? ItemCount ? ItemCount + @iAddSerialCount IF ( @@error <> 0 ) BEGIN ROLLBACK TRANSACTION SELECT -1 END ELSE BEGIN COMMIT TRANSACTION SELECT @ItemSerial-@iAddSerialCount+1 ASItemSerial END SET NOCOUNT OFF GO
3.

Importar datos:
PHP:
 USE
 
 [MuOnline] GO
 
 INSERT [dbo]. [GameServerInfo] ([Number] ,[ItemCount], [ZenCount], [GmItemCount], [AceItemCount], [GensRankingMonth]) VALORES (0, 0, 0, 0,
 
 
 
 
 0, 0)
 
 
 GO
Recuerde cambiar el nombre de su base de datos en USE [MuOnline][/QUOTE]

It worked perfect but now the dataserver is closed !!! when i open the gameserver battlecore
 
Last edited:
Newbie Spellweaver
Joined
Jan 4, 2007
Messages
18
Reaction score
0
it does not show any errors, they open the battelcore data and servergame well and they work, but after a while only the data server closes. without showing any error it just closes !!
 
Back
Top