• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[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
 
Initiate Mage
Joined
Mar 28, 2016
Messages
1
Reaction score
0
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
539
Reaction score
241
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 : Here

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 : Here

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