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] Compiled IGCN Season 9 Server Files

Skilled Illusionist
Joined
Jun 29, 2016
Messages
341
Reaction score
14
How to solve the errors with rage fighter bloody dragon items and prickle glove?
 
Skilled Illusionist
Joined
Jun 29, 2016
Messages
341
Reaction score
14
What "errors" you have with prickle glove?
items are not working properly, they are commented in itemlist.xml, if you enable them you will see 5 errors after reload items in GS.

IGC_HarmonyOption_Smelt show errors messages, nothing found about those items inside the file.

regards.
 
Newbie Spellweaver
Joined
Sep 9, 2013
Messages
87
Reaction score
12
I will take a closer look at it today and I will try to fix it and get back to you as soon as I will have something
Can you tell me exact ID of those items because I have different version of files and other names apparently :D
Edit

I have those ID's, they are commented in those files indeed but I was unable to find them in other files S9+, seems like nobody is using those items maybe they are bugged or customs?

Have you tried to write IGC_HarmonyOption_Smelt lines for those items by yourself?
 
Last edited:
Skilled Illusionist
Joined
Jun 29, 2016
Messages
341
Reaction score
14
prickle glove is in category 0 index 38, bloody dragon items are in categorys 7,8,9,11 index 77.



I will take a closer look at it today and I will try to fix it and get back to you as soon as I will have something
Can you tell me exact ID of those items because I have different version of files and other names apparently :D
@Edit

I have those ID's, they are commented in those files indeed but I was unable to find them in other files S9+, seems like nobody is using those items maybe they are bugged or customs?

Have you tried to write IGC_HarmonyOption_Smelt lines for those items by yourself?
Yes, and error messages still there, I added items to my client, they drop fine from mobs and you can edit them with the opts like they should have (exe + socket) but for some reason they are failing in some point I couldnt realize.

regards.
 
Newbie Spellweaver
Joined
Sep 9, 2013
Messages
87
Reaction score
12
I think I know where is the issue.

You have two files: JewelOfHarmonySmelt_eng.bmd in Client
and IGC_HarmonyOption_Smelt.txt in Server

If you want to get rid of that error you need to make sure those two files are exactly the same. It seems that your Client has got information about those items in that file but server don't. So try to change your IGC_HarmonyOption_Smelt.txt in ServerFiles for example for something like:

<?xml version="1.0" encoding="utf-8"?>
<!--
// ============================================================
// == X12 MUONLINE SERVER EMULATOR
// == ============================================================
//
// STRICTLY NO COMMENTS INSIDE TAGS
-->

<HarmonySystem>
<Section ID="0" Name="Swords">
<Item Index="1" ReqLevel="4" Name="Short Sword" />
<Item Index="0" ReqLevel="4" Name="Kris" />
<Item Index="2" ReqLevel="4" Name="Rapier" />
<Item Index="4" ReqLevel="4" Name="Sword of Assassin" />
<Item Index="38" ReqLevel="4" Name="Frick Large Glove" />
</Section>

<Section ID="1" Name="Swords">
<Item Index="0" ReqLevel="4" Name="Small Axe" />
<Item Index="1" ReqLevel="4" Name="Hand Axe" />
<Item Index="2" ReqLevel="4" Name="Double Axe" />
</Section>

<Section ID="2" Name="Swords">
<Item Index="0" ReqLevel="4" Name="Mace" />
<Item Index="1" ReqLevel="4" Name="Morning Star" />
<Item Index="2" ReqLevel="4" Name="Flail" />
</Section>

<Section ID="3" Name="Axes">
<Item Index="5" ReqLevel="4" Name="Double Axe" />
<Item Index="2" ReqLevel="4" Name="Dragon Lance" />
<Item Index="6" ReqLevel="4" Name="Halberd" />
<Item Index="1" ReqLevel="4" Name="Spear" />
<Item Index="3" ReqLevel="4" Name="Giant Trident" />
</Section>

<Section ID="4" Name="Bows, Crossbows">
<Item Index="0" ReqLevel="4" Name="Short Bow" />
<Item Index="8" ReqLevel="4" Name="Crossbow" />
<Item Index="1" ReqLevel="4" Name="Bow" />
<Item Index="9" ReqLevel="4" Name="Golden Crossbow" />
<Item Index="2" ReqLevel="4" Name="Elven Bow" />
<Item Index="10" ReqLevel="4" Name="Arquebus" />
<Item Index="3" ReqLevel="4" Name="Battle Bow" />
<Item Index="11" ReqLevel="4" Name="Light Crossbow" />
</Section>

<Section ID="5" Name="Staffs">
<Item Index="0" ReqLevel="4" Name="Skull Staff" />
<Item Index="1" ReqLevel="4" Name="Angelic Staff" />
<Item Index="2" ReqLevel="4" Name="Serpent Staff" />
</Section>

<Section ID="6" Name="Shields">
<Item Index="0" ReqLevel="4" Name="Round Shield" />
<Item Index="4" ReqLevel="4" Name="Buckler" />
<Item Index="1" ReqLevel="4" Name="Horn Shield" />
<Item Index="2" ReqLevel="4" Name="Kite Shield" />
<Item Index="6" ReqLevel="4" Name="Skull Shield" />
<Item Index="10" ReqLevel="4" Name="Large Round Shield" />
<Item Index="3" ReqLevel="4" Name="Elven Shield" />
<Item Index="9" ReqLevel="4" Name="Plate Shield" />
<Item Index="7" ReqLevel="4" Name="Spiked Shield" />
</Section>

<Section ID="7" Name="Helmets">
<Item Index="5" ReqLevel="4" Name="Leather Helm" />
<Item Index="0" ReqLevel="4" Name="Bronze Helm" />
<Item Index="6" ReqLevel="4" Name="Scale Helm" />
<Item Index="8" ReqLevel="4" Name="Brass Helm" />
<Item Index="2" ReqLevel="4" Name="Pad Helm" />
<Item Index="4" ReqLevel="4" Name="Bone Helm" />
<Item Index="7" ReqLevel="4" Name="Sphinx Helm" />
<Item Index="10" ReqLevel="4" Name="Vine Helm" />
<Item Index="11" ReqLevel="4" Name="Silk Helm" />
<Item Index="12" ReqLevel="4" Name="Helm of Wind" />
<Item Index="77" ReqLevel="4" Name="Bloody Dragon Helm" />
</Section>

<Section ID="8" Name="Armors">
<Item Index="5" ReqLevel="4" Name="Leather Armor" />
<Item Index="0" ReqLevel="4" Name="Bronze Armor" />
<Item Index="6" ReqLevel="4" Name="Scale Armor" />
<Item Index="8" ReqLevel="4" Name="Brass Armor" />
<Item Index="2" ReqLevel="4" Name="Pad Armor" />
<Item Index="4" ReqLevel="4" Name="Bone Armor" />
<Item Index="7" ReqLevel="4" Name="Sphinx Armor" />
<Item Index="10" ReqLevel="4" Name="Vine Armor" />
<Item Index="11" ReqLevel="4" Name="Silk Armor" />
<Item Index="12" ReqLevel="4" Name="Armor of Wind" />
<Item Index="77" ReqLevel="4" Name="Bloody Dragon Armor" />
</Section>

<Section ID="9" Name="Pants">
<Item Index="5" ReqLevel="4" Name="Leather Pants" />
<Item Index="0" ReqLevel="4" Name="Bronze Pants" />
<Item Index="6" ReqLevel="4" Name="Scale Pants" />
<Item Index="8" ReqLevel="4" Name="Brass Pants" />
<Item Index="2" ReqLevel="4" Name="Pad Pants" />
<Item Index="4" ReqLevel="4" Name="Bone Pants" />
<Item Index="7" ReqLevel="4" Name="Sphinx Pants" />
<Item Index="10" ReqLevel="4" Name="Vine Pants" />
<Item Index="11" ReqLevel="4" Name="Silk Pants" />
<Item Index="12" ReqLevel="4" Name="Pants of Wind" />
<Item Index="77" ReqLevel="4" Name="Bloody Dragon Pants" />
</Section>

<Section ID="10" Name="Gloves">
<Item Index="5" ReqLevel="4" Name="Leather Gloves" />
<Item Index="0" ReqLevel="4" Name="Bronze Gauntlets" />
<Item Index="6" ReqLevel="4" Name="Scale Gauntlets" />
<Item Index="8" ReqLevel="4" Name="Brass Gauntlets" />
<Item Index="2" ReqLevel="4" Name="Pad Gloves" />
<Item Index="4" ReqLevel="4" Name="Bone Gloves" />
<Item Index="7" ReqLevel="4" Name="Sphinx Gauntlets" />
<Item Index="10" ReqLevel="4" Name="Vine Gloves" />
<Item Index="11" ReqLevel="4" Name="Silk Gloves" />
<Item Index="12" ReqLevel="4" Name="Gauntlets of Wind" />
</Section>

<Section ID="11" Name="Boots">
<Item Index="5" ReqLevel="4" Name="Leather Boots" />
<Item Index="0" ReqLevel="4" Name="Bronze Boots" />
<Item Index="6" ReqLevel="4" Name="Scale Boots" />
<Item Index="8" ReqLevel="4" Name="Brass Boots" />
<Item Index="2" ReqLevel="4" Name="Pad Boots" />
<Item Index="4" ReqLevel="4" Name="Bone Boots" />
<Item Index="7" ReqLevel="4" Name="Sphinx Boots" />
<Item Index="10" ReqLevel="4" Name="Vine Boots" />
<Item Index="11" ReqLevel="4" Name="Silk Boots" />
<Item Index="12" ReqLevel="4" Name="Boots of Wind" />
<Item Index="77" ReqLevel="4" Name="Bloody Dragon Boots" />
</Section>
</HarmonySystem>
 
Skilled Illusionist
Joined
Jun 29, 2016
Messages
341
Reaction score
14
I think I know where is the issue.

You have two files: JewelOfHarmonySmelt_eng.bmd in Client
and IGC_HarmonyOption_Smelt.txt in Server

If you want to get rid of that error you need to make sure those two files are exactly the same. It seems that your Client has got information about those items in that file but server don't. So try to change your IGC_HarmonyOption_Smelt.txt in ServerFiles for example for something like:

I did that, not working, items drop from mobs correctly in La Cleon.
 
Initiate Mage
Joined
May 4, 2017
Messages
1
Reaction score
0
Main Not Workning, Does not even do the error log.PC Configuration: Processor I5 - Video Card Geforce 8550GT 1 GBObs: on my PC worked , This is my brother's pc.
 
Newbie Spellweaver
Joined
Jan 1, 2018
Messages
24
Reaction score
0
Event rewards Like Chaos Castle, Blood Catle etc does not spawn in drops and in gremory case.
 
Junior Spellweaver
Joined
Dec 17, 2011
Messages
106
Reaction score
5
Added Grow Lancer, almost done master skill tree for her, wings, gens working, ruud system and few new maps from SX, SXII (don't have ss's) and customs :D :D
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums
evilek91 - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums

is cool This is SX12 ? I want to add your Skype
 
Junior Spellweaver
Joined
Jan 31, 2016
Messages
111
Reaction score
15
Hello, my problem : disconnect from server cw map warp


HU8orG - [Release] Compiled IGCN Season 9 Server Files - RaGEZONE Forums



what is problem ?
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Sep 9, 2013
Messages
87
Reaction score
12
Too many questions in one day, now it's fixed, you can pm me again.
 
Junior Spellweaver
Joined
Jan 31, 2016
Messages
111
Reaction score
15
@ianvalls90

<ServerMapping> <Server Code="0" MoveAble="0" MapNumber="30" DestServerCode="14" Name="Regular"/> <Server Code="0" MoveAble="0" MapNumber="31" DestServerCode="14" Name="Regular"/> <Server Code="0" MoveAble="0" MapNumber="34" DestServerCode="14" Name="Regular"/> <Server Code="0" MoveAble="0" MapNumber="41" DestServerCode="14" Name="Regular"/> <Server Code="0" MoveAble="0" MapNumber="42" DestServerCode="14" Name="Regular"/> <Server Code="0" MoveAble="0" MapNumber="79" DestServerCode="12" Name="Regular"/> <Server Code="0" MoveAble="0" MapNumber="92" DestServerCode="13" Name="Regular"/> <Server Code="0" MoveAble="0" MapNumber="96" DestServerCode="13" Name="Regular"/> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <Server Code="12" MoveAble="0" MapNumber="30" DestServerCode="14" Name="Market"/> <Server Code="12" MoveAble="0" MapNumber="34" DestServerCode="14" Name="Market"/> <Server Code="12" MoveAble="0" MapNumber="31" DestServerCode="14" Name="Market"/> <Server Code="12" MoveAble="0" MapNumber="41" DestServerCode="14" Name="Market"/> <Server Code="12" MoveAble="0" MapNumber="42" DestServerCode="14" Name="Market"/> <Server Code="12" MoveAble="1" MapNumber="79" DestServerCode="-1" Name="Market"/> <Server Code="12" MoveAble="0" MapNumber="92" DestServerCode="13" Name="Market"/> <Server Code="12" MoveAble="0" MapNumber="96" DestServerCode="13" Name="Market"/> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <Server Code="13" MoveAble="0" MapNumber="30" DestServerCode="14" Name="Arca"/> <Server Code="13" MoveAble="0" MapNumber="31" DestServerCode="14" Name="Arca"/> <Server Code="13" MoveAble="0" MapNumber="34" DestServerCode="14" Name="Arca"/> <Server Code="13" MoveAble="0" MapNumber="41" DestServerCode="14" Name="Arca"/> <Server Code="13" MoveAble="0" MapNumber="42" DestServerCode="14" Name="Arca"/> <Server Code="13" MoveAble="0" MapNumber="79" DestServerCode="12" Name="Arca"/> <Server Code="13" MoveAble="1" MapNumber="92" DestServerCode="-1" Name="Arca"/> <Server Code="13" MoveAble="1" MapNumber="96" DestServerCode="-1" Name="Arca"/> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <Server Code="14" MoveAble="1" MapNumber="30" DestServerCode="-1" Name="Siege"/> <Server Code="14" MoveAble="1" MapNumber="34" DestServerCode="-1" Name="Siege"/> <Server Code="14" MoveAble="1" MapNumber="31" DestServerCode="-1" Name="Siege"/> <Server Code="14" MoveAble="1" MapNumber="41" DestServerCode="-1" Name="Siege"/> <Server Code="14" MoveAble="1" MapNumber="42" DestServerCode="-1" Name="Siege"/> <Server Code="14" MoveAble="0" MapNumber="79" DestServerCode="12" Name="Siege"/> <Server Code="14" MoveAble="0" MapNumber="92" DestServerCode="13" Name="Siege"/> <Server Code="14" MoveAble="0" MapNumber="96" DestServerCode="13" Name="Siege"/> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <Server Code="120" MoveAble="0" MapNumber="30" DestServerCode="-1" Name="BattleCore"/> <Server Code="120" MoveAble="0" MapNumber="34" DestServerCode="-1" Name="BattleCore"/> <Server Code="120" MoveAble="0" MapNumber="31" DestServerCode="-1" Name="BattleCore"/> <Server Code="120" MoveAble="0" MapNumber="41" DestServerCode="-1" Name="BattleCore"/> <Server Code="120" MoveAble="0" MapNumber="42" DestServerCode="-1" Name="BattleCore"/> <Server Code="120" MoveAble="1" MapNumber="79" DestServerCode="-1" Name="BattleCore"/> <Server Code="120" MoveAble="0" MapNumber="92" DestServerCode="-1" Name="BattleCore"/> <Server Code="120" MoveAble="0" MapNumber="96" DestServerCode="-1" Name="BattleCore"/> </ServerMapping>
 
Back
Top