[Guide] EVENT System Works

breaklee Event not client
Complete Loading Data
GetInitializePacket(): breaklee Dirty Event : 1
[EMS] Event Information Update BroadCasting.
something is wrong with the NPC
in cabal_ems_event_table -> eventid1 -> worldindex=1 and npcid=10 change to worldindex=3 and npcid=49 i test it now :D
EDIT:// not work >-<
 
Last edited:
i'm using cabalmain 374 no check xdata, maybe can be this my error, or someplace in client?

@echo off
start CabalMain.exe husky
exit



EDIT
Stricted

i already to itbefore with my EventDataand not work, no i do it with backup provide here and work

in cabal_ems_event_table -> eventid1 -> worldindex=1 and npcid=10 change to worldindex=3 and npcid=49 i test it now :D

BUT!
Now i'm able to click in NPC Yul but haven't Event list :?:
 
Last edited:
Yep this event things is very nice play :D All of my player name gone to green color except mine :D
but my eventlist not work yet but im try to figure out...
 
Still does not work
anyone know what it does not work?


my bat file
Code:
@echo off
start cabalmain.exe husky
exit


My Log...
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
 
Last edited:
same here

Still does not work
anyone know what it does not work?


my bat file
Code:
@echo off
start cabalmain.exe husky
exit


My Log...
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
GetInitializePacket(): breaklee NOT Dirty Event : 1
 
Hi Ragezone i repair Event System its works
View attachment 125034View attachment 125035View attachment 125036View attachment 125037
bug is cabal_sp_ems_get_events
solved:

USE [EventData]
GO

/****** Object: StoredProcedure [dbo].[cabal_sp_ems_get_events] Script Date: 03/03/2013 13:55:28 ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[cabal_sp_ems_get_events]') AND type in (N'P', N'PC'))
DROP PROCEDURE [dbo].[cabal_sp_ems_get_events]
GO

USE [EventData]
GO

/****** Object: StoredProcedure [dbo].[cabal_sp_ems_get_events] Script Date: 03/03/2013 13:55:29 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO


-- =============================================
-- Author:Hefajstos
-- Create date: 2013-01-08
-- Description:
-- =============================================
CREATE PROCEDURE [dbo].[cabal_sp_ems_get_events]
AS
BEGIN

SET NOCOUNT ON

DECLARE @TimeZone INT
SET @TimeZone = DATEDIFF(hour, GETUTCDATE(), GETDATE())

SELECT
TOP 10
EventID,
EventType,
UseFlag,
DATEADD(hour, -@TimeZone, BeginDate),
DATEADD(hour, -@TimeZone, EndDate),
DATEADD(hour, -@TimeZone, LastModifiedDate),
worldIndex,
npcIndex,
Name
FROM
cabal_ems_event_table
WHERE
UseFlag= 1
ORDER BY EndDate DESC

END


GO
I still tested all Event type and repair missing tables
liked?:):

pls upload your cabalmain :)

Tapatalk 2 HD
 
revy, please share your cabalmain & language.enc, i guest you have a right cabalmain & did resolve the yul event
 
@Revy You should release here how you did it. After all you wouldn't have had it in the first place if the thread owner didn't release it...
 
Back