server-master/scripts/lib/DropChance.lua

14 lines
236 B
Lua

local DropChance = {}
function DropChance.Create(vnum, amount, chance)
local dropChance =
{
ItemVnum = vnum,
Amount = amount,
Chance = chance
}
return dropChance
end
return DropChance;