• 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.

Can`t connect to server

Newbie Spellweaver
Joined
Aug 31, 2012
Messages
12
Reaction score
2
Hey guys, I launched my own RaiderZ server today, here are some screenshots:

xGauSSx - Can`t connect to server - RaGEZONE Forums

xGauSSx - Can`t connect to server - RaGEZONE Forums

xGauSSx - Can`t connect to server - RaGEZONE Forums

xGauSSx - Can`t connect to server - RaGEZONE Forums


configs:
xGauSSx - Can`t connect to server - RaGEZONE Forums

xGauSSx - Can`t connect to server - RaGEZONE Forums

xGauSSx - Can`t connect to server - RaGEZONE Forums

xGauSSx - Can`t connect to server - RaGEZONE Forums


I`m using official client with:
Code:
Raiderz.exe -login xGauSSx -server 2**.***.***.69

I don`t know is it correct or not, but i get this:
xGauSSx - Can`t connect to server - RaGEZONE Forums


Hope you will help me, thanks.
 
Newbie Spellweaver
Joined
Aug 31, 2012
Messages
12
Reaction score
2
127.0.0.1=localhost
ODBC is configured correctly
 
Newbie Spellweaver
Joined
Mar 29, 2011
Messages
67
Reaction score
3
did you ever fix this i am having the same problem,
plz let me know thx in advance
if you want you can pm me or just answer here
 
Retired. Don't PM.
Developer
Joined
Jan 5, 2009
Messages
593
Reaction score
741
Use the binaries I released and start it with option "Raiderz.exe login <username> <sha1 of user/pass> <ip/domain of server>".

You'll also need to adjust the storedprocs in the database. Here is USP_RZ_LOGIN_GET_INFO:

USE [RZ_ACCOUNTDB]
GO
/****** Object: StoredProcedure [dbo].[USP_RZ_LOGIN_GET_INFO] Script Date: 10/17/2012 01:24:22 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

----

ALTER PROC [dbo].[USP_RZ_LOGIN_GET_INFO]
(
@SITE_CODE NVARCHAR(128)
, @SITE_USER_ID NVARCHAR(128)
)
AS
SET NOCOUNT ON;

BEGIN TRY
IF(LEN(@SITE_CODE) < 32)
RAISERROR (N'USP_RZ_LOGIN_GET_INFO : Invalid User Login info (Length Client).', 11, 0);

SELECT GSN AS ACCN_ID
, PWD
, CASE WHEN SITE_USER_ID IS NULL THEN 1 ELSE 0 END NEWACC
FROM dbo.RZ_GT_USER
WHERE SITE_USER_ID = @SITE_USER_ID
AND UNREG_DATE IS NULL;
END TRY BEGIN CATCH
DECLARE @ErrorMessage NVARCHAR(4000);
DECLARE @ErrorSeverity INT;
DECLARE @ErrorState INT;

SELECT
@ErrorMessage = ERROR_MESSAGE(),
@ErrorSeverity = ERROR_SEVERITY(),
@ErrorState = ERROR_STATE();

RAISERROR (@ErrorMessage,
@ErrorSeverity,
@ErrorState);
END CATCH
 
Back
Top