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!

Tutorials for EP8 Server Files

Newbie Spellweaver
Joined
Dec 12, 2011
Messages
15
Reaction score
0
Re: Tutorials for EP8 Server Files (DETAILED)

i have to copy your lib folder??
 
Elite Diviner
Joined
Sep 11, 2010
Messages
430
Reaction score
94
Re: Tutorials for EP8 Server Files (DETAILED)

@dragonrojo "And the carpet" you mean folder lol..

TG client mirrors:



Add ESTsoft to credits :p
 
Newbie Spellweaver
Joined
Jan 23, 2013
Messages
57
Reaction score
5
Re: Tutorials for EP8 Server Files (DETAILED)

a big thanks from me with your detailed tutorial akisora.
 
Junior Spellweaver
Joined
Jul 27, 2011
Messages
173
Reaction score
29
Re: Tutorials for EP8 Server Files (DETAILED)

creating Caball account? and vb must leave in promiscuous mode to allow everything?
 
Newbie Spellweaver
Joined
Jan 4, 2013
Messages
60
Reaction score
10
Re: Tutorials for EP8 Server Files (DETAILED)

can i use MG cabal Client or SIMP?
 
Joined
Mar 14, 2011
Messages
436
Reaction score
244
Re: Tutorials for EP8 Server Files (DETAILED)

SIMP cabal version info:

client_version=369
NormalClientMagicKey=543957823


How to become GM ingame:
Go to db Account create procedure

Code:
USE [Account]
GO
/****** Object:  StoredProcedure [dbo].[cabal_addgmip]    Script Date: 01/24/2013 07:13:05 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[cabal_addgmip] (@fromip VARCHAR(15), @toip VARCHAR(15) = @fromip) AS
BEGIN
    DECLARE @IP1 VARCHAR(15), @IP2 VARCHAR(15)

    SET @IP1 = 
        (
          CAST( PARSENAME( @fromIP, 4 ) AS BIGINT ) * 16777216 +
          CAST( PARSENAME( @fromIP, 3 ) AS BIGINT ) * 65536 +
          CAST( PARSENAME( @fromIP, 2 ) AS BIGINT ) * 256 +
          CAST( PARSENAME( @fromIP, 1 ) AS BIGINT )
        ) 

    SET @IP2 = 
        (
          CAST( PARSENAME( @toIP, 4 ) AS BIGINT ) * 16777216 +
          CAST( PARSENAME( @toIP, 3 ) AS BIGINT ) * 65536 +
          CAST( PARSENAME( @toIP, 2 ) AS BIGINT ) * 256 +
          CAST( PARSENAME( @toIP, 1 ) AS BIGINT )
        ) 

    IF @IP1 = @IP2
        BEGIN
        INSERT INTO cabal_GM_ip_table (fromip, toip) VALUES (@IP1, @IP2)
        END
    ELSE IF @IP1 <> @IP2
        BEGIN
        INSERT INTO cabal_GM_ip_table (fromip, toip) VALUES (@IP1, @IP2)
        END
END
SET NOCOUNT OFF

Then do exec cabal_addgmip 'YOURIP'

Then go to Server01 DB - cabal_character_table find your character change nation to 3


For MSSQL enable named pipes in MSSQL configuration for MSSQLSERVER instance, and install as Chinese_PRC (accent sensitive)

To send items ingame exec on cabalcash

Code:
exec up_AddMyCashItemByItem 'ACCOUNTID','0','SERVERID','ITEMID','ITEMOPTION','DURATIONID'
 
Last edited:
Newbie Spellweaver
Joined
Jul 18, 2011
Messages
34
Reaction score
1
Re: Tutorials for EP8 Server Files (DETAILED)

i download the centos i download 2 centos and i have this errors 2323.JPG - Tutorials for EP8 Server Files - RaGEZONE Forums 22222.JPG - Tutorials for EP8 Server Files - RaGEZONE Forums


pls help how intall and the real link
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
May 8, 2005
Messages
97
Reaction score
8
Re: Tutorials for EP8 Server Files (DETAILED)

[Thu Jan 24 2013 02:06:04.920451 3086764944]: [##ERROR##] DB ERROR(MSG) : [unixODBC][FreeTDS][SQL Server]Server is unavailable or does not exist.
[Thu Jan 24 2013 02:06:04.920497 3086764944]: [##ERROR##] DB ERROR(CODE) : 20009
[Thu Jan 24 2013 02:06:04.920511 3086764944]: [##ERROR##] DB ERROR(VAR_INFO) :
[Thu Jan 24 2013 02:06:04.920524 3086764944]: [##ERROR##] DB ERROR(SQLSTATE) : 08S01
[Thu Jan 24 2013 02:06:04.920537 3086764944]: [##ERROR##] DB ERROR(STM_TEXT) :
[Thu Jan 24 2013 02:06:04.920549 3086764944]: [##ERROR##] Database Connect Fail ((null))
[Thu Jan 24 2013 02:06:04.920574 3086764944]: [##ERROR##] check 'pDB' fail
[Thu Jan 24 2013 02:06:04.920588 3086764944]: [##ERROR##] 'LordofWarSchedule' fail (Database/InstantWar.cpp:290)


already tried everything and not able to figure out: (
 
Newbie Spellweaver
Joined
May 8, 2005
Messages
97
Reaction score
8
Re: Tutorials for EP8 Server Files (DETAILED)

i use mssql 2012
 
Newbie Spellweaver
Joined
Oct 3, 2012
Messages
48
Reaction score
5
Re: Tutorials for EP8 Server Files (DETAILED)

i have 2 error in my log maybe database problem :

1 _ EventDBAgent.log :

[##ERROR##] OnIPCEMSGetEvents fail
[##ERROR##] DB ERROR(MSG) : Incompatible data types in stream operation
[##ERROR##] DB ERROR(CODE) : 32000
[##ERROR##] DB ERROR(VAR_INFO) : Column: 3<TIMESTAMP>, datatype in operator <</>>: INT
[##ERROR##] DB ERROR(SQLSTATE) :
[##ERROR##] DB ERROR(STM_TEXT) : {call dbo.cabal_sp_ems_get_events}
Database Connect success!

2_ EventMgrSvr.log :

[##ERROR##] Failed to Get Events
[##ERROR##] 'OnIPCDBGetEventsResult' fail (Proc/GetDataFromDBA.cpp:57)
[##ERROR##] UsrMap Fail : MainCmd(3103) Ret(39:0:57) Addr(127.0.0.1) CharIdx(0)
 
Newbie Spellweaver
Joined
Jan 11, 2011
Messages
44
Reaction score
2
Re: Tutorials for EP8 Server Files (DETAILED)

is this the same to Theft cabal?


client_version=369
NormalClientMagicKey=543957823
 
Junior Spellweaver
Joined
Feb 23, 2011
Messages
135
Reaction score
4
Re: Tutorials for EP8 Server Files (DETAILED)

A question, when restore Server01 file, what is the database name I should create? Server01 or GameDB?
 
Experienced Elementalist
Joined
Jan 6, 2013
Messages
201
Reaction score
24
Re: Tutorials for EP8 Server Files (DETAILED)

Any body upload client to PirateBay!!!
 
Back
Top