View Single Post
12/28/15, 05:53 AM   #14
QuadroTony
Banned
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 828
no it doesnt
i spent alot of time to figure out how to add fake sales data to MM
i know how its working

when i add another section started with item id
the old section with the same id, if it presented in the any of sv file, do not erased on next launch, but just stop working/counting

its not hard if you need to add a fake sale of one item, for example you have NO DATA for Lich helm vr16
so you open any SV file (0-15)

and adding in the end of it, in proper order
smthing like this(for 3 colors)

Code:
                    [44271] = 
                    {
                        ["50:16:3:18:0"] = 
                        {
                            ["itemIcon"] = "/esoui/art/icons/gear_lich_head_a.dds",
                            ["sales"] = 
                            {
                                [1] = 
                                {
                                    ["guild"] = "Pact Veteran Trade",
                                    ["itemLink"] = "|H0:item:44271:360:50:0:0:0:0:0:0:0:0:0:0:0:0:20:0:0:0:10000:0|hCrown of the Lich|h",
                                    ["buyer"] = "@kutseradavid",
                                    ["price"] = 399999,
                                    ["timestamp"] = 1444418227,
                                    ["seller"] = "@PatrickStär291",
                                    ["quant"] = 1,
                                    ["wasKiosk"] = true,
                                },
                            },
                            ["itemAdderText"] = "crown of the lich vr16 blue superior set shroud of the lich apparel divines head",
                        },
                        ["50:16:4:18:0"] = 
                        {
                            ["itemIcon"] = "/esoui/art/icons/gear_lich_head_a.dds",
                            ["sales"] = 
                            {
                                [1] = 
                                {
                                    ["guild"] = "Pact Veteran Trade",
                                    ["itemLink"] = "|H0:item:44271:361:50:0:0:0:0:0:0:0:0:0:0:0:0:20:0:0:0:10000:0|hCrown of the Lich|h",
                                    ["buyer"] = "@graveman1980",
                                    ["price"] = 399999,
                                    ["timestamp"] = 1444068867,
                                    ["seller"] = "@LegendaryChef",
                                    ["quant"] = 1,
                                    ["wasKiosk"] = true,
                                },
                            },
                            ["itemAdderText"] = "crown of the lich vr16 purple epic set shroud of the lich apparel divines head",
                        },
                        ["50:16:5:18:0"] = 
                        {
                            ["itemIcon"] = "/esoui/art/icons/gear_lich_head_a.dds",
                            ["sales"] = 
                            {
                                [1] = 
                                {
                                    ["guild"] = "Tamriels Gefährten",
                                    ["itemLink"] = "|H0:item:44271:364:50:0:0:0:0:0:0:0:0:0:0:0:0:20:0:0:0:10000:0|hCrown of the Lich|h",
                                    ["buyer"] = "@SirTraski",
                                    ["price"] = 399999,
                                    ["timestamp"] = 1444737404,
                                    ["seller"] = "@Mona-II",
                                    ["quant"] = 1,
                                    ["wasKiosk"] = true,
                                },
                            },
                            ["itemAdderText"] = "crown of the lich vr16 gold legendary set shroud of the lich apparel divines head",
						},
                    },
if you already have some data started with

[44271] =

it will not counting and will not displaying in the addon's UI, but still will be presented in saved variables

Last edited by QuadroTony : 12/28/15 at 06:10 AM.
  Reply With Quote