This is because your database requires OMG_GameWEB.dbo.GameAccountTBL
You can change this by open PS_UsersData--> programmability --> dbo.usp_Try_GameLogin_Taiwan and change line OMG_GameWeb to your account table.
Or You can change whole PS_UserData with EP 5+ Yes u can do this for ep 4
Or serch on forum usp_Try_GameLogin_Taiwan.
For some reason you don't want to share information with us about this issue.
You figured "Hey guys, I have a problem" would be more than enough to solve your problem.
Possible solutions:
1 Check your Users_Masters that account exist there.
2
Quote:
USE [PS_UserData]
GO
/****** Object: StoredProcedure [dbo].[usp_Try_GameLogin_Taiwan] Script Date: 09/10/2011 01:45:17 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER OFF
GO
/****** Object: Stored Procedure dbo.usp_Try_GameLogin_Taiwan Script Date: 2008-6-7 18:34:05 ******/
/*================================================= =
-1 Invalid ID and Password
-2 Can't connect with the account since it's not selected as free challenger
-3 Account doesn't exist
-4 ID inprocess of termination follwing user's request.
-5 Your account is blocked now. You can't log into the game.
-6 Your account is blocked now. You can't log into the game.
-7 Account still restricted
================================================== */
SET @Status = -1
SET @LoginTime = GETDATE()
--------------------------------------------------
SET @CompanyIP = '61.107.81'
SET @UserIP = LTRIM( RTRIM(@UserIP) )
--------------------------------------------------
SET @Check = 0
--------------------------------------------------
SELECT @UserUID=[UserUID], @Status=[Status], @Leave=[Leave], @LeaveDate=LeaveDate
FROM Users_Master
WHERE UserID = @UserID AND Pw = @InPassword
-- NotExist User OR Leave User
IF( @UserUID = 0)
BEGIN
SET @Status = -3
END
ELSE IF (@Leave = 1) --This blocks a logged in account from being kicked
BEGIN
SET @Status = -5
END
ELSE IF (DATEDIFF(SECOND, @LeaveDate, GETDATE()) < 6)--This is the time delay
BEGIN
SET @Status = -7
END
-- BlockUser Check
IF( (@Status >= 2) AND (@Status <= 6) )
BEGIN
-- Get Block Limit Date AND Replace date text
DECLARE @BlockEndDate datetime
SELECT @BlockEndDate = BlockEndDate FROM Users_Block WHERE UserUID = @UserUID
IF ( @@ROWCOUNT <> 0 )
BEGIN
-- Block Release
IF ( @BlockEndDate <= @LoginTime )
BEGIN
SET @Status = 0
UPDATE Users_Master SET Status = @Status WHERE UserUID = @UserUID
END
END
END
-- Admin IP Check(2006-02-21)
/*
IF( @Status = 16 OR @Status = 32 OR @Status = 48 OR @Status = 64 OR @Status = 80 )
BEGIN
SET @TempIP = LEFT(@UserIP, 9)
IF( @TempIP <> @CompanyIP )
BEGIN
SET @Status = -999
END
END
*/
-- Select
SELECT @Status AS Status, @UserUID AS UserUID
-- Log Insert
IF( @Status = 0 OR @Status = 16 OR @Status = 32 OR @Status = 48 OR @Status = 64 OR @Status = 80 )
BEGIN
UPDATE Users_Master SET Leave = 1, JoinDate = GETDATE() WHERE UserUID = @UserUID
END
SET NOCOUNT OFF
For some reason you don't want to share information with us about this issue.
You figured "Hey guys, I have a problem" would be more than enough to solve your problem.
Possible solutions:
1 Check your Users_Masters that account exist there.
2
Why i should ask for it? You should put it already.
Anyway if your users_Master account is corect and you run this query then you should check your game.exe IP
Why i should ask for it? You should put it already.
Anyway if your users_Master account is corect and you run this query then you should check your game.exe IP
Why i should ask for it? You should put it already.
Anyway if your users_Master account is corect and you run this query then you should check your game.exe IP
How to make invalid password and invalid client 10/10/2019 - Rohan - 8 Replies Please can someone help me
When i put wrong password or wrong id it always like this
I want to make it say wrong password or account not registerated
if we put wrong password and id there .
And how to make it say invalid version on login screen if someone using
rohanclient_cheat .
Please guys help me , i just know a little about coding because
I just a Hardware Expert . You can ask me everything about computer Hardware if you got some trouble on your PCs
invalid walk and invalid jump 03/04/2009 - Conquer Online 2 - 10 Replies I think I found something important for speedhack makers
I found that invalid walk and invalid jump messages happens when you have high ping(over 5k) and I think that all TQ done to stop speedhackers is they only added new kind of client check which reads your last position from the server and your new position and then compare them with the time cuz you can jump like 1 pixel in eac .5 sec(not sure)
I think of this because :
1- this is the only possible check they can add
they can't add...