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!

Problems with -cypher tutorial-

Newbie Spellweaver
Joined
Jun 16, 2010
Messages
10
Reaction score
0
HELLO GUYS... I TRY TO OPEN PRIVATE SERVER OF DEKARON BUT I HAVE ONE BIG PROBLEM...
WHEN I OPEN ALL SERVERDEKARON.EXE IT CHARGE SOME FILE... AND GIVE ME THIS ERROR

sp_siege_info_r call fail

HOW I CAN RESOLVE THIS?

PLEASE GIVE ME SUPPORT :D

RESOLVED...
OPEN QUERY ANALIZER AND ON CHARACTER DB WRITE THIS

USE [Character]
GO

/****** Object: UserDefinedFunction [dbo].[FN_BinDateToDateTime] Script Date: 01/10/2010 19:35:14 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO




/************************************************** ****************************
이 름 : dbo.FN_BinDateToDateTime
설 명 : Binary Date를 DateTime 형식으로 반환한다.
반환값 :
수정내역:
Ver Date Author Description
--------- ---------- --------------- ------------------------------------
1.0 2006-05-05 Han Ji Wook 1. 초기생성
2.0 2010-01-10 ADM-Cyrax/Darth Nerd
************************************************** ****************************/
ALTER FUNCTION [dbo].[FN_BinDateToDateTime] (
@i_bin_time binary(4)
) RETURNS datetime
AS
BEGIN
DECLARE @v_datetime datetime
DECLARE @v_strAux varchar(20)
DECLARE @v_strtime varchar(20)
SET @v_strAux = CAST(CAST(@i_bin_time as int) as varchar(20))
IF len(@v_strAux) = 7
SELECT @v_strtime = '20100' + CAST(CAST(@i_bin_time as int) as varchar(20))
ELSE
IF len(@v_strAux) = 8
SELECT @v_strtime = '2010' + CAST(CAST(@i_bin_time as int) as varchar(20))
ELSE
SELECT @v_strtime = '201' + CAST(CAST(@i_bin_time as int) as varchar(20))


SELECT @v_strtime = SUBSTRING(@v_strtime,1,4)
+'-'+SUBSTRING(@v_strtime,5,2)
+'-'+SUBSTRING(@v_strtime,7,2)
+' '+SUBSTRING(@v_strtime,9,2)
+':'+SUBSTRING(@v_strtime,11,2)
SELECT @v_datetime = CAST(@v_strtime as datetime)
RETURN @v_datetime
END
 
Last edited:
Newbie Spellweaver
Joined
Jun 16, 2010
Messages
10
Reaction score
0
but i have another problem!
when the server is online... i open DKLauncher... but it not display my server and i not connect!

1)All .ini server file i set 127.0.0.1 exept login... i insert my hamachi ip...with hex editor i modify 2 entries on DKLauncher.exe and 14 entries on Data.pak - i inserti my hamachi ip...

2) All .ini server file i set hamachi ip... i insert my hamachi ip...with hex editor i modify 2 entries on DKLauncher.exe and 14 entries on Data.pak - i inserti my hamachi ip...

Step 1 cant display server list
Step 2 cant display server list

p.s. i configure list.txt of webman and when i open webman i check web??? (in red text) and when i open client it say me the user connect to my ip hamachi and logged out...

tnx 1000 guys - HELP ME -
 
Back
Top