Character's data failed to be processed..

Results 1 to 17 of 17
  1. #1
    Valued Member ashaya101 is offline
    MemberRank
    May 2013 Join Date
    Phoenix CampusLocation
    108Posts

    Character's data failed to be processed..

    Please Help! :(

    After I create my character, I cannot log in..

    None of the solutions by @Jolin88 seems to work.

    *I play on different PC from the server.
    *My ports on the LoginServer's cfg is set to 5001 same as that in D3DX10_30.dll
    *IP also match on all of them

    I dunno what else to do :( please help..
    Last edited by ashaya101; 25-05-13 at 10:01 AM.


  2. #2
    Valued Member ashaya101 is offline
    MemberRank
    May 2013 Join Date
    Phoenix CampusLocation
    108Posts

    Re: Character's data failed to be processed..

    <bump>

  3. #3
    荷希 (糖糖姐姐) AsenDURE is offline
    MemberRank
    Mar 2012 Join Date
    MalaysiaLocation
    758Posts

    Re: Character's data failed to be processed..

    try this script, create a new query in RanUser and Execute the script.

    Code:
    USE [RanUser]
    GO
    /****** Object: StoredProcedure [dbo].[user_verify] Script Date: 07/17/2011 09:58:24 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    
    
    ALTER PROCEDURE [dbo].[user_verify]
    @userId char(25),
    @userPass char(25),
    @userIp char(25),
    @SvrGrpNum int,
    @SvrNum int,
    @proPass varchar(6), -- Ran dynamic password
    @proNum varchar(2), -- Ran dynamic password random number
    @nReturn int OUTPUT
    
    AS
    DECLARE
    @nAvailable int,
    @nUserNum int,
    @nState int,
    -- Declare variables used in error checking.
    @error_var int,
    @rowcount_var int,
    @nBlock int,
    @BlockDate datetime,
    @EndDate datetime,
    @StrSql nvarchar(100)
    
    SET NOCOUNT ON
    
    SET @nReturn = 0
    SET @nUserNum = 0
    
    SELECT @nUserNum=UserInfo.UserNum,
    @nState=UserInfo.UserLoginState,
    @nBlock=UserInfo.UserBlock,
    @BlockDate=UserInfo.UserBlockDate
    
    FROM UserInfo
    WHERE UserID = @userId AND UserPass = @userPass AND UserAvailable = 1
    
    
    -----------------------------------------------------------------
    -- ID / PWD check...
    IF @nUserNum = 0
    BEGIN
    SET @nReturn = 0
    RETURN @nReturn
    END
    ELSE
    BEGIN
    SET @nReturn = 1
    IF @nState = 1
    BEGIN
    SET @nReturn = 5
    RETURN @nReturn
    END
    END
    
    
    IF (SELECT COUNT(*) FROM BlockAddress WITH (NOLOCK) WHERE BlockAddress = @userIp) > 0
    
    BEGIN
    declare @params as nvarchar(100)
    SET @StrSQL = 'SELECT @ordercnt=count(userid) FROM Randpass WHERE userid='''+@userId+''' AND pwd'+@proNum + '='''+@proPass + ''''
    SET @params = '@ordercnt as int OUTPUT' -- OUTPUT ???? ??
    
    exec sp_executesql @StrSQL, @params, @ordercnt = @rowcount_var OUTPUT
    
    SELECT @error_var = @@ERROR
    IF @error_var = 0 AND @rowcount_var = 1
    BEGIN
    SET @nReturn = 1 -- Dynamic password correct
    END
    ELSE
    BEGIN
    SET @nReturn = 7 -- Dynamic password error
    RETURN @nReturn
    END
    END
    
    
    -----------------------------------------------------------------
    -- IP Address ??
    IF (SELECT COUNT(*) FROM IPInfo WITH (NOLOCK) WHERE ipAddress = @userIp) > 0
    -- IP ?? ??
    BEGIN
    SELECT @nAvailable = useAvailable
    FROM IPInfo
    WHERE ipAddress = @userIp
    
    IF @nAvailable = 1
    BEGIN
    SET @nReturn = 2 -- ID/PWD ? ????, IP ? ????
    END
    ELSE
    BEGIN
    SET @nReturn = 4 -- ID/PWD ? ????, IP ? ????? ??
    END
    END
    ELSE
    -- IP ?? ??
    BEGIN
    SET @nReturn = 3 -- ID/PWD ? ????, IP ??? ??
    END
    
    -----------------------------------------------------------------
    -- Block ?? ??
    IF (@nBlock = 1)
    BEGIN
    IF (@BlockDate > GetDate())
    BEGIN
    SET @nReturn = 6
    END
    ELSE
    BEGIN
    UPDATE UserInfo
    SET UserBlock=0
    WHERE UserNum = @nUserNum
    
    SET @nReturn = 2
    END
    END
    
    -----------------------------------------------------------------
    -- ??? ???? ??
    IF (@nReturn = 1) OR (@nReturn = 2) OR (@nReturn = 3)
    BEGIN
    -- ???, ??? ????? ??
    UPDATE UserInfo
    SET UserLoginState=1, LastLoginDate=getdate(), SGNum=@SvrGrpNum, SvrNum=@SvrNum
    WHERE UserNum = @nUserNum
    
    -- ???? ???
    INSERT INTO LogLogin (UserNum, UserID, LogInOut, LogIpAddress)
    VALUES (@nUserNum, @userId, 1, @userIp)
    
    -- ?? ????
    UPDATE StatLogin
    SET LCount = LCount+1
    WHERE LYear=Year(GetDate()) AND LMonth=Month(GetDate()) AND LDay=Day(GetDate()) AND LHour=DatePart(hour, GetDate())
    
    SELECT @error_var = @@ERROR, @rowcount_var = @@ROWCOUNT
    IF @error_var <> 0 OR @rowcount_var = 0
    BEGIN
    INSERT INTO StatLogin (LYEAR)
    VALUES (YEAR(GetDate()))
    END
    END
    
    SET NOCOUNT OFF
    
    RETURN @nReturn

  4. #4
    Valued Member ashaya101 is offline
    MemberRank
    May 2013 Join Date
    Phoenix CampusLocation
    108Posts

    Re: Character's data failed to be processed..

    Still not fixed.. :( should I restart my server after executing this?

  5. #5
    Can't touch this! KaitoDaumoto is offline
    MemberRank
    Jul 2008 Join Date
    Balik PulauLocation
    1,442Posts

    Re: Character's data failed to be processed..

    i think i had a same problem as you .. if you are on dynamic ip .. try use hamachi .. it might can help you out .. if you are on vps or dedicated try to disable the firewall or set an exception at firewall ..

  6. #6
    荷希 (糖糖姐姐) AsenDURE is offline
    MemberRank
    Mar 2012 Join Date
    MalaysiaLocation
    758Posts

    Re: Character's data failed to be processed..

    Quote Originally Posted by woodclaw View Post
    i think i had a same problem as you .. if you are on dynamic ip .. try use hamachi .. it might can help you out .. if you are on vps or dedicated try to disable the firewall or set an exception at firewall ..
    you can host directly without using hamachi. most ppl use ran ipinterceptor even me use it too

  7. #7
    Valued Member ashaya101 is offline
    MemberRank
    May 2013 Join Date
    Phoenix CampusLocation
    108Posts

    Re: Character's data failed to be processed..

    I finally fixed it! :)

    I used a different FieldServer and it all went well :)

  8. #8
    Banned xxbugmenotxx is offline
    BannedRank
    Apr 2014 Join Date
    38Posts

    Re: Character's data failed to be processed..

    what you mean with different field server

  9. #9
    Apprentice jaey is offline
    MemberRank
    Jul 2018 Join Date
    14Posts

    Re: Character's data failed to be processed..

    So sad!

    He didnt teach how he fixed his problem LOL

  10. #10
    Newbie level29 is offline
    MemberRank
    Jun 2010 Join Date
    SomewhereBSideULocation
    705Posts

    Re: Character's data failed to be processed..


  11. #11
    Apprentice jaey is offline
    MemberRank
    Jul 2018 Join Date
    14Posts

    Re: Character's data failed to be processed..

    Quote Originally Posted by level29 View Post
    I am using it but still didn't my problem.

    If I use my LAN configuration it is working fine, but if I hotspot my laptop from my phone and
    connect ito my server the problem occured. Character failed to process.

    I am using SQL SERVER 2012, my odbc is sql server and not sql native client.


    If I config my odbc to sql native client I am having error something like the sql sever
    actively refused to connect.

  12. #12
    Apprentice jaey is offline
    MemberRank
    Jul 2018 Join Date
    14Posts

    Re: Character's data failed to be processed..

    Quote Originally Posted by ashaya101 View Post
    I finally fixed it! :)

    I used a different FieldServer and it all went well :)
    hi can you share how did you fix your problem?

    james_lorenzo23@yahoo.com.

    Thanks,

  13. #13
    The Project GIGABIT is offline
    MemberRank
    Feb 2012 Join Date
    The GameLocation
    771Posts

    Re: Character's data failed to be processed..

    Quote Originally Posted by jaey View Post
    hi can you share how did you fix your problem?

    james_lorenzo23@yahoo.com.

    Thanks,
    what is your problem? sss

  14. #14
    Newbie level29 is offline
    MemberRank
    Jun 2010 Join Date
    SomewhereBSideULocation
    705Posts

    Re: Character's data failed to be processed..

    Quote Originally Posted by jaey View Post
    I am using it but still didn't my problem.

    If I use my LAN configuration it is working fine, but if I hotspot my laptop from my phone and
    connect ito my server the problem occured. Character failed to process.

    I am using SQL SERVER 2012, my odbc is sql server and not sql native client.


    If I config my odbc to sql native client I am having error something like the sql sever
    actively refused to connect.
    in your case it seem you have problem in mssql try to down garde to mssql 2008.. and check your odbc anti-virus firewall.. thats why you can't connect to your server

  15. #15
    Apprentice jaey is offline
    MemberRank
    Jul 2018 Join Date
    14Posts

    Re: Character's data failed to be processed..

    Quote Originally Posted by CrimsonRockz View Post
    what is your problem? sss

    can i try your field server ? my problem is connecting to my server using different IP.

    My LAN Connection is working fine.

  16. #16
    The Project GIGABIT is offline
    MemberRank
    Feb 2012 Join Date
    The GameLocation
    771Posts

    Re: Character's data failed to be processed..

    Quote Originally Posted by jaey View Post
    can i try your field server ? my problem is connecting to my server using different IP.

    My LAN Connection is working fine.
    are you done to check your cfg logserver?

  17. #17
    Apprentice jaey is offline
    MemberRank
    Jul 2018 Join Date
    14Posts

    Re: Character's data failed to be processed..

    Quote Originally Posted by CrimsonRockz View Post
    are you done to check your cfg logserver?
    Yes, as I mention before.

    I can play using LAN connection but when I tried to connect to my server using another IP with IP interceptor it gives me error "character failed to process"



Advertisement