Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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