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!

[HELP] dbo.Lootdata Blocked add new items

Junior Spellweaver
Joined
Jul 6, 2015
Messages
184
Reaction score
41
Error Add ->
I already used the search, but not one result helped me.
HELP.
 
☆Dying Dawn☆
Joined
Jan 30, 2012
Messages
971
Reaction score
727
you have to make the identity in the new tables with the red words, follow the the code tag example to insert your LootData SQL Query Like below
Code:
[COLOR="#FF0000"]SET IDENTITY_INSERT [dbo].[Items_LootData] ON
GO[/COLOR]
INSERT INTO [dbo].[Items_LootData] ([RecordID], [LootID], [Chance], [ItemID], [GDMin], [GDMax]) VALUES (N'1', N'301310', N'1', N'101412', N'0', N'0')
GO
GO
[COLOR="#FF0000"]SET IDENTITY_INSERT [dbo].[Items_LootData] OFF
GO[/COLOR]
 
Upvote 0
Back
Top