Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Shaiya > Shaiya Private Server
You last visited: Today at 10:45

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[HELP]DC and rollback if store item in WH

Discussion on [HELP]DC and rollback if store item in WH within the Shaiya Private Server forum part of the Shaiya category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2009
Posts: 143
Received Thanks: 22
[HELP]DC and rollback if store item in WH

Hello guyz.

I have i some problem with DBs. My logs do not have any errors, but, if any toon stored item in WH and after play sometimes or try to log out he got ERROR 0, if toon log in again character are already rollback to back time (various time 10-30 min). All items and moves and quests are got deleted to back because character got rollback. My PS_DBAGENT log are clear, not have any errors, but have some querty names: Example:



Code:
--<begin>2011-08-14 15:27:38,toon,61,toon,180

{?=call usp_Save_Char_Info_E(180,11, 70,7, 7,9,9,18,14,9, 995,818,155, 2,204, 157251797,9619, 1025.432739,55.922813,1007.791138, 0,200,0,0,0, 0,0,0,0)}

EXEC usp_Save_User_StoredMoney_E 1,61,0

{?=call Usp_Save_User_StoredItem_Add_E(1,61,3322795783488667648, 0, 43004,43,4, 0, 0,0,0,0,0,0,'', 1, '2011-08-14 15:04:41', 'V')}

{?=call Usp_Save_Char_Skill_Mod_E(180,6,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,14,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,365,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,32,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,192,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,132,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,50,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,52,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,191,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,117,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,109,1,0)}

{?=call Usp_Save_Char_Skill_Mod_E(180,29,1,0)}

{?=call Usp_Save_Char_ApplySkill_Del_E(180,0,0,1)}

{?=call Usp_Save_Char_ApplySkill_Add_E2(180,116,1,1444)}

{?=call Usp_Save_Char_ApplySkill_Add_E2(180,123,1,534)}

EXEC usp_Save_Char_QuickSlot_Del_E 180

EXEC usp_Save_Char_QuickSlot_Add_E 180,0,0,100,29

EXEC usp_Save_Char_QuickSlot_Add_E 180,0,1,100,52

EXEC usp_Save_Char_QuickSlot_Add_E 180,0,2,100,50

EXEC usp_Save_Char_QuickSlot_Add_E 180,0,9,100,109

EXEC usp_Save_Char_QuickSlot_Add_E 180,10,0,100,132

EXEC usp_Save_Char_QuickSlot_Add_E 180,10,1,100,117

EXEC usp_Save_Char_QuickSlot_Add_E 180,10,2,100,191

--<end>2011-08-14 15:27:38,toon,61,toon,180

If not store any items in WH so not have any problem. Can help me anyone please? I think problem in usp_Save_Char_Info_E or Usp_Save_User_StoredItem_Add_E. But if i try cope this procedure from others DB's it to not fix it problem. What me wrong guyz?

Thank you.

Daily bump, guyz no any info?
cosong is offline  
Old 08/17/2011, 02:27   #2
 
elite*gold: 0
Join Date: Feb 2009
Posts: 143
Received Thanks: 22
Bump

Guyz any have same problem?
cosong is offline  
Old 02/19/2017, 16:39   #3
 
elite*gold: 63
Join Date: Apr 2012
Posts: 2
Received Thanks: 0
Hi, I have the same problem, try to solve it, but I can not figure out what happens if someone has the fix, thank you
jecan is offline  
Old 02/20/2017, 20:44   #4
 
elite*gold: 63
Join Date: Apr 2012
Posts: 2
Received Thanks: 0
Hello, I solve the problem, I share it with you.

Use the following query

USE [PS_GameData]
GO
/****** Object: StoredProcedure [dbo].[usp_Save_User_StoredItem_Add_E] Script Date: 02/20/2017 20:38:18 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

/****** 개체: 저장 프로시저 dbo.usp_Save_User_StoredItem_Add_E 스크립트 날짜: 2006-04-11 오후 10:58:39 ******/


ALTER Proc [dbo].[usp_Save_User_StoredItem_Add_E]
@ID tinyint, @ID int,
@ItemUID bigint, @ tinyint,
@ItemID int, @ tinyint, @ID tinyint, @ smallint,
@Gem1 tinyint,
@Gem2 tinyint,
@Gem3 tinyint,
@Gem4 tinyint,
@Gem5 tinyint,
@Gem6 tinyint,
@Craftname varchar(20) = '',
@Count tinyint,
@Maketime datetime2,
@Maketype char(1)

AS

--SET NOCOUNT ON

INSERT INTO UserStoredItems
(ServerID, UserUID, Slot, ItemID, Type, TypeID, ItemUID, quality, gem1, gem2, gem3, gem4,
gem5, gem6, craftname, [count], maketime, maketype)
VALUES @ID, @ID, @, @ItemID, @, @ID, @ItemUID, @, @Gem1, @Gem2, @Gem3, @Gem4,
@Gem5, @Gem6, @Craftname, @Count, @Maketime, @Maketype)

IF(@@ERROR = 0)
BEGIN
RETURN 1
END
ELSE
BEGIN
RETURN -1
END

--SET NOCOUNT OFF
jecan is offline  
Old 04/01/2018, 16:37   #5
 
[PH]KEO(DEV)'s Avatar
 
elite*gold: 0
Join Date: Aug 2016
Posts: 84
Received Thanks: 15
Quote:
Originally Posted by jecan View Post
Hello, I solve the problem, I share it with you.

Use the following query

USE [PS_GameData]
GO
/****** Object: StoredProcedure [dbo].[usp_Save_User_StoredItem_Add_E] Script Date: 02/20/2017 20:38:18 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

/****** 개체: 저장 프로시저 dbo.usp_Save_User_StoredItem_Add_E 스크립트 날짜: 2006-04-11 오후 10:58:39 ******/


ALTER Proc [dbo].[usp_Save_User_StoredItem_Add_E]
@ID tinyint, @ID int,
@ItemUID bigint, @ tinyint,
@ItemID int, @ tinyint, @ID tinyint, @ smallint,
@Gem1 tinyint,
@Gem2 tinyint,
@Gem3 tinyint,
@Gem4 tinyint,
@Gem5 tinyint,
@Gem6 tinyint,
@Craftname varchar(20) = '',
@Count tinyint,
@Maketime datetime2,
@Maketype char(1)

AS

--SET NOCOUNT ON

INSERT INTO UserStoredItems
(ServerID, UserUID, Slot, ItemID, Type, TypeID, ItemUID, quality, gem1, gem2, gem3, gem4,
gem5, gem6, craftname, [count], maketime, maketype)
VALUES @ID, @ID, @, @ItemID, @, @ID, @ItemUID, @, @Gem1, @Gem2, @Gem3, @Gem4,
@Gem5, @Gem6, @Craftname, @Count, @Maketime, @Maketype)

IF(@@ERROR = 0)
BEGIN
RETURN 1
END
ELSE
BEGIN
RETURN -1
END

--SET NOCOUNT OFF
this is working?
[PH]KEO(DEV) is offline  
Reply


Similar Threads Similar Threads
LC-USA Item Store by STORM
10/08/2011 - Last Chaos Trading - 24 Replies
nicht mehr Aktuell ! Angebot zeitweise beendet !Auf Deutsch: Hi Ich verkaufe Items auf LC-USA auf allen Server. Auf Katar und Auzura könnt ihr ALLES bei mir kaufen. Auf den anderen Servern nur bis zu einem maximalen Wert von 1kkk (1.000.000.000 = eine Milliarde). Zum Verkauf steht alles was handelbar ist: Questitems Shopitems (nur handelbare !) Waffen & Rüstungen Gold und vieles mehr...
~*[H]ot*~ITEM-STORE~*[H]ot*~ by ~[R]OxXxOr~
07/30/2011 - WarRock Trading - 14 Replies
Hallo liebe Mitglieder, du wolltest schon immer billige G1-Credits sicher und ohne Risiko einkaufen? Am besten noch über einen Middleman traden? Und zudem auch noch mit PaySafeCard http://www.meinemafia.de/images/icons_01/callcredi ts_paysafecard.png oder PayPal http://www.mobilfunk-talk.de/news/wp-content/icons /icon_paypal.gif und bald sogar mit E*Gold http://www.elitepvpers.com/images/tbm/gold.gif zahlen? Dann hast du nun endlich den richtigen Thread gefunden!!
[Item Store auf Server 11/Lykanthra]
03/23/2011 - Metin2 Trading - 0 Replies
Hallo Leute, ich verkaufe hier items auf dem schönen server lykanthra, ich würde euch folgendes bieten: Roteisenklinge+9 mit 7fertigkeitsschaden und hat 2xsplitter Drachengottpanzer+8 mit hast+3 und schutz+3 und 1x splitter eisenhelm+9 mit 4bonis!!! unter anderem ist untote boni dabei aber ein wert von 6% immerhin 4bonis ^^ lks+8 mit vit+8 max tp sachen
Anzu's Item Store [Urzark/EU3]
03/23/2011 - Archlord Trading - 16 Replies
Hello there :) In this Thread I'm selling Items on the EU3/Urzark/Gaiahon/Brumhart Server. I will also add Screens to each Item and update this Thread, as soon as I drop new ones :) REALMS: Gauntlets Of Excen http://i56.tinypic.com/5bpv9d.jpg Boots Of Zwan
Db bot Item Store Problem!
05/26/2010 - SRO Private Server - 5 Replies
hi since i have new Dbbot it dont take items in storgate when it start loop! can someone help me? thankx



All times are GMT +1. The time now is 10:48.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.