Ultra Simple update new_character_data table inventory query
It is, as it is stated, ultra simple. insert binary data into inventorydata column to give players items on character creation:
Code:
UPDATE [SERVER01].[dbo].[cabal_new_character_data]
SET [InventoryData] = <varbinary(4096)>
WHERE (ClassType = int)
GO
i know that this is probably too simple a query to be classified as a release, but since i didn't see it in releases when searched, here it is.. enjoy.
Re: Ultra Simple update new_character_data table inventory query
Re: Ultra Simple update new_character_data table inventory query
Except the method above is way easier than the others.