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] Season XI (Server+Full Client)

Junior Spellweaver
Joined
Feb 4, 2017
Messages
119
Reaction score
14
I look forward to the new version soon
 
Last edited:
Newbie Spellweaver
Joined
Jul 24, 2015
Messages
43
Reaction score
0
I can not add a jewels to the Season 8 Wing (Devil Wing and Angel Wing), Please help me !
 
Experienced Elementalist
Joined
Sep 25, 2012
Messages
292
Reaction score
26
Someone PLZzzz telme how to fix IGCN Death Stab Visual Wind efect BUG!! HELP
 
Skilled Illusionist
Joined
Mar 27, 2013
Messages
305
Reaction score
9
7MHkzLE - [Release] Season XI (Server+Full Client) - RaGEZONE Forums


FAt7G7J - [Release] Season XI (Server+Full Client) - RaGEZONE Forums
Pleae share me: quangsangcc@gmail.com
Thanks
 

Attachments

You must be registered for see attachments list
Initiate Mage
Joined
Mar 28, 2016
Messages
1
Reaction score
0
Server S12Ep2 Files problem:

01-New Map No Monster Data
02-No S12Ep2 client

Fixed DataServer DataBase Error
Server Files:

Cracked + DataBase S13-P1-2:

Thanks you much "tranht17":love:
-------------------------------------------------------------------------------------------------------------

View attachment 162400View attachment 162401View attachment 162402
Second Link is down :(
 
Custom Title Activated
Loyal Member
Joined
Apr 6, 2007
Messages
1,806
Reaction score
483
DS Event BC Error (How fix?)
SQLSTATE: 42000, Diagnosis: [Microsoft][ODBC SQL Server Driver][SQL Server] IGC_GremoryCase_AddItem, Specified too many parameters.
Well the error says 'it has too many parameters'....so i would check the database and compare the tables with the parameters sent to sql.

 
Experienced Elementalist
Joined
Dec 30, 2004
Messages
205
Reaction score
186
I can not solve, please help me!! thanks

Upload L.S.T. S12-2 Server testing....~~~~~
Hi, I can help you, but I need your Log file with errors (DataServer/Log_Sql/...SQL_DataServer.log)
Ok?!!
 
Joined
Oct 6, 2010
Messages
538
Reaction score
240
hi, i can help you, but i need your log file with errors (dataserver/log_sql/...sql_dataserver.log)
ok?!!

run BattleCore DS error lack "[Microsoft][ODBC SQL Server Driver][SQL Server]Could not find the stored procedure'IGC_ArcaBattleProcInsert'。"

DS Normal LOG :

Thanks you much ^_^
 
Last edited:
Newbie Spellweaver
Joined
Nov 28, 2008
Messages
22
Reaction score
0
run BattleCore DS error lack "[Microsoft][ODBC SQL Server Driver][SQL Server]Could not find the stored procedure'IGC_ArcaBattleProcInsert'。"

DS Normal LOG :

Thanks you much ^_^

run this in sql

USE [MuOnline]
GO
/****** Object: StoredProcedure [dbo].[IGC_ArcaBattleProcInsert] Script Date: 19/02/2018 08:17:59 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER procedure [dbo].[IGC_ArcaBattleProcInsert]
@nProcState tinyint
as
BEGIN

DECLARE return int
SET return = 0
Set nocount on

IF NOT EXISTS ( SELECT Proc_State FROM IGC_ARCA_BATTLE_PROC_STATE WITH ( READUNCOMMITTED ) )
BEGIN
begin transaction
INSERT INTO IGC_ARCA_BATTLE_PROC_STATE (Proc_State) VALUES ( @nProcState )
END
ELSE
begin transaction
UPDATE IGC_ARCA_BATTLE_PROC_STATE SET Proc_State = @nProcState

IF ( @@Error <> 0 )
BEGIN
rollback transaction
SET return = -1
SELECT return
END
ELSE
BEGIN
commit transaction
SELECT return
END
END
 
Back
Top