Nope, not necessarily.
USE [PS_GameData] GO /****** Object: StoredProcedure [dbo].[usp_Save_User_BuyPointItems_NCash] Script Date: 2014-01-21 19:10:44 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO /****** Shoping Mall Fixed by sandolkakos Website: http://www.universalgamesonline.com.br ******/ ALTER Proc [dbo].[usp_Save_User_BuyPointItems_NCash] @UserUID int, @CharID int, @UsePoint int, @ProductCode varchar(20), @textDate varchar(30) AS DECLARE @UseTime datetime set @UseTime=CONVERT(datetime, @textDate, 120) SET NOCOUNT ON SET XACT_ABORT ON DECLARE @UseType int DECLARE @ReturnValue int SET @UseType = 1 -- ?? BEGIN DISTRIBUTED TRANSACTION EXEC @ReturnValue = PS_UserData.dbo.usp_Update_UserPoint @UserUID, @UsePoint IF ( @ReturnValue < 0 ) BEGIN GOTO ERROR END -- ??? ??(Old, ?? UPDATE? ???? ????? ?? ???) --UPDATE PS_UserData.dbo.Users_Master SET Point=Point-@UsePoint WHERE UserUID=@UserUID --IF( @@ERROR<>0 OR @@ROWCOUNT=0) --BEGIN -- GOTO ERROR --END -- ??? ?? ?? INSERT INTO PointLog(UseType,UserUID,CharID,UsePoint,ProductCode,UseDate) VALUES(@UseType,@UserUID,@CharID,@UsePoint,@ProductCode,@textDate) IF( @@ERROR<>0) BEGIN GOTO ERROR END COMMIT TRAN RETURN 1 ERROR: ROLLBACK TRAN RETURN -1 SET XACT_ABORT OFF SET NOCOUNT OFF
2015-11-10 12:38:20 err=-1, [Microsoft][ODBC SQL Server Driver][SQL Server]MSDTC no está disponible en el servidor 'SERVIDOR-PC'., SQL STATE: 42000, NATIVE ERROR: 8501 (0x2135)
2015-11-10 12:38:20 SaveBuyPointItem 1 ?? qerr=0, {?=call usp_Save_User_BuyPointItems_NCash(1,1,5000,' Accesorios PvP-15','2015-11-10 12:38:18')}
Hi, I did it the way you taught it, but I still can not buy the store ...Quote:
I see the other user removed his guide due to "leaving" Elitepvpers.
The usual problem with in game item mall DC is due to a windows service not running. The easy way to fix it is shown below.
Step 1: Open Services.msc
Step 1 Image:
[Only registered and activated users can see links. Click Here To Register...]
Step 2: Find "Distributed Transaction Coordinator" in the new window.
Step 2 Image:
[Only registered and activated users can see links. Click Here To Register...]
Step 3: Right-Click on "Distributed Transaction Coordinator" and select Properties
Step 3 Image:
[Only registered and activated users can see links. Click Here To Register...]
Step 4: Make sure the general tab looks like the image above, then go to Log On.
Step 4 Image:
[Only registered and activated users can see links. Click Here To Register...]
Step 5: Click the Radio Button next to This Account, and make sure it says Network Service. The NetworkService account does not have a password, so anything entered into that field will be ignored.
Step 6: Click Apply, then go back to the General Tab and click Start.
Step 6 Image:
[Only registered and activated users can see links. Click Here To Register...]
That should cover the service error when DCing from the item mall. Make sure you do this on the computer RUNNING the SERVER, not a client computer, as that doesn't really matter. Other errors are probably from SQL errors, and if you have those, post the errors on THIS thread, and I'll solve them as you post.
Good luck.