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!

Making your own Private Grand Chase Server v2

Newbie Spellweaver
Joined
Mar 9, 2011
Messages
42
Reaction score
1
@ikhoc
lol error 96 is easy to fix just click this link delete your game guard or hackshield watever its called and replace it with this


tell me if i helped

---------- Post added 06-07-11 at 12:46 AM ---------- Previous post was 05-07-11 at 11:56 PM ----------

weres the gc season 1??
p.s Bump
 
Newbie Spellweaver
Joined
May 22, 2012
Messages
7
Reaction score
0
I saw this Post
gg files:

But the Link works anymore.
And i have the Problem that no 6 Windows are Open.
It'll open 4 Windows and MsgRouter & UDPRelay don't open.
If you want i can show you the Configurations..
 
Joined
Aug 14, 2009
Messages
1,097
Reaction score
134
I saw this Post

But the Link works anymore.
And i have the Problem that no 6 Windows are Open.
It'll open 4 Windows and MsgRouter & UDPRelay don't open.
If you want i can show you the Configurations..

You know, shining isn't providing support...
Show me the configs.
And you should come check my guide out.

does anyone know how i could insert new skills, new items, add GP or CP, and what so evers?

Answered. Impossible.
 
Newbie Spellweaver
Joined
May 22, 2012
Messages
7
Reaction score
0
I think those Files are not Complete, because i did all Configs and do the Configs in Database, but Gameserver.exe and MsgRouterlist don't start. Any one can help me?
Here are my Configs:

Gameserver/odbc_internal.dsn:

[ODBC]
DRIVER=SQL Server
DATABASE=gc
WSID=xmlab-coolcopy
APP=Microsoft Data Access Components
SERVER=***-PC\sqlexpress
Description=Internal
UID=sa
PWD=*** (My Password of SQL)

Gameserver/odbc_stat.dsn:

[ODBC]
DRIVER=SQL Server
DATABASE=stat
WSID=xmlab-coolcopy
APP=Microsoft Data Access Components
SERVER=***-PC\sqlexpress
Description=Internal
UID=sa
PWD=***

Center/odbc_internal.dsn:

[ODBC]
DRIVER=SQL Server
DATABASE=gc
WSID=xmlab-coolcopy
APP=Microsoft Data Access Components
SERVER=***-PC\sqlexpress
Description=Internal
UID=sa
PWD=***

Center/odbc_main.dsn:

[ODBC]
DRIVER=SQL Server
DATABASE=gc
WSID=xmlab-coolcopy
APP=Microsoft Data Access Components
SERVER=***-PC\sqlexpress
Description=Internal
UID=sa
PWD=***

And Gameserver/Config_server.lua:

fr = GetFailRate()
fr:SetWriteToDB( false )

SimLayer = GetSimLayer()
SimLayer.m_uiNickNameAvailable = 15
SimLayer.m_dwShutdownTimeLimit = 60 * 1000 -- Á¾·á½Ã db ó¸® ´ë±â½Ã°£ : 1ºÐ.
SimLayer.m_iMaxGamePoint = 999999
SimLayer.m_dwIndigoLevel = 21
SimLayer.m_bCheckIndigoTicket = true --¿ë»çÀÇ ¼¶ ÀÔÀå±Ç üũ ¿©ºÎ
SimLayer.m_bRecommendEnable = false --ÃßõÀÎ ½Ã½ºÅÛ
SimLayer.m_bRecommendKREnable = false
SimLayer.m_bWriteClientInfo = true -- Ŭ¶óÀ̾ðÆ® »ç¾ç Á¶»ç
SimLayer.m_bGCPointSwitch = true -- Æ÷ÀÎÆ® ½Ã½ºÅÛ »ç¿ë¿©ºÎ(false = »ç¿ë¾ÈÇÔ)
SimLayer.m_dwGameStartWaitTime = 40000 -- °ÔÀÓ ·Îµù ´ë±â ½Ã°£

--Calendar system( gcpoint )
SimLayer.m_dwAccUpdateTime = 60 * 1000 -- ´Þ·Â °»½Å ½Ã°£ ms
SimLayer.m_nAttendTime = 90 -- Ãâ¼® ÀÎÁ¤ ½Ã°£, ´ÜÀ§:ºÐ
SimLayer.m_nGCPointDay = 100 -- ÀÏÀÏ Ãâ¼®½Ã Áö±ÞµÇ´Â Áö¾¾Æ÷ÀÎÆ®(ÀÓ½Ã)
SimLayer.m_nGCPointWeek = 100 -- ÁÖ°³±Ù½Ã Áö±ÞµÇ´Â Áö¾¾Æ÷ÀÎÆ®(ÀÓ½Ã)

-- »óÇÏÀÌ µå¶ø Àû¿ë °¡ÀÔÀÏ.
SimLayer:SetSHAdhustTime( 2007, 08, 07, 09, 30 )
--SimLayer:AddTypeFlag( KGSSimLayer.ST_AHNHS_ON + KGSSimLayer.ST_AHNHS_KILL )
--½Å±Ô À¯Àú °­Á¦.
SimLayer:SetForceNewUser( true, 2020, 4, 30 )
SimLayer:ClearForceMode()
SimLayer:AddForceMode( 26 ) -- Quest Zero
SimLayer:AddForceMode( 29 ) -- tutorial

--SimLayer:SetBillingType( KGSSimLayer.BT_NCASH )

SimLayer:AddTypeFlag( KGSSimLayer.ST_DEBUG_AUTH ) -- pass authentication processing
SimLayer:AddTypeFlag( KGSSimLayer.ST_INTERNAL_TESOP)
--SimLayer:AddTypeFlag( KGSSimLayer.ST_BROADCASTING )
NetLayer = GetNetLayer()
NetLayer.m_usPortMaster = 9400
NetLayer.m_usUdpPort = 9401

NetLayer:AddURServerAddress( GetLocalIP(), 9600 )
NetLayer:AddTRServerAddress( GetLocalIP(), 9700 )

CenterProxy = GetCenterProxy()
CenterProxy:SetRemoteAddress( GetLocalIP(), 9500 )

DBLayer = GetDBLayer()
DBLayer:Init_ODBC( 'odbc_internal.dsn', 'odbc_stat.dsn' )
DBLayer:Init( 3 )

ChannelManager = GetChannelManager()
ChannelManager:SetBroadCastingTime( 10000, 2000, 5000 ) -- Channel, Room, User
SetGuildBroadCastingTime( 7000, 60000 ) -- Member, DB Sync.

function msg( m )
ChannelManager:Send_NotMsg( m )
print( m )
end

Server = GetGameServer()

SetHackingProtectionMode( true, true, 30000 )

--[[
Server:ClearDiscountEventItem()
Server:SetDiscountEvent( true )
Server:AddDiscountEventItem( 2520 )
--]]

if( SimLayer:GetBillingType() == KSimLayer.BT_NCASH ) then -- ºê¶óÁú ºô¸µÀÌ ¼³Á¤µÈ °æ¿ì

Init_NCashBillingInfo( '127.0.0.1', 9500, 5, 4, 'odbc_internal.dsn' )
NCashBill = GetNCashBillingManager()
NCashBill:Init( 3 )

end

Adv = KPCBangAdvantage()
Server = GetGameServer()
Adv:EnablePCBang( true )
for itemid = 50530, 50870, 10 do -- ¿¤¸®½Ã½º, ¸®¸£, ¾Æ¸£¸Þ, ¶ó½º, ¶óÀ̾ð pc¹æ º¹À弼Ʈ
if( itemid ~= 50590 and itemid ~= 50660 and itemid ~= 50730 and itemid ~= 50800 and itemid ~= 50870 ) then
Adv:AddNormal( itemid )
end
end

Adv:SetMsg( 'str_08' )
Server:SetSelfPCBangAdv( Adv, '__odbcGCPCBang' ) -- GC PC¹æ ¼³Á¤

DBLayer:AddODBC( '__odbcGCPCBang', 'odbc_internal.dsn' )

log( 0 ) -- loglevel : 0 ~ 2
Server:ClearChecksum()
Server:AddChecksum( 0 ) -- 051108. 98¿¡¼­´Â Ŭ¶óÀ̾ðÆ®°¡ üũ¼¶À» Á¦´ë·Î ±¸ÇÏÁö ¸øÇÑ´Ù!
 
Newbie Spellweaver
Joined
Nov 22, 2009
Messages
47
Reaction score
3
I think those Files are not Complete, because i did all Configs and do the Configs in Database, but Gameserver.exe and MsgRouterlist don't start. Any one can help me?
Here are my Configs:

It's been awhile since I've took time for this type of development, but sure.. I'll give it a shot!
Now, first things first.. Ya ODBC format.


Here is the config I use for my Internal and Main ODBC files.
Code:
[ODBC] 
DRIVER=SQL Server 
UID=******
Network=DBMSSOCN
DATABASE=gc 
WSID=xmlab-coolcopy 
APP=Microsoft Data Access Components 
SERVER=******\SQLEXPRESS
Description=Internal 
PWD=******


Next up if the stat ODBC files.
Code:
[ODBC] 
DRIVER=SQL Server 
UID=******
Network=DBMSSOCN
DATABASE=stat
WSID=xmlab-coolcopy 
APP=Microsoft Data Access Components 
SERVER=******\SQLEXPRESS
Description=Internal 
PWD=******

I also believe that these files are case sensitive too, so if you have lower case in the place of upper case or the reverse then you will run into snags. (Not 100% sure on them being case sensitive, but I THINK they are.)


Now for the CS.lua;
Code:
Init_NCashBillingInfo( '127.0.0.1', 9500, 5, 4, 'odbc_internal.dsn' )

Now, are you sure you've used this IP in all instances needed?
Double check your 'ConnectStatusDB', 'MsgRouterList', and 'MsgServerList' all the IP addresses in these tables should be the same.

And this is more of a personal twitch of mine, but I'm not a big fan of '127.0.0.1' I would instead use your internal IP, this can be seen in your 'ipconfig' CMD prompt, and put that into every IP instance instead of '127.0.0.1'.

-----------------------------------------------------

If you are still getting these problems after checking over all your current formats and inputs then you may wish to check your most recent HTML log file for the servers that are not staying open for you.

You can find the HTML log files inside the log folders of the respected server folders. Just take a looks at the latest HTML log, and you may be able to find out the problem yourself and fix it, if not post a pic or even the log file and we'll be able to help you out more.
 
Initiate Mage
Joined
Jul 14, 2012
Messages
1
Reaction score
0
-.- The DataBase Not Content dbo.Characters

-.- The DataBase Not Content dbo.Characters / Suppose to be colored -.-
 
Initiate Mage
Joined
Mar 1, 2014
Messages
1
Reaction score
0
After the anti-hacking thing pops up, it dissappears randomly and grandchase doesn't start...
 
Initiate Mage
Joined
May 11, 2014
Messages
1
Reaction score
0
is there any server client for this one?
i cant find it..
can someone link it for me..

thanks in advance :)
 
Initiate Mage
Joined
Dec 24, 2013
Messages
1
Reaction score
0
is there any server client for this one?
i cant find it..
can someone link it for me..

thanks in advance :)

Sorry, I kind of misunderstood exactly what your trying to "Seek"..

A Game-Client ? Server Files ? Source Code?

?
 
Newbie Spellweaver
Joined
Mar 6, 2015
Messages
17
Reaction score
1
i did all things.. the serverfiles's 6 window is running perfect
i need the client.. what client should i use?
tell me..plz... thanks very very very much..
 
Newbie Spellweaver
Joined
Aug 13, 2015
Messages
5
Reaction score
0
this is my problem :/

my ip isn't 25.28.233.62
i have already edit the config.lua
 
Back
Top