Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

T-Point stored procedure!

Newbie Spellweaver
Joined
Jan 22, 2013
Messages
28
Reaction score
0
Hello guys iam looking for this stored procedure if you can help me pls do it :!


[##ERROR##] DB ERROR(MSG) : [FreeTDS][SQL Server]Could not find stored procedure 'dbo.TPoint_InsertPointShopLog'.

Thanks :/
 
Joined
May 24, 2007
Messages
720
Reaction score
71
Great youyou, working..

my feedback:
now i'm able to buy items from NPC, but after certain time, i can't to buy more, i don't know why yet, i'll try tomorrow, now i'm going to sleep.. i'm so tired

See my World log
[Sat Jun 22 2013 03:41:01.422359 2818399120]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
 
Last edited:
Upvote 0
Joined
Dec 16, 2010
Messages
445
Reaction score
104
still dosen't work , i got these errors :)

[Sat Jun 22 2013 09:55:59.860862 2818481040]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Sat Jun 22 2013 09:55:59.861168 2818481040]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
[Sat Jun 22 2013 09:56:01.523446 2818481040]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Sat Jun 22 2013 09:56:01.523685 2818481040]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
[Sat Jun 22 2013 09:56:01.885815 2818481040]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Sat Jun 22 2013 09:56:01.885967 2818481040]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
[Sat Jun 22 2013 09:56:02.239427 2818481040]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Sat Jun 22 2013 09:56:02.239650 2818481040]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
[Sat Jun 22 2013 09:56:03.125253 2818481040]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Sat Jun 22 2013 09:56:03.125405 2818481040]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
[Sat Jun 22 2013 09:56:03.472471 2818481040]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Sat Jun 22 2013 09:56:03.472679 2818481040]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
[Sat Jun 22 2013 09:56:04.480204 2818481040]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Sat Jun 22 2013 09:56:04.480351 2818481040]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
[Sat Jun 22 2013 09:56:06.864675 2818481040]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Sat Jun 22 2013 09:56:06.864840 2818481040]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
[Sat Jun 22 2013 09:56:07.029159 2818481040]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Sat Jun 22 2013 09:56:07.029310 2818481040]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)
 
Upvote 0
RaGEZONER
Joined
Sep 25, 2009
Messages
637
Reaction score
398
Ontopic,
Thank you so much youyou,:thumbup:
I have spammed buy and it works perfectly fine with no error at all.
All of the currencies can now be exchanged ingame instead of using a web shop.

I will include it in the future DB repack and give full credits to you and others that helped contributing!

Web ideas,
I have got stuck with TPoint stored procedure and since I had no more ideas, yesterday morning I went on to successfully converting the chumpy web shop to TPoint by using 2 new stored procedures converted from the existing ones.
Code:
[B]cabal_tool_SetTPoint[/B]
USE [NetcafeBilling]
GO
/****** Object:  StoredProcedure [dbo].[cabal_tool_SetWarehouseAlz]    Script Date: 06/21/2013 09:10:40 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[cabal_tool_SetWarehouseAlz]
( @UserNum int, @TPoint int, @encrypted bigint) 
AS
	BEGIN
		UPDATE Point
		SET TPoint = @TPoint
		WHERE UserNum = @UserNum
	END

[B]cabal_tool_GetTPoint[/B]
USE [NetcafeBilling]
GO
/****** Object:  StoredProcedure [dbo].[cabal_sp_GetNetCafeTPoint]    Script Date: 06/21/2013 11:55:05 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[cabal_sp_GetNetCafeTPoint] 
( @usernum int )
AS
BEGIN	
	DECLARE @RESULT INT SET @RESULT = 0
	SELECT @Result = TPoint FROM Point WHERE USERNUM = @UserNum
	SELECT @RESULT
END
Now I will reconvert them once again since the TPoint is ingame, maybe to exchange Honour points or AXP, any gainable points can be used. :D:

I also plan to include the chumpy web shop, change pass and rank in the repack.

Event option column,
The event function was restored by hefajstos, option is used for NPC being clickable/unclickable,.. also maybe something else.
http://forum.ragezone.com/f460/guide-event-system-works-915010/index7.html#post7571663
 
Upvote 0
Joined
May 24, 2007
Messages
720
Reaction score
71
Hi all,
now, i got this error, in my test server all works fine about T-Point, but when i do a backup from test server and restore this on my real server, got this error

[Fri Jun 28 2013 03:55:19.641290 2818010000]: [##ERROR##] 'CheckPacketValidation' fail (Game/EMS/EventNPCManager.cpp:58)
[Fri Jun 28 2013 03:55:19.641702 2818010000]: [##ERROR##] pITSRequest->result is raised in OnITCEMSNPCAction() (Proc/EMS.cpp:368)

obs:
File Servers between servers are same
 
Upvote 0
Joined
May 24, 2007
Messages
720
Reaction score
71
Ohh sh... yes!!
i forgot to add the NPC line into event.scp. omg -.-'

Thanks Miha!

Other question:
is normal show the item without model 3D?
and red slot if i don't have the requeriments to buy?

my items just showed if i have enough t-points to buy it
 
Last edited:
Upvote 0
RaGEZONER
Joined
Sep 25, 2009
Messages
637
Reaction score
398
The red slot if you don't have enough TPoints or requirement not meet is normal I think.

What kind of model 3D problem do you have?
The Item displays normally here if the requirements are meet, armor for example.
 
Upvote 0
Newbie Spellweaver
Joined
Dec 30, 2016
Messages
77
Reaction score
2
Hey guys , I added the T-points in BloodyIce successfully , but how do characters gain t points through playing and what is the rate for it and where can i edit these info ?

FYI i only managed to add it manually to the dbo.Point
 
Last edited:
Upvote 0
Back
Top