CrossFire 2.0 Server & Client

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

Does the server need to be restarted? I created and it still can't login
 
Last edited: