
Originally Posted by
LegendaryDev
Version 45 and 46 are not compatible with the server files.
Edit:
I worked today on those files and got to this point
Now I need some of the missing tables if anyone have those from the list, please share them.
As I see you are using ruSRO client or other Data files?
This is _EventRamadanVoucher table, but it need other tables as well get it work:
PHP Code:
USE [BR_SHARD_L]
GO
/****** Object: Table [dbo].[_EventRamadanVoucher] Script Date: 7/18/2016 20:20:24 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[_EventRamadanVoucher](
[CharID] [int] NOT NULL,
[UserJID] [int] NOT NULL,
[PayCount] [varchar](256) NOT NULL,
CONSTRAINT [PK__EventRamadanVoucher] PRIMARY KEY CLUSTERED
(
[CharID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO