mementos = { -- https://esoitem.uesp.net/viewlog.php?record=collectibles [336] = { abilityId = 21226, name = GetCollectibleName(336), delay = 500, cooldown = 3200 }, -- Finvir ...
[newCollectibleIdHere] = { abilityId = abilityIdOfCollectibleHere, name = GetCollectibleName(newCollectibleIdHere), delay = 500, cooldown = 3200 }, -- Name of collectible here
[8008] = { abilityId = false, name = GetCollectibleName(8008), delay = 500, cooldown = 3200 }, -- Campfire kitChange thje delay and cooldown (both are in milliseconds) according to your preference.
At the top of the file PermAlmalexia.lua you find this tablemementos = { -- https://esoitem.uesp.net/viewlog.php?record=collectibles [336] = { abilityId = 21226, name = GetCollectibleName(336), delay = 500, cooldown = 3200 }, -- Finvir ...
Check the link provided there https://esoitem.uesp.net/viewlog.php?record=collectibles for collectibleID and the abilityId you want to add,
add a new line to the table, just above the closing } of the table (last line currnetly is
[10652] = {abilityId = false, name = GetCollectibleName(10652), delay=500, cooldown=200}, -- Soul crystals of the returned )
like this:[newCollectibleIdHere] = { abilityId = abilityIdOfCollectibleHere, name = GetCollectibleName(newCollectibleIdHere), delay = 500, cooldown = 3200 }, -- Name of collectible here
Campfire kit should be collectibleId 8008:
https://esoitem.uesp.net/viewlog.php?action=view&record=collectibles&id=8008
Not suree where you get that abilityId from though...
The last lines got abilityId = false so maybe try this entry:[8008] = { abilityId = false, name = GetCollectibleName(8008), delay = 500, cooldown = 3200 }, -- Campfire kitChange thje delay and cooldown (both are in milliseconds) according to your preference.
Make a screenshot ingame in ESO and watch the path shown top right -> Note it down.
Should be e.g. c:\users\your windows username\documents\elder scrolls online\live\screenshots
Now strip the \screenshot at the end and instead use \AddOns.
Go to the subfolder PermAlmalexia and edit the file \PermAlmalexia\PermAlmalexia.lua with a text editor.
Search for:
mementos = {
[336] = { ... },
[...] = {....},
} <<<<<- Closeing table mementos
This is a table and it closes the table with the } bracket, after all the lines with [number] = { data here }
-> each line with [number] = { data here } is 1 memento already added currently.
So after the last line with the current mementos (oreven at the top before the [336] ... line, you simply add a new line:
[8008] = { abilityId = false, name = GetCollectibleName(8008), delay = 500, cooldown = 3200 }, -- Campfire kit
Then save it and /reloadui ingame if you were logged in to reload the user interface and make the changes load.
Then check if you can select it from the settings now and if it works.
You can change the values of delay = 500, cooldown = 3200 to other values, where 500 and 3200 are milliseconds so 500 is half a second and 3200 is 3,2 seconds.
delay = waits before it starts I guess?
Cooldown = time after which the memento can be used again
[8008] = { abilityId = false, name = GetCollectibleName(8008), delay = 500, cooldown = 3200 }, -- Campfire kit,
I have described you above in my first answer October 2024 how to get them from and define new table lines with them.
You do not need to register there.
-> Username and password are both: esolog
It was just added meanwhile to prevent bots from automatically crawling the websites.
Token of Root Sunder 349
Juggler's Knive 598
[349] = { abilityId = false, name = GetCollectibleName(349), delay = 500, cooldown = 3200 }, -- Token of Root Sunder
[598] = { abilityId = false, name = GetCollectibleName(598), delay = 500, cooldown = 3200 }, -- Juggler's Knive
Make sure to change the delay 500ms and cooldown 3200ms to the proper values of the mementos
Yes, last time (Ocotber 2024) the username was not needed and I did not remember I linked you the website then. Too many forum posts etc. :-)
So just got the attention drawn to it again, by your post yesterday.
If the mementos cannot be found in your usual collections and added to the wheel from there, I doubt that addons could do it.Question, i notice the Almalexia lantern thing can be started through the short cut wheel, yet the campfire, the knives , for example, cannot, they have to be turned on the long way. Is there a reason for that? Is there anything that can be done to allow them to be accessed through the addon through the wheel?
Sorry, I cannot help with console addons, nor did I release any. Please go the official way and ask the author of the console addon "Permanent Memento".Btw, on consoles (Xbox Series X) Permanent Memento add-on causes huge fps drops and crashes in combat.
Nothing similar on PC?
No matter which memento I try, same results.