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!

CrossFire 2.0 Server & Client

Joined
Feb 2, 2011
Messages
444
Reaction score
476
1687214693723 - CrossFire 2.0 Server & Client - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Feb 10, 2016
Messages
11
Reaction score
27
how to create acc?
executing stored procedure PROC_WEB_USER_INFO_INS from CF_SA_GAME database

USE [CF_SA_GAME]
GO

DECLARE @return_value int,
@p_Result numeric(10, 0)

EXEC @return_value = [dbo].[PROC_WEB_USER_INFO_INS]
@p_User_id = N'user',
@p_User_pass = N'password',
@p_Mail = N'test@test.com',
@p_Result = @p_Result OUTPUT

SELECT @p_Result as N'@p_Result'
SELECT 'Return Value' = @return_value
GO
 
Newbie Spellweaver
Joined
Jun 26, 2013
Messages
22
Reaction score
2
Does the server need to be restarted? I created and it still can't login

executing stored procedure PROC_WEB_USER_INFO_INS from CF_SA_GAME database

USE [CF_SA_GAME]
GO

DECLARE @return_value int,
@p_Result numeric(10, 0)

EXEC @return_value = [dbo].[PROC_WEB_USER_INFO_INS]
@p_User_id = N'user',
@p_User_pass = N'password',
@p_Mail = N'test@test.com',
@p_Result = @p_Result OUTPUT

SELECT @p_Result as N'@p_Result'
SELECT 'Return Value' = @return_value
GO
Does the server need to be restarted? I created and it still can't login
 
Last edited:
Back
Top