Go to Page... |
Compatibility: | Deadlands (7.2.5) |
Updated: | 11/14/21 02:47 PM |
Created: | 03/14/14 06:03 PM |
Monthly downloads: | 152 |
Total downloads: | 41,901 |
Favorites: | 68 |
MD5: | |
Categories: | Character Advancement, Character Advancement, TradeSkill Mods, Miscellaneous |
20211111 [CHANGE] - API Updated to 100028 [CHANGE] - Discovered Jewelcrafting [CHANGE] - Got rid of a bug with outputting text [BUG] - Introduced a bug with printing out text to a selected chat tab (sorry, default for now). [CHANGE] - Removed libstub/libaddonmenu - Addon now requires LibAddonMenu-2.0 [CHANGE] - Added some more debug text. 20160601 [CHANGE] - update API version (100011 --> 100015) [CHANGE] - all configuration is done from Settings menu [CHANGE] - replaced veteran with champion for DB support 20150305 [NEW] - add option to toggle timestamp: /m2l set ts [NEW] - add option to move output to another chat tab: /m2l set tab <tab_nr> [CHANGE] - update API version (100010 --> 100011) [CHANGE] - Menu output formatting [CHANGE] - Minor code standardization [BUGFIX] - problem with missing end color tag. Since i use now different way to post in chat, it bypass pChat and the bug is not manifested(but it's still there;)) [BUGFIX] - fix menu for event XP display [BUGFIX] - fix menu for set [BUGFIX] - fix menu for set custom 20141105 [CHANGE] - update API version (100009 --> 100010) [CHANGE] - in output VP are gone, everything is XP now [FIX] - bug with not showing output for VP 20140918 [CHANGE] - update API version (100008 --> 100009) 20140806 [CHANGE] - update API version (100007 --> 100008) 20140713 [NEW] - add Event XP output [NEW] - add debug output, disabled by default [BUGFIX] - bug with negative max exp for veteran ranks 20140630.1 [CHANGE] - disable debug output left from ver 20140630 20140630 [CHANGE] - update API version (100004 --> 100007) [ADDED] - add Zenimax disclosure statement in manifest [CHANGE] - compatibility with new API and events return values [CHANGE] - VPGains are counted for quests 20140427.1 [BUGFIX] Finally VPGains for KILLS are counted. Will add the rest later. Thanks a lot Iaotle :) 20140427 [FIX] Problems with output, and a if check that shouldn't have been there. 20140426 [FIX] Addon would fail if users made filters ending with "]". 20140422 [NEW] - Export function for Custom XP/SKILL/QUEST [NEW] - Quest XP now optionable output [ADDED] - An extra default output. [CHANGE] - Tried to do some formatting on the menu. [BUGFIX] - Hopefully no 0 skill gain output. 20140420 [CHANGE] 100% Rewritten. [NEW] Custom output for KILLS or SKILLS with/without colours [NEW] Veteran Points Really should work this time! [NEW] Localization for French and German clients (not translated, but they are available in the "Strings.lua") If anyone would care to translate :)
File Name |
Version |
Size |
Uploader |
Date |
20160601 |
47kB |
mra4nii |
06/01/16 10:05 AM |
|
20150305 |
8kB |
mra4nii |
03/05/15 06:38 AM |
|
20141105 |
8kB |
mra4nii |
11/05/14 12:13 AM |
|
20140918 |
8kB |
mra4nii |
09/17/14 03:17 PM |
|
20140806 |
8kB |
mra4nii |
08/05/14 07:36 PM |
|
20140713 |
8kB |
mra4nii |
07/13/14 03:02 PM |
|
20140630.1 |
7kB |
mra4nii |
06/29/14 05:16 PM |
|
20140630 |
7kB |
mra4nii |
06/29/14 04:57 PM |
|
20140427.1 |
7kB |
ins |
04/27/14 11:45 AM |
|
20140427 |
7kB |
ins |
04/27/14 09:47 AM |
|
0.6 |
3kB |
ins |
04/17/14 10:00 PM |
Comment Options |
11/14/21, 06:53 PM | ||
|
I'll have a look and update accordingly. Thanks. |
|
|
ins |
View Public Profile |
Send a private message to ins |
Find More Posts by ins |
Add ins to Your Buddy List |
11/14/21, 04:41 PM | |
|
Hey there,
if you add libraries/addons to the (Otional)DependsOn lines please also check if the libs got a special version you need to make sure is loaded in order to be able to use that lib's global variables! e.g. LibAddonMenu-2.0 introduced the global LibAddonMenu2 with version 28 first! So you should, for new/reviced addons, add the >=28 to the end of the line: Else some users may have an older version installed, the game thinks everything is alright but it still throws errors then! Code:
## DependsOn: LibAddonMenu-2.0>=28 The version is writtten in the lib/Addon's txt file, tag ## AddOnVersion: <unsignedInteger> Lib versioning and why it is important (as LibSub is not used anymore) is described here: https://wiki.esoui.com/Libraries#Library_versioning Also think about the SavedVariables please if you revive addons. If there is no need to mifrate them from old ones or if the version of SV increases and they are reset, please use the GetWorldName() function and use it in ZO_SavedVars parameter for "profile" e.g. to distinguish the settings for different ESO servers (NA Megaserver, EU Megaserver, PTS). And if addons still use ZO_SavedVars:NewCharacterNameSettings or ZO_SavedVars:New (will use the same cahracter names!) change it to ZO_SavedVars:NewCharacterIdSettings please so the SV are saved with the server's characerId -> rename safe! Here you can see what the "profile" parameter is: Code:
ZO_SavedVars:NewAccountWide(savedVariableTable, version, namespace, defaults, profile, displayName) --displayName could be used to overwrite your currently logged in @accountName! You can specify something like "AllAccountsSaveTheSame" to --save it all teh same for all acounts e.g.! ZO_SavedVars:NewCharacterIdSettings(savedVariableTable, version, namespace, defaults, profile)
Last edited by Baertram : 11/14/21 at 04:49 PM.
|
|
Baertram |
View Public Profile |
Send a private message to Baertram |
Find More Posts by Baertram |
Add Baertram to Your Buddy List |
01/27/15, 11:16 AM | ||
|
Just a head-up. I have not so much time for addons, but still i didn't forget about this problem.
Most probably i'll fix it with new version i'm preparing. It will include some new features as well: ability to enable/disable timestamp, ability to move the output to another chat tab. And as a side note, Ayantir did a enormous work in his addon pChat regarding the problem with missing end color tag. Technically the problem is gone now. Still, i will fix it as well.
|
|
|
mra4nii |
View Public Profile |
Send a private message to mra4nii |
Send email to mra4nii |
Find More Posts by mra4nii |
Add mra4nii to Your Buddy List |
Spudd |
View Public Profile |
Send a private message to Spudd |
Send email to Spudd |
Find More Posts by Spudd |
Add Spudd to Your Buddy List |
01/11/15, 12:25 PM | |
|
i'll take a look in next few days on this
|
|
mra4nii |
View Public Profile |
Send a private message to mra4nii |
Send email to mra4nii |
Find More Posts by mra4nii |
Add mra4nii to Your Buddy List |
Spudd |
View Public Profile |
Send a private message to Spudd |
Send email to Spudd |
Find More Posts by Spudd |
Add Spudd to Your Buddy List |
01/10/15, 05:21 PM | ||||
Your examples should look like this: Set output xp <cG>XP:|r <1> Shows: XP: 1234 Set output xp XP gained: <cW><1>|r Shows: XP gained: 1234 Set output xp XP gained: <cW><1>|r <cG>Good job!|r Shows: XP gained 123 Good job! But I'd preffer using color codes directly: Code:
/m2l set custom xp |cFFFFFF+|r|c00FF00<1>|r|cFFFFFFXP (|r|c00FFFF<3>|r |cFFFFFFto level up)|r /m2l set custom quest |cFFFFFF+|r|c00FF00<1>|r |cFFFFFFfrom|r |c00FFFF<999>|r /m2l set custom skill |cFFFFFF+|r|c00FF00<1>|r |cFFFFFFin|r |c00FFFF<4>|r |cFFFFFF(|r|c00FF00<3>|r |cFFFFFFto level up)|r /m2l set output 999
Last edited by Garkin : 01/10/15 at 05:54 PM.
|
||||
|
Garkin |
View Public Profile |
Send a private message to Garkin |
Send email to Garkin |
Find More Posts by Garkin |
Add Garkin to Your Buddy List |
01/10/15, 03:38 PM | |||
Forum posts: 1
File comments: 16
Uploads: 0
|
|
||
|
Spudd |
View Public Profile |
Send a private message to Spudd |
Send email to Spudd |
Find More Posts by Spudd |
Add Spudd to Your Buddy List |
01/10/15, 02:57 PM | ||
|
||
|
Garkin |
View Public Profile |
Send a private message to Garkin |
Send email to Garkin |
Find More Posts by Garkin |
Add Garkin to Your Buddy List |
01/10/15, 09:06 AM | |||
Forum posts: 1
File comments: 16
Uploads: 0
|
Just to be clear, it happens on every line that the add-on sends to the chat window. Including when the game first loads, when I display the add-on's help, everything. ... Ok I found the issue. The "rh" is coming from the pchat add-on. No idea why, but when I disable that add on, I don't get the "rh" any more. |
||
|
Spudd |
View Public Profile |
Send a private message to Spudd |
Send email to Spudd |
Find More Posts by Spudd |
Add Spudd to Your Buddy List |
01/09/15, 01:42 AM | ||
|
Hello,
Please try to remove addon settings file(game must be stopped). Its location: C:\Users\<username>\Documents\Elder Scrolls Online\<build>\SavedVariables\insMobs2Level.lua. It will reset to default addon settings. And make sure you use latest version of addon.
|
|
|
mra4nii |
View Public Profile |
Send a private message to mra4nii |
Send email to mra4nii |
Find More Posts by mra4nii |
Add mra4nii to Your Buddy List |
12/26/14, 02:51 PM | |
Forum posts: 1
File comments: 16
Uploads: 0
|
Any idea why I get "rh" on every line when the first color is changed?
For example: Set output xp <cG> XP: <1> Shows: rhXP: 1234 Set output xp XP gained: <cW><1> Shows: XP gained: rh1234 Set output xp XP gained: <cW><1> <cG> Good job! Shows: XP gained rh123 Good job! The colors change properly but the first one always shows rh. |
|
Spudd |
View Public Profile |
Send a private message to Spudd |
Send email to Spudd |
Find More Posts by Spudd |
Add Spudd to Your Buddy List |
08/25/14, 05:43 AM | ||
|
No plans for settings menu for now. There are not enough settings to move the to a menu
|
|
|
mra4nii |
View Public Profile |
Send a private message to mra4nii |
Send email to mra4nii |
Find More Posts by mra4nii |
Add mra4nii to Your Buddy List |
08/22/14, 07:00 AM | |
Great Addon. Hope this gets a lot of support. Is there a Settings menu in the works? Would be nice to be able to make adjustments from the options menu. Either way, great addon!
|
|
|
Subotai |
View Public Profile |
Send a private message to Subotai |
Send email to Subotai |
Find More Posts by Subotai |
Add Subotai to Your Buddy List |
07/13/14, 03:04 PM | ||
|
Fixed in latest version. At least i strongly believe in this
|
|
|
mra4nii |
View Public Profile |
Send a private message to mra4nii |
Send email to mra4nii |
Find More Posts by mra4nii |
Add mra4nii to Your Buddy List |
You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.