Download
(47 Kb)
Download
Updated: 02/05/16 06:36 AM
Patch for:
RaidTimer.
Pictures
File Info
Compatibility:
Thieves Guild (2.3)
Orsinium (2.2.4)
Updated:02/05/16 06:36 AM
Created:03/25/15 08:26 AM
Monthly downloads:453
Total downloads:39,553
Favorites:31
MD5:
Categories:Plug-Ins & Patches, Raid Mods
RaidTimer Continued  Popular! (More than 5000 hits)
Version: 1.4.0
by: silentgecko, Ayantir, Garkin
Note:
Garkin quit ESO, so i (@silentgecko) take care or this AddOn and keep it updated.

Please use the Author Portal to report Bugs and Features

What is this?
RaidTimer is an addon that displays current time, raid score and estimated final score of your trial run and gives you a hint, when you're on the way to make a new top score.

How to use?
The timer will go off as soon as trial starts, to customize the font/size/color and position before you join a run you can open the menu at Settings -> Addon Settings -> RaidTimer.
Also you may want have a look at /rt help.
v1.4.0
- Update for Thieves Guild!
- Added Vitality Bonus display
- Updated timer Display to use the new GetRaidDuration() function instead of self calculation

Note:AddOn is compatible with PTS and Live Version, only on PTS you will see the Vitality Bonus - Because of the current Api Version Bug it will display "outdated" on both Servers (PTS and Live - It'll be fixed by ZOS in an incremental Patch for PTS)

v1.3.6
- removed spamming in chat (sorry for that)

v1.3.5
- automatic restart of timer, when you "re"-start a trial, for e.g. regrouping - it restarts when you begin a new trial - then the raidtime and score is set to zero

v1.3.4
- better point calculation for estimated score (don't use the current score, just use the max points)

v1.3.3
- fixed bug on /rt stop outside trials
- better point calculation for estimated score

v1.3.2
- added point substraction for Vet Maelstrom Arena
-- atm ZOS subs 15k points from your score, so we are doing this too

v1.3.1
- fixed calculation for vDSA (don't include the hardmode calculation)
- cleanup code

v1.3.0
- fixed formula for estimated points, no it should work correctly in all trials and arenas
- added localization
- atm only german and english, if you want to help to localize RaidTimer into spanish, french or russian, send me a pm (@silentgecko)
- And i localized the Point Reasons. Have fun with them ;) (You can see them in chat window, when you enable the debug mode)

v1.2.2
- fixed points for AA and HR

v1.2.1
- Version Number fixes

v1.2.0
- Updated API Version
- Updated Libs
- Updated estimated Scores and Times for Calculations for AA, HR and SO
- New Features:
- Added Maelstrom Arena (Veteran)
- TopScores - The addon tracks now your current topscores when you're running into a trial. It will give you a hint, if you're on the way to make a new topscores ;)
- Todo: Get the current topscores for a player from the API. At the moment it is stored accountwide.
- Hardmodes - New setting if you want to run a trial in hardmode - Then the addon will add the bonus points automatically to the predicted and current Score. This if for better score prediction in trials

v1.1.5
- added estimated final score for HR and SO

v1.1.4
-added estimated final score for DSA & AA
Archived Files (11)
File Name
Version
Size
Uploader
Date
1.3.6
47kB
silentgecko
01/28/16 03:17 PM
1.3.5
47kB
silentgecko
01/26/16 07:40 AM
1.3.4
47kB
silentgecko
01/24/16 03:37 PM
1.3.3
47kB
silentgecko
01/18/16 09:12 AM
1.3.2
47kB
silentgecko
01/10/16 09:14 AM
1.3.0
46kB
silentgecko
01/02/16 05:35 PM
1.2.2
42kB
silentgecko
12/23/15 10:32 AM
1.2.1
42kB
silentgecko
12/21/15 07:23 AM
1.1.5
34kB
Garkin
04/23/15 06:17 AM
1.1.4
34kB
Garkin
04/22/15 11:15 AM
1.1.3
34kB
Garkin
03/25/15 08:26 AM


Post A Reply Comment Options
Unread 07/03/17, 09:16 PM  
Majeure
 
Majeure's Avatar

Forum posts: 0
File comments: 121
Uploads: 0
Code:
user:/AddOns/RaidTimer/RaidTimer.lua:504: attempt to index a nil value
stack traceback:
	user:/AddOns/RaidTimer/RaidTimer.lua:504: in function 'RaidTimer.TimerStop'
Report comment to moderator  
Reply With Quote
Unread 08/06/15, 03:25 AM  
Garkin
 
Garkin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 832
File comments: 1097
Uploads: 33
Originally Posted by aimsire
Thanks very much for this addon. It helped us improve our vDSA runs
For our group I added some code to get the time for the current stage in vDSA (to compare and see if we improved or not). I am not very familiar with LUA best practices, so I just added this in RT.ScoreUpdate():

Code:
local roundDuration = GetDiffBetweenTimeStamps(currentTime, RT.lastRoundTime)			
local formattedTime = ZO_FormatTime(roundDuration, TIME_FORMAT_STYLE_COLONS,
							TIME_FORMAT_PRECISION_SECONDS)
RT.lastRoundTime = currentTime
if (RT.raidId == 4) then
	d(zo_strformat("Current Stage Time: <<1>>", formattedTime))
end
Works well, but maybe you could add this once you update the addon anyway - might be helpful for others too.
I don't play ESO anymore, so do not expect updates. If anyone wants to continue this addon, send me PM.
Report comment to moderator  
Reply With Quote
Unread 08/06/15, 03:19 AM  
aimsire

Forum posts: 0
File comments: 4
Uploads: 0
Thanks very much for this addon. It helped us improve our vDSA runs
For our group I added some code to get the time for the current stage in vDSA (to compare and see if we improved or not). I am not very familiar with LUA best practices, so I just added this in RT.ScoreUpdate():

Code:
local roundDuration = GetDiffBetweenTimeStamps(currentTime, RT.lastRoundTime)			
local formattedTime = ZO_FormatTime(roundDuration, TIME_FORMAT_STYLE_COLONS,
							TIME_FORMAT_PRECISION_SECONDS)
RT.lastRoundTime = currentTime
if (RT.raidId == 4) then
	d(zo_strformat("Current Stage Time: <<1>>", formattedTime))
end
Works well, but maybe you could add this once you update the addon anyway - might be helpful for others too.
Report comment to moderator  
Reply With Quote
Unread 04/23/15, 07:01 AM  
Garkin
 
Garkin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 832
File comments: 1097
Uploads: 33
I have added estimated final score for the trials.

How to get final score? Everything is about time:

Code:
((threshold - trialTime) * raidPoints / 1,000) + raid points
threshold: (seconds) you will get bonus points for each second under the threshold and penalty for each second over this threshold. Threshold values are AA: 1,200, HR: 1,200, SO: 1,800, DSA: 7,200 seconds.

trialTime: (seconds) time to finish trial

raidPoints: points earned from activity in trial - killing of almost every mob is rewarded by some raid points, only exception is Dragonstar Arena, where you get 200 points per stage + 50 points when you kill the last boss. Usually you will get total of 7,300 raidPoints in AA, 6,880 in RA, 10,525 in SO and 2,050 in DSA. Hard mode gives bonus of 40,000 raidPoints.

This formula doesn't take in account deaths, but they have almost no impact on final score.

See also: http://forums.elderscrollsonline.com...ussion/164950/
Last edited by Garkin : 04/25/15 at 03:47 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: