errors in ep 6 servers

04/19/2016 15:14 GMCronus#1
hi. i don't have server crash and so on but i have a few dc and stuff like that so i wanted to post my error log's here. many have some of the same issues so mabe that can fix stuff for many ppl idk sorry.

ps userlog

here is my try_GameLogout-R

the xxxx thing i checked against password, userid and character name but i can't find them so i have no idea but look like password or UserID or something like that so not sharing but xxxxx thing is not xxxx it's something that look like password or userID and it's ALOT of this

ps_GameLog_system


alot of this

Insert_Action_Log_E

ps_Game__System.Log

I get alot of this

if anyone can help please do:-)
05/15/2016 18:57 Arby#2
#moved

Also spoiler tagged it so it's easier to read.…
05/15/2016 20:46 wallerus#3
Quote:
Originally Posted by GMCronus
SET point=point+@LastPlayTime/0
Pulled that from your try_GameLogout-R proc. Dividing by zero is never good.

The bottom of your usp_Insert_Action_Log_E is also missing some code.
Quote:
EXEC sp_executesql @Sql,
N'@UserID VARCHAR(18), @UserUID INT, @CharID INT, @CharName varchar(50),
@CharLevel TINYINT, @CharExp INT, @MapID SMALLINT, @PosX REAL, @PosY REAL, @PosZ REAL, @ActionTime DATETIME, @ActionType TINYINT,
@Value1 BIGINT, @Value2 INT, @Value3 INT, @Value4 BIGINT, @Value5 INT, @Value6 INT, @Value7 INT, @Value8 INT,
@Value9 INT, @Value10 INT, @Text1 VARCHAR(100), @Text2 VARCHAR(100), @Text3 VARCHAR(100), @Text4 VARCHAR(100)',
@UserID, @UserUID, @CharID, @CharName, @CharLevel, @CharExp, @MapID, @PosX, @PosY, @PosZ, @ActionTime, @ActionType,
@Value1, @Value2, @Value3, @Value4, @Value5, @Value6, @Value7, @Value8, @Value9, @Value10, @Text1, @Text2, @Text3, @Text4
Notice how yours is missing the last row of code, from Value1 to Text4
05/15/2016 21:38 GMCronus#4
first of thanks.

but idk why the gamlog_E is full just didnt set all here when i pasted it sorry.

how can i remove just SET point=point+@LastPlayTime/0 when the script is all about the same. isnt that going to mess up even more?
05/16/2016 04:51 wallerus#5
Simply just remove the "/0" from that part of your script and it will work. Diving by zero, in math, returns an undefined value - as for SQL I can only assume it also doesn't do great things.
05/16/2016 09:13 GMCronus#6
thanks. then many have this. not my script LOL but thanks alot