Quote:
Originally Posted by baldracca
The problems about "Client Version doesn't match" solved with a simpe "/nprotectoff" lol
But then i got a problem with creation of new toon... any name i put it say "already taken". (same problem with any client version)
|
hey Baldracca, try to change the next things:
*in the "CharItems" table change the type of the field "Maketime" from datetime to varchar(50).
*in the store procedure "Usp_Save_Char_Item_Add_E" there is a "maketime" variable, change it frome datetime to varchar(50)
*then execute this:
Code:
ALTER Proc [dbo].[usp_Read_Char_Items_Detail_R]
@CharID int
AS
/******SET NOCOUNT ON******/
SELECT ItemID, Type, TypeID, ItemUID, Bag, Slot, Quality,
Gem1, Gem2, Gem3, Gem4, Gem5, Gem6, Craftname, [Count], Maketype ,
'2009' AS MakeTime_YYYY,
'01' AS MakeTime_MM,
'01' AS MakeTime_DD,
'00' AS MakeTime_HH,
'00' AS MakeTime_MI,
'00' AS MakeTime_SS
FROM CharItems
WHERE CharID = @CharID AND Del = 0
/******SET NOCOUNT OFF******/
GO
that must work, at least with me works
greetings