Blackrouge Login server Connection

01/08/2012 15:29 ✗EpicSoul✗#1
So iv been trying to get the br files working for like a day now. iv fixed all the visible errors (regions,events,procedures,schedules,etc) and still i get c7

List of things i tried
-cert what came with the release
-vsro cert
-chcert
-changing shard services
-changing locals(content id) (22,38,37)
-changing connection types(hamachi,local,sub-domain)

[Only registered and activated users can see links. Click Here To Register...]


but still no progress and stuck at login screen.

could someone help me please ?
01/08/2012 17:09 kanka5252#2
help me xd
01/08/2012 17:35 Shifty*#3
Easy, run this querry;
note: change BR_AccountTest to your account db name.
Code:
USE [BR_AccountTest]
GO
/****** Object:  StoredProcedure [dbo].[_CertifyTB_User]    Script Date: 12/28/2011 18:22:31 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- 4. ALTER PROCEDURE _CertifyTB_User
ALTER PROCEDURE [dbo].[_CertifyTB_User]
	@szUserID	varchar(25),
	@szPassword	varchar(50)
AS



	if exists ( 
		select 
			'' 
		from _Punishment with ( nolock )
		where SerialNo = ( 
			select 
				max( SerialNo ) from _BlockedUser with ( nolock ) 
			where UserJID = ( SELECT JID FROM TB_User WHERE StrUserID = @szUserID ) and 
				Type = 99 and getdate() between timeBegin and timeEnd ) )
	begin
		select convert( tinyint, 3), ( select JID from TB_User where StrUserID = @szUserID ), convert( tinyint, 0), convert( tinyint, 0)

		return
	end
	if exists (select 1 from TB_User where StrUserID=@szUserID and block=1 and expired>=GETDATE())
	begin
		select convert( tinyint, 3), ( select JID from TB_User where StrUserID = @szUserID ), convert( tinyint, 0), convert( tinyint, 0)
		return
	end
	declare @nUserJID int
	declare @sec_primary tinyint
	declare @sec_content tinyint

	set	@nUserJID		= 0
	set	@sec_primary		= 0
	set	@sec_content		= 0

-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-- ?????? ?????????? ???????? ??????
	declare @ApplyType			tinyint
	declare @AccPlayTime 			int        
	declare @LatestUpdateTime_ToPlayTime 	int        	

	set @ApplyType 				= 0		-- ?????? ?????????? ???????? ?????????? ???????? ???? ?????????? ???? ??????
	set @AccPlayTime 			= 0        
	set @LatestUpdateTime_ToPlayTime 	= 0  
-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

-- ?????? ?????? ???? ????
--	select @nUserJID = JID, @sec_primary = sec_primary, @sec_content = sec_content from TB_User

	SELECT @nUserJID = JID, @sec_primary = sec_primary, @sec_content = sec_content
	, @AccPlayTime = AccPlayTime, @LatestUpdateTime_ToPlayTime = LatestUpdateTime_ToPlayTime FROM TB_User
	WHERE StrUserID = @szUserID and password = @szPassword 
	--and AT=1

-- Edit For fatigue system
-- Please, fill value to @ApplyType ( 1 : TEEN USER , 2 : ADULT USER ) from your web database
-- ex ) @ApplyType = exec web.proc.certify

	if( @nUserJID = 0 or @nUserJID is null or @@error <> 0 or @@rowcount = 0)
	begin
-- ?????? ?????? ???? ????
		select convert( tinyint, 1), convert( int, 0), convert( tinyint, 0), convert( tinyint, 0)
		--select convert( tinyint, 1), convert( int, 0), convert( tinyint, 0), convert( tinyint, 0), convert(tinyint, 0), convert(int, 0), convert(int, 0)
		return
	end
	if( exists( select Type from _BlockedUser where UserJID = @nUserJID and Type = 1 and getdate() between timeBegin and timeEnd))
	begin
-- ?????? ?????? ???? ????
		select convert( tinyint, 3), @nUserJID, convert( tinyint, 0), convert( tinyint, 0)
		--select convert( tinyint, 3), @nUserJID, convert( tinyint, 0), convert( tinyint, 0), convert(tinyint, 0), convert(int, 0), convert(int, 0)
		return
	end
-- ?????? ?????? ???? ????
select convert(tinyint, 0), @nUserJID, @sec_primary, @sec_content
	--select convert(tinyint, 0), @nUserJID, @sec_primary, @sec_content, @ApplyType, @AccPlayTime, @LatestUpdateTime_ToPlayTime
	return
I'm almost able to enter ingame, but when I create a char it says invaild char name. If you know why please share :)
01/08/2012 17:41 mertcoskun#4
Quote:
Originally Posted by Shifty* View Post
Easy, run this querry;
note: change BR_AccountTest to your account db name.
Code:
USE [BR_AccountTest]
GO
/****** Object:  StoredProcedure [dbo].[_CertifyTB_User]    Script Date: 12/28/2011 18:22:31 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

-- 4. ALTER PROCEDURE _CertifyTB_User
ALTER PROCEDURE [dbo].[_CertifyTB_User]
	@szUserID	varchar(25),
	@szPassword	varchar(50)
AS



	if exists ( 
		select 
			'' 
		from _Punishment with ( nolock )
		where SerialNo = ( 
			select 
				max( SerialNo ) from _BlockedUser with ( nolock ) 
			where UserJID = ( SELECT JID FROM TB_User WHERE StrUserID = @szUserID ) and 
				Type = 99 and getdate() between timeBegin and timeEnd ) )
	begin
		select convert( tinyint, 3), ( select JID from TB_User where StrUserID = @szUserID ), convert( tinyint, 0), convert( tinyint, 0)

		return
	end
	if exists (select 1 from TB_User where StrUserID=@szUserID and block=1 and expired>=GETDATE())
	begin
		select convert( tinyint, 3), ( select JID from TB_User where StrUserID = @szUserID ), convert( tinyint, 0), convert( tinyint, 0)
		return
	end
	declare @nUserJID int
	declare @sec_primary tinyint
	declare @sec_content tinyint

	set	@nUserJID		= 0
	set	@sec_primary		= 0
	set	@sec_content		= 0

-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-- ?????? ?????????? ???????? ??????
	declare @ApplyType			tinyint
	declare @AccPlayTime 			int        
	declare @LatestUpdateTime_ToPlayTime 	int        	

	set @ApplyType 				= 0		-- ?????? ?????????? ???????? ?????????? ???????? ???? ?????????? ???? ??????
	set @AccPlayTime 			= 0        
	set @LatestUpdateTime_ToPlayTime 	= 0  
-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

-- ?????? ?????? ???? ????
--	select @nUserJID = JID, @sec_primary = sec_primary, @sec_content = sec_content from TB_User

	SELECT @nUserJID = JID, @sec_primary = sec_primary, @sec_content = sec_content
	, @AccPlayTime = AccPlayTime, @LatestUpdateTime_ToPlayTime = LatestUpdateTime_ToPlayTime FROM TB_User
	WHERE StrUserID = @szUserID and password = @szPassword 
	--and AT=1

-- Edit For fatigue system
-- Please, fill value to @ApplyType ( 1 : TEEN USER , 2 : ADULT USER ) from your web database
-- ex ) @ApplyType = exec web.proc.certify

	if( @nUserJID = 0 or @nUserJID is null or @@error <> 0 or @@rowcount = 0)
	begin
-- ?????? ?????? ???? ????
		select convert( tinyint, 1), convert( int, 0), convert( tinyint, 0), convert( tinyint, 0)
		--select convert( tinyint, 1), convert( int, 0), convert( tinyint, 0), convert( tinyint, 0), convert(tinyint, 0), convert(int, 0), convert(int, 0)
		return
	end
	if( exists( select Type from _BlockedUser where UserJID = @nUserJID and Type = 1 and getdate() between timeBegin and timeEnd))
	begin
-- ?????? ?????? ???? ????
		select convert( tinyint, 3), @nUserJID, convert( tinyint, 0), convert( tinyint, 0)
		--select convert( tinyint, 3), @nUserJID, convert( tinyint, 0), convert( tinyint, 0), convert(tinyint, 0), convert(int, 0), convert(int, 0)
		return
	end
-- ?????? ?????? ???? ????
select convert(tinyint, 0), @nUserJID, @sec_primary, @sec_content
	--select convert(tinyint, 0), @nUserJID, @sec_primary, @sec_content, @ApplyType, @AccPlayTime, @LatestUpdateTime_ToPlayTime
	return
I'm almost able to enter ingame, but when I create a char it says invaild char name. If you know why please share :)
use this abusefilter txt.
01/08/2012 17:42 mertcoskun#5
and anbody knows that when i reached upper level 7 in game,client closing.what is the problem?
01/08/2012 17:49 kanka5252#6
FCK [Only registered and activated users can see links. Click Here To Register...]

what this error pls share ur files BROO ????????

PLS BRO Share Ur Files or certt .s
01/08/2012 17:56 mertcoskun#7
Quote:
Originally Posted by kanka5252 View Post
FCK [Only registered and activated users can see links. Click Here To Register...]

what this error pls share ur files BROO ????????

PLS BRO Share Ur Files or certt .s
man use elitesro 1.037 client

here my cert files dont forget to change shardid to 22 and shardservice to 64.
01/08/2012 17:58 kanka5252#8
MErtcoskun private msj atda ordan konusalm.
01/08/2012 18:16 cardoso125874#9
when i try creat new char my client close anyone know why?
01/08/2012 18:32 twins45#10
anyone has got clean 2005 databases? i have 2008 databases.Or can anyone convert for me because i dont have sql 2008
01/08/2012 18:39 kanka5252#11
c8 error help pls.

Hey How Fix C8 Error ? Help me.
01/08/2012 18:52 Shifty*#12
Wrong content id'
01/08/2012 18:56 Alex1337™#13
thanks
-msg2short-
01/08/2012 18:56 twins45#14
Quote:
Originally Posted by Shifty* View Post
Wrong content id'
dude can you send me clean blackrogue sql 2005 databases?I dont have sql 2008r2
01/08/2012 19:00 Shifty*#15
I dont have 2005 lol

btw: Anyone knows why I get instant dc when i logg on? I think its something with billingserver but not sure:
[Only registered and activated users can see links. Click Here To Register...]