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 Season 9.5 (src-x9.5 9.5.1.15) SRC (April/2016)

Joined
Feb 4, 2014
Messages
962
Reaction score
36
This source code represents our internal version 9.5.1.15 Released 04/2016
Change Log :D

[+][S9] General remake of Prohibited Symbols System (IGC_ProhibitedSymbols.xml)
[+][S9] General remake of Monster Group Regen System (IGC_MonsterGroupRegen.xml)
[+][S9] Added Gens Ranking Reward Month refresh for Gens Ranking Refresh option
[+][S9] Modified text of selection of lang bits (English.xml -> 132, 133, 141, 144, 147, 299, 322, 511)
[+][S9] Freed up lang bit 556, it is not used not (English.xml)
[+][S9] Added new Event Bag load to file (ItemBagScript.lua)
[+][S9] Renamed file name Monster_(561)_Medusa.xml to Event_Monster_(561)_Medusa.xml
[+][S9] Added new option to file (IGC_SkillSettings.ini -> CanDarkWizardUseSkillsWhileTeleport)
[!][S9] Fixed default Chaos machine rates for Devil Square Invitation mix (IGC_ChaosBox.ini)
[!][S9] Fixed file configuration (IGC_MonsterList.xml -> Monster Index 689 -> MoveRange changed from 1 to 0)
[!][S9] Fixed Blood Castle event boss monster spawn issue
[!][S9] Fixed Sceptor Skill attack range
[!][S9] Fixed PK Level increase in Battle Map when enemy gets killed by Muun
[!][S9] Fixed minor issues with Raklion Hatchery even monsters spawn
[!][S9] Fixed Chaos Machine socket rates not being applied to Exc Socket Items
[!][S9] Fixed ability to join guild of different Gens trough Guild Matching System
[!][S9] Fixed ability to purchase and use selection of Master Scrolls by specified character classes
[!][S9] Fixed improper configuration of Quest Script (Quest_Reward_Ep19.lua)
[!][S9] Fixed rare scenario of Game Server crash
[!][S9] Fixed Game Master sign being applied in case GM Expiry Date passed but character code being set to 8 or 32 (visual)
[!][S9] Fixed Data Server crash

IMPORTANT: Update 9.5.1.15 reqires Microsoft Redistributable Visual Studio Package x64 - Update 2 -
 
Elite Diviner
Joined
Apr 4, 2011
Messages
464
Reaction score
69
Emu has the 9.2 release if i'm not mistaken with bugs? This is the 9.5?

Doubt IGCN would release broken files, even if it is free
 
Initiate Mage
Joined
Jan 22, 2017
Messages
6
Reaction score
0
pugixml.cpp
Severity Code Description Project File Line Column Suppression StateError C1083 Cannot open source file: '..\..\..\Libraries\Shared_VS15\pugixml\1.4\pugixml.cpp': No such file or directory IGC.ConnectServer E:\ 1 1

boost/shared_ptr.hpp
Severity Code Description Project File Line Column Suppression StateError C1083 Cannot open include file: 'boost/shared_ptr.hpp': No such file or directory IGC.DataServer e:\ 52 1

sha.h
Severity Code Description Project File Line Column Suppression StateError C1083 Cannot open include file: 'sha.h': No such file or directory IGC.GameServer e:\ 49 1
 
Experienced Elementalist
Joined
Aug 14, 2014
Messages
203
Reaction score
176
pugixml.cpp
boost/shared_ptr.hpp
sha.h

Project Visual Studio 2015 x64 v140
Libraries
Boost (boost/shared_ptr.hpp):
INIparser (iniparser.h):
Cryptopp (sha.h):
pugiXML parser:
Visual Leak Detector :
 
Junior Spellweaver
Joined
Dec 27, 2015
Messages
101
Reaction score
3
This version has no Grow Lancer, right?

 
Initiate Mage
Joined
Sep 24, 2015
Messages
97
Reaction score
35
charge the sources with the already assembled libraries,please.
 
Junior Spellweaver
Joined
Dec 27, 2015
Messages
101
Reaction score
3
* Is it stable like the muEmu 8.2?
* Which to use Visual Studio Community 2015 or Visual Studio Enterprise 2015 or Visual Studio Professional 2015?
 
Last edited:
Initiate Mage
Joined
Sep 24, 2015
Messages
97
Reaction score
35
* Is it stable like the muEmu 8.2?
* Which to use Visual Studio Community 2015 or Visual Studio Enterprise 2015 or Visual Studio Professional 2015?

Muemu 8.3 it is stable (real files X-TEAM) Free
IGCN 9.2 it is stable Free
Muemu 9.2 it is stable (real files IGCN) but you pay
 
Initiate Mage
Joined
Apr 4, 2015
Messages
45
Reaction score
59
I have it all came together and run well, but when I go to the character passes 5 seconds Disconnects, any ideas anyone?
 
Evolution Team
Joined
Apr 26, 2014
Messages
634
Reaction score
382
possible checksum or TickCount not correct in protocol 0x02
 
Joined
Mar 15, 2006
Messages
451
Reaction score
285
Code:
				CAttackMsg* pAtt = m_Queue.front();
				m_Queue.pop();

				if(pAtt)
				{
					m_LastFrameAttack = true;
					m_Obj->m_LastAttackTime = TickCount;
					pAtt->Process();
					delete pAtt; [B]// nie wiem juz co robic ^. Kurde to jest przypadek tak specyficzny. Przecieї pop() idzie niemal w tym samym monencie co front(). Musiaіoby w tym samym momencie w obu w№tkach wywoіaж front().... Sytuacja 1 na milion, nie wiem czemu tak sie dzieje...[/B]
				}
				else{
					throw std::exception("[ANTI_HACK] Attack queue: pAtt == 0");
				}

Who can explain this comment?
 
Initiate Mage
Joined
Jul 18, 2015
Messages
51
Reaction score
5
build error :
1>c1xx : fatal error C1083: Cannot open source file: '..\..\..\Libraries\Shared_VS15\pugixml\1.4\pugixml.cpp': No such file or directory

how to fix ?
 
Back
Top