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!

Complete guide on how to make "Episode 7 v1"

Newbie Spellweaver
Joined
Oct 18, 2011
Messages
39
Reaction score
0
@sir, my server is OK right now but my problem is how to run the client to the other computer?
> i copy my client to the other computer that i've configure the param.ini but there's a message " Internet Disconnected"? I think the problem was i cannot connect to the database on the server or i cannot connect directly to the server.?
Please help me sir how to fix this!! thank you.
 
Custom Title Activated
Loyal Member
Joined
Mar 24, 2011
Messages
1,632
Reaction score
145
what connection you used hamachi?
 
Newbie Spellweaver
Joined
Nov 18, 2011
Messages
18
Reaction score
1
or Just use the hamachi IP put same one on Client
 
Joined
Nov 29, 2011
Messages
615
Reaction score
69
hello sir . . can i use no-ip url as login ip adress in the param.ini?

see my attactment , error while want enter the game...how to fix that...tq
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Nov 7, 2011
Messages
17
Reaction score
0
check first page, because u can't run the sever and play it on same computer,
 
Newbie Spellweaver
Joined
Oct 18, 2011
Messages
39
Reaction score
0
@guys, i've use a HAMACHI IP, in my server the connection is OK.. there is no error for my server and also for my client in my server pc. but when i copy the client to the other pc and run it, it will prompt the "Internet is disconnected".. i already change the IP in the param.ini that i get from HAMACHI IP but the same problem.! please guys help me.!!
 
Newbie Spellweaver
Joined
Dec 10, 2011
Messages
29
Reaction score
1
Joeben234 Keep it UP bro....! nice threads it is very helpful can i get your email add...in case i have to ask some serious prob. i know that your the kind of person whom i can be secured to ask things... thank you again
 
Initiate Mage
Joined
Dec 21, 2011
Messages
1
Reaction score
0
Help me About This Ill Follow The Guide on Vdeo BUt i Got Error :(

[URL="
joeben234 - Complete guide on how to make "Episode 7 v1" - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Jun 11, 2008
Messages
9
Reaction score
0
DB:SELECT GuNum, ChaNum, GuDeputy, ChaName, GuName, GuRank, GuMoney, GuIncomeMoney, GuMarkVer, GuBattleWin, GuBattleDraw, GuBattleLose, GuBattleLastTime, GuAllianceBattleWin, GuAllianceBattleDraw, GuAllianceBattleLose, GuMakeTime, GuExpireTime, GuAuthorityTime, GuAllianceSec, GuAllianceDis, GuNotice FROM viewGuildInfo
DB:42S22, NativeError:207, [Microsoft][SQL Native Client][SQL Server]Invalid column name 'GuAuthorityTime'.
[Gaea Server] Start Succeeded
[Gaea Server] ---------------
Server Update Thread Create OK
WSASocket OK
Bind OK
192.168.1.174:5502
Server Accept Thread Create OK
(Client ID:99) (192.168.1.174:5003)
============================
Session Server Connection OK
============================
SessionSndSvrInfo 192.168.1.174 CH:1
(Client ID:0) (192.168.1.174:5113)
INFO:Field Server CH(0) FIELD(0) ID(0) Connection OK
NET_MSG_BASE 1019
=======================================================
Server Start OK

I use 2 pc to log and host Sql, this happens when agent server starts and i created id using the RanManager V3.2 to test and later use another pc to connect and make char but it wont log into game, just at char screen. any ideas..?

DB:SELECT GuNum, ChaNum, GuDeputy, ChaName, GuName, GuRank, GuMoney, GuIncomeMoney, GuMarkVer, GuBattleWin, GuBattleDraw, GuBattleLose, GuBattleLastTime, GuAllianceBattleWin, GuAllianceBattleDraw, GuAllianceBattleLose, GuMakeTime, GuExpireTime, GuAuthorityTime, GuAllianceSec, GuAllianceDis, GuNotice FROM viewGuildInfo
DB:42S22, NativeError:207, [Microsoft][SQL Native Client][SQL Server]Invalid column name 'GuAuthorityTime'.
[Gaea Server] Start Succeeded
[Gaea Server] ---------------
Server Update Thread Create OK
WSASocket OK
Bind OK
192.168.1.174:5113
Server Accept Thread Create OK
============================
Session Server Connection OK

Field Server also have this error

Try To Execute this Script to Your RanGame1 DataBase

1. First Delete dbo.GuildInfo Then execute this script.
This script will add column like GuAuthorityTime
-----------------------------------------------
USE [RanGame1]
GO
/****** Object: Table [dbo].[GuildInfo] Script Date: 12/21/2011 18:47:11 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[GuildInfo](
[GuNum] [int] IDENTITY(1,1) NOT NULL,
[ChaNum] [int] NOT NULL CONSTRAINT [DF_GuildInfo_ChaNum] DEFAULT ((0)),
[GuDeputy] [int] NOT NULL CONSTRAINT [DF_GuildInfo_GuDeputy] DEFAULT ((0)),
[GuName] [varchar](33) NOT NULL CONSTRAINT [DF_GuildInfo_GuName] DEFAULT (''),
[GuNotice] [varchar](401) NOT NULL CONSTRAINT [DF_GuildInfo_GuNotice] DEFAULT (''),
[GuRank] [int] NOT NULL CONSTRAINT [DF_GuildInfo_GuRank] DEFAULT ((0)),
[GuMoney] [money] NOT NULL CONSTRAINT [DF_GuildInfo_GuMoney] DEFAULT ((0)),
[GuIncomeMoney] [money] NOT NULL CONSTRAINT [DF_GuildInfo_GuIncomeMoney] DEFAULT ((0)),
[GuMarkVer] [int] NOT NULL CONSTRAINT [DF_GuildInfo_GuMarkVer] DEFAULT ((0)),
[GuExpire] [int] NOT NULL CONSTRAINT [DF_GuildInfo_GuExpire] DEFAULT ((0)),
[GuMakeTime] [datetime] NOT NULL CONSTRAINT [DF_GuildInfo_GuMakeTime] DEFAULT (getdate()),
[GuExpireTime] [datetime] NOT NULL CONSTRAINT [DF_GuildInfo_GuExpireTime] DEFAULT ('1970-02-01'),
[GuAllianceSec] [datetime] NOT NULL CONSTRAINT [DF_GuildInfo_GuAllianceSec] DEFAULT ('1970-02-01'),
[GuAllianceDis] [datetime] NOT NULL CONSTRAINT [DF_GuildInfo_GuAllianceDis] DEFAULT ('1970-02-01'),
[GuMarkImage] [image] NOT NULL CONSTRAINT [DF_GuildInfo_GuMarkImage] DEFAULT (''),
[GuStorage] [image] NOT NULL CONSTRAINT [DF_GuildInfo_GuStorage] DEFAULT (''),
[GuAuthorityTime] [datetime] NOT NULL,
[GuAllianceBattleLose] [varchar](100) NOT NULL,
[GuAllianceBattleDraw] [varchar](100) NOT NULL,
[GuAllianceBattleWin] [varchar](100) NOT NULL,
[GuBattleLastTime] [datetime] NOT NULL,
[GuBattleLose] [varchar](50) NOT NULL,
[GuBattleDraw] [varchar](50) NOT NULL,
[GuBattleWin] [varchar](50) NOT NULL,
CONSTRAINT [PK_GuildInfo] PRIMARY KEY CLUSTERED
(
[GuNum] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY],
CONSTRAINT [IX_GuildInfo_Name] UNIQUE NONCLUSTERED
(
[GuName] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [SECONDARY]

GO
SET ANSI_PADDING OFF
--------------------------------------------
2. Second execute this script too. this is for viewGuildInfo
--------------------------------------------
USE [RanGame1]
GO
/****** Object: View [dbo].[viewGuildInfo] Script Date: 12/21/2011 18:11:02 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO

-------------------------------------------------------------------------------
-- view_GuildInfo.sql
-------------------------------------------------------------------------------

ALTER VIEW [dbo].[viewGuildInfo]
AS
SELECT dbo.GuildInfo.GuNum, dbo.GuildInfo.ChaNum, dbo.GuildInfo.GuDeputy,
dbo.ChaInfo.ChaName, dbo.GuildInfo.GuName, dbo.GuildInfo.GuNotice,
dbo.GuildInfo.GuRank, dbo.GuildInfo.GuMoney, dbo.GuildInfo.GuIncomeMoney,
dbo.GuildInfo.GuMarkVer, dbo.GuildInfo.GuExpire, dbo.GuildInfo.GuMakeTime,
dbo.GuildInfo.GuExpireTime, dbo.GuildInfo.GuAllianceSec, dbo.GuildInfo.GuAllianceDis,
dbo.GuildInfo.GuAuthorityTime, dbo.GuildInfo.GuAllianceBattleLose, dbo.GuildInfo.GuAllianceBattleDraw,
dbo.GuildInfo.GuAllianceBattleWin, dbo.GuildInfo.GuBattleLastTime, dbo.GuildInfo.GuBattleLose,
dbo.GuildInfo.GuBattleDraw, dbo.GuildInfo.GuBattleWin
FROM dbo.GuildInfo INNER JOIN
dbo.ChaInfo ON dbo.GuildInfo.ChaNum = dbo.ChaInfo.ChaNum
-----------------------------------------------------------------
HOPE THIS WILL HELP YOU!
 
Newbie Spellweaver
Joined
Mar 31, 2010
Messages
8
Reaction score
1
When I execute this query in my SQL:
USE [RanGame1]
GO
/****** Object: StoredProcedure [dbo].[sp_UserAttendLog ] Script Date: 07/17/2011 07:41:35 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER PROCEDURE [dbo].[sp_UserAttendLog ]
@nUserNum int

AS
DECLARE
@error_var int,
@rowcount_var int

SET NOCOUNT ON
Select (MSum-MS) As M, (FSum-FS) As F
From
(
Select isnull(Sum(M),0) As MSum, isnull(Sum(F),0) As FSum, isnull(Sum(MS),0) As MS, isnull(Sum(FS),0) As FS
From
(
Select ChaClass
,
Case ChaClass
When 1 Then 1
When 2 Then 1
When 256 Then 1
When 512 Then 1
Else 0
End As M
,
Case ChaClass
When 4 Then 1
When 8 Then 1
When 64 Then 1
When 128 Then 1
Else 0
End As F
,
Case ChaClass
When 16 Then
Case ChaDeleted
When 4 Then 0
Else 1
End
Else 0
End As MS
,
Case ChaClass
When 32 Then
Case ChaDeleted
When 4 Then 0
Else 1
End
Else 0
End As FS
From ChaInfo
) As t
) As tt
GO

SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER OFF
GO

I got this error:
Msg 208, Level 16, State 6, Procedure sp_UserAttendLog , Line 11
Invalid object name 'dbo.sp_UserAttendLog '.

Please help guyz...
Thankz in advance..:thumbup:
 
Graveyard Networks
Joined
Dec 19, 2005
Messages
472
Reaction score
264
im cleaning this thread, if new post with thanks, nice, posting in non english language and asking help how to setup a server. i will start infracting people. future admins should know how to read rules and follow it. im not yet done on cleaning and the next post after this with violation will get infraction.
 
Newbie Spellweaver
Joined
Dec 10, 2011
Messages
29
Reaction score
1
Service Provider:CHINA
CreateIoCompletionPort OK
INFO:SQL_ATTR_CONNECTION_POOLING OK
INFO:SQLAllocHandle OK
ERROR:SQLConnect Failed
ERROR:User db open failed
== Please wait until server stop
Stop IOCP
Stop Message Queue
Stop DataBase
Stop CFG
=======================================================
Server Stop OK
=======================================================
INFO:SQL_ATTR_CONNECTION_POOLING OK
INFO:SQLAllocHandle OK




i got that when i try to test the Agent server please help me sir

Service Provider:CHINA
CreateIoCompletionPort OK
INFO:SQL_ATTR_CONNECTION_POOLING OK
INFO:SQLAllocHandle OK
ERROR:SQLConnect Failed
ERROR:User db open failed
== Please wait until server stop
Stop IOCP
Stop Message Queue
Stop DataBase
Stop CFG
=======================================================
Server Stop OK
=======================================================
INFO:SQL_ATTR_CONNECTION_POOLING OK
INFO:SQLAllocHandle OK



its ep7 please help me in that error pleaseeeeeeeeeeeeeeeeeeee:*:
 
Initiate Mage
Joined
Dec 21, 2011
Messages
3
Reaction score
0
i have a problem, when i connect to the server, it just stays on server list. event if i wait 15minutes, maybe i should try hamachi but i dont know how . can you make a tutorial pls :blushing:
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Nov 18, 2011
Messages
18
Reaction score
1
never already fix the error hehehe
 
Last edited:
Newbie Spellweaver
Joined
Jul 27, 2007
Messages
35
Reaction score
0
joeben234 - Complete guide on how to make "Episode 7 v1" - RaGEZONE Forums


how can i fix the DxFieldInstance :: Creat HR failed error...
I already tried downloading new server files still desame.. im using windows xp sp2..
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Oct 18, 2011
Messages
39
Reaction score
0
joeben234 - Complete guide on how to make "Episode 7 v1" - RaGEZONE Forums


how can i fix the DxFieldInstance :: Creat HR failed error...
I already tried downloading new server files still desame.. im using windows xp sp2..

copy your data folder from the client to the server. and it will work.!!
 
Newbie Spellweaver
Joined
Jul 27, 2007
Messages
35
Reaction score
0
I have already created an char on may server but when i try to connect i always have the error on may agent server like this one..

(Client ID:100) (192.168.1.105:2666)
DB:Exec sp_UserAttendLog 1
DB:42000, NativeError:2812, [Microsoft][SQL Native Client][SQL Server]Could not find stored procedure 'sp_UserAttendLog'.
ERROR:Read Attend list failed
ERROR:100 Invalid Gaea ID
ERROR:CNetUser::CloseClient client already closed 0
(Client ID:101) (192.168.1.105:2699)
DB:Exec sp_UserAttendLog 1
DB:42000, NativeError:2812, [Microsoft][SQL Native Client][SQL Server]Could not find stored procedure 'sp_UserAttendLog'.
ERROR:Read Attend list failed

and i may char failed to process..
 
Newbie Spellweaver
Joined
Dec 10, 2011
Messages
29
Reaction score
1
how about this error sir....... no idea please throw some help please Agentserver ERROR - Complete guide on how to make "Episode 7 v1" - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Back
Top