Hello Good Day RaGEZONERs,
Here's another own modified script again for all of you guyz.
Almost 2 months i didn't share new anything here :P
I know this is practical ERROR for all Neo Files user.
So this is the SOLUTION.
Use your eyes, hands, and brain to do it work especially the BRILLIAN TOOL the " COMMON SENSE "
ERROR :

SOLUTION :
Just copy this next connect to ur own SQL Management Studio Express
After that click NEW QUERY then PASTE this code then EXECUTE KABOOM ! 
PHP Code:
USE [RanLog]
GO
/****** Object: StoredProcedure [dbo].[sp_LogAction_Insert] Script Date: 08/08/2012 08:01:21 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[sp_LogAction_Insert]
@nChaNum int,
@nType int,
@nTargetNum int,
@nTargetType int,
@nExpPoint money,
@nBrightPoint int,
@nLifePoint int,
@nMoney money
AS
SET NOCOUNT ON
IF (@nType=2)
BEGIN
UPDATE RanGame1.dbo.ChaInfo
SET ChaKills=ChaKills+1
WHERE ChaNum = @nChaNum
END
INSERT INTO LogAction (ChaNum, Type, TargetNum, TargetType, ExpPoint, BrightPoint, LifePoint, ActionMoney)
VALUES (@nChaNum, @nType, @nTargetNum, @nTargetType, @nExpPoint, @nBrightPoint, @nLifePoint, @nMoney)
SET NOCOUNT OFF
DONT ASK ME HOW TO EXECUTE 'COZ I'VE ALREADY TOLD HOW TO DO IT 
Credits :
EssaeyPride
SeiferXIII