From 9c98a900cf5472bd05ff0c63b78a4bc4909c9b94 Mon Sep 17 00:00:00 2001 From: Szyler Date: Mon, 16 Aug 2021 14:52:26 +0200 Subject: [PATCH] example database --- AtlasLoot/Core/AtlasLoot.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua index 03ca2d0..db6bdd2 100644 --- a/AtlasLoot/Core/AtlasLoot.lua +++ b/AtlasLoot/Core/AtlasLoot.lua @@ -1441,9 +1441,13 @@ end --[[ AL_FindId(name, difficulty) Finds the Ids of other difficulties based on the name of the item and the difficulty parameter given. -On the form of {Name, normal, heroic, mythic, mythic1, mythic2, ... ,mythicN} +On the form of {Name, {normal, heroic, mythic, mythic1, mythic2, ... ,mythicN}] ]] function AL_FindId(name, difficulty) end +ItemIDsDatabase = { + --name, {normal, heroic, mythic, mythicN} + testItemName, {1000, 2000, 3000, 4000} +} \ No newline at end of file