This is under Items_LootData
Using: Navicat Premium
![]()
This is under Items_LootData
Using: Navicat Premium
![]()
USE [warz]
go
DROP TABLE [dbo].[Items_LootData]
GO
CREATE TABLE [dbo].[Items_LootData] (
[RecordID] int NOT NULL IDENTITY(1,1) ,
[LootID] int NOT NULL ,
[Chance] float(53) NULL ,
[ItemID] int NULL ,
[GDMin] int NULL ,
[GDMax] int NULL
)
GO