Thread Tools Display Modes
03/08/19, 01:16 AM   #1
Marazota
AddOn Author - Click to view addons
Join Date: Sep 2015
Posts: 257
How to update Event Tickets addon?

looks like its abandoned now

new event, it says i will receive new tickets in 18h 40m
but in fact i will receive them in 22h 40m

how to fix timings?
and its for NA, for EU time must be another
https://www.esoui.com/downloads/info...CityEvent.html
  Reply With Quote
03/08/19, 03:30 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,959
Inside the file EventTickets.lua there is this block of code:
Code:
--------------------
-- Witches Festival
--------------------
EventTickets.eventTicketWitchestFestivalCooldown = 72000 --20 hours
EventTickets.goldenPlunderSkullCooldown = 72000 --20 hours
EventTickets.goldenPlunderSkullIds = {
    [141771] = true, -- Arena Final Boss
    [141772] = true, -- Dark Anchor/Geyser Boss
    [141773] = true, -- Delve Boss
    [141774] = true, -- Dungeon Final Boss
    [141775] = true, -- Public Dungeon / Quests Boss
    [141776] = true, -- Trial Final Boss
    [141777] = true, -- World Boss
}
EventTickets.goldenPlunderSkullNames = {
    [141771] = "Arena Final Boss",
    [141772] = "Dark Anchor/Geyser Boss",
    [141773] = "Delve Boss",
    [141774] = "Dungeon Final Boss",
    [141775] = "Public Dungeon / Quests Boss",
    [141776] = "Trial Final Boss",
    [141777] = "World Boss",
}
The ids 141**** seem to be the eventId which I'm not sure where you can get them from. If you find out where you can get a list of new ids you could add a line like
[newId] = "Description text"

The top 2 variables say 20hours in seconds (60 * 60 * 20)
EventTickets.eventTicketWitchestFestivalCooldown = 72000 --20 hours
EventTickets.goldenPlunderSkullCooldown = 72000 --20 hours

Maybe adjust them to 24 hours, which would be a value of 60 * 60 * 24):
86400
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » How to update Event Tickets addon?

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off