2012-06-03 10:44:42 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect syntax near '#QNAN0'., SQL STATE: 42000, NATIVE ERROR: 102 (0x66)
just a litle one out of a big error log..
i havent seen this one before..
Quote:
USE [PS_GameLog]
GO
/****** Object: StoredProcedure [dbo].[usp_Insert_Action_Log_E] Script Date: 6/3/2012 12:23:13 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
USE [PS_UserData]
GO
/****** Object: StoredProcedure [dbo].[usp_Try_GameLogin_Taiwan] Script Date: 6/3/2012 12:35:20 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
--------------------------------------------------
SET @CompanyIP = '61.107.81'
SET @UserIP = LTRIM( RTRIM(@UserIP) )
--------------------------------------------------
SET @Check = 0
--------------------------------------------------
--Check for IP ban, if so set the status of the user to banned.
IF(SELECT COUNT(*) FROM [GM_Stuff].[dbo].[BannedIP] where [IP1] = @UserIP) > 0
BEGIN
SET @Status = -2
UPDATE PS_UserData.dbo.Users_Master SET [Status] = @Status WHERE UserID = @UserID
END
IF(SELECT COUNT(*) FROM PS_UserData.dbo.Users_Master where [UserIp] = @UserIP and [Status] = '-2') > 0
BEGIN
-- if previous section returns results witch means the ip is attatched to an account previously ip banned
IF(SELECT COUNT(*) FROM [GM_Stuff].[dbo].[BannedIP] where [UserID] = @UserID) > 0
UPDATE [GM_Stuff].[dbo].[BannedIP] SET [LogAtempt] = 'TRUE' WHERE UserID = @UserID
Else INSERT INTO [GM_Stuff].[dbo].[BannedIP] (UserID,BanDate,IP1,StaffID,StaffIP,[LogAtempt])
Values (@UserID,GETDATE(),@UserIP,'Log','127.0.0.1','TRUE ')
END
--Check if 3day and 14day banments are ready for release then do so if ready
SELECT @TimeReleased = TimeReleased From GM_Stuff.dbo.BannedAccounts Where UserID = @UserID
IF ( @TimeReleased < GETDATE())
BEGIN
UPDATE PS_UserData.dbo.Users_Master SET [Status] = 0 WHERE UserID=@UserID
DELETE FROM GM_Stuff.dbo.BannedAccounts WHERE UserID=@UserID
END
SELECT @UserUID=UserUID, @Status=Status,@UseQueue=UseQueue, @Leave=Leave FROM Users_Master WHERE UserID = @UserID
-- NotExist User OR Leave User
IF( @UserUID = 0 OR @Leave = 1 )
BEGIN
SET @Status = -3
END
-- Dupe fix section
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
-- verified email at regestration check
--ELSE IF (@UseQueue='0')
--BEGIN
--SET @Status= -7
--END
ELSE
BEGIN
-- Check Password
EXEC dbo.sp_LoginSuccessCheck @UserID, @InPassword, @Check output
IF ( @@ERROR = 0 )
BEGIN
IF( @Check <> 1 )
BEGIN
SET @Status = -1
END
END
ELSE
BEGIN
SET @Status = -1
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
BEGIN
EXEC usp_Insert_LoginLog_E @SessionID=@SessionID, @UserUID=@UserUID, @UserIP=@UserIP, @LogType=0, @LogTime=@LoginTime, @LoginType=@LoginType
END
BEGIN
UPDATE PS_UserData.dbo.Users_Master set UserIp = @UserIP WHERE UserID = @UserID
END
SET NOCOUNT OFF
and we have ps_session. system. log:
2012-06-03 10:03:03 disconnect login
2012-06-03 10:03:03 3 1 SERVICE_CONTROL_STOP
after all this server just go back to pause 2 times in 24 hours out of no where..
[Error]PS_Game.exe plz explain 04/24/2012 - Shaiya Private Server - 2 Replies I have searched all over these forums and cannot find fix or understand why this does this.2012-04-23 15:51:59 PS_GAME__system log start (Genocide)
2012-04-23 15:51:59 Loaded Behavior In Factory : data/ai/sorp1
2012-04-23 15:51:59 Loaded Behavior In Factory : data/ai/croco1
2012-04-23 15:51:59 Loaded Behavior In Factory : data/ai/croco2
2012-04-23 15:51:59 Loaded Behavior In Factory : data/ai/Troll1
[Error] PS_Game.exe 01/10/2012 - Shaiya Private Server - 3 Replies My Game Server doesnt start so i looked in my log files and found this in my
ps_game log:
2011-10-24 20:11:20 PS_GAME__system log start (Game01)
2011-10-24 20:11:20 Loaded Behavior In Factory : data/ai/sorp1
PS_game.exe with lv 80 01/09/2012 - Shaiya PServer Development - 3 Replies Here ill upload a ps '_game.exe with max lv 80
This is the link:
PS_Game.exe lv80
[Help please] PS_Game.exe 05/10/2011 - Shaiya Private Server - 2 Replies hello all, i ran into a problem while creating a test server, all services will start with the exception of Game, i have checked my .ini files and have used 3 diffrent versions of the PS_Game.exe, the game service just will not stay started,i will post the log here. i know i have seen the solution on here i just cant seem to find it. thank you any help will be appreciated.
2011-05-05 17:36:35 PS_GAME__system log start (Immortal(Test))
2011-05-05 17:36:35 Loaded Behavior In Factory :...
ps_game.exe error after dbo.skills translation 12/06/2010 - Shaiya Private Server - 5 Replies Evening all, take a look at this, i dont know the cause of this error :(
2010-11-30 14:51:30 PS_GAME__system log start (Game01)
2010-11-30 14:51:30 Loaded Behavior In Factory : data/ai/sorp1
2010-11-30 14:51:30 Loaded Behavior In Factory : data/ai/croco1
2010-11-30 14:51:30 Loaded Behavior In Factory : data/ai/croco2