Mugwump Speed Tests

by Gregori

Back to Combat Guide.

Gregori2005-10-30 20:30:42
Tester: Gregori
Race: Mugwump
Level: 83

Invoke Circle
Stopwatch Statistics
Replication: 50
Mean Time: 2.637 secs
Mean Time (1 dec place): 2.6 secs
Min Time: 2.062 secs, Max Time: 3.516 secs

Sprinkle Salt
Stopwatch Statistics
Replication: 50
Mean Time: 2.615 secs
Mean Time (1 dec place): 2.6 secs
Min Time: 2.344 secs, Max Time: 2.796 secs

Cudgel
Stopwatch Statistics
Replication: 50
Mean Time: 2.581 secs
Mean Time (1 dec place): 2.5 secs
Min Time: 2.079 secs, Max Time: 3.078 secs

Nature Talisman/Sickle
Stopwatch Statistics
Replication: 51
Mean Time: 2.628 secs
Mean Time (1 dec place): 2.6 secs
Min Time: 2.063 secs, Max Time: 4.766 secs

Ecology Fetish - Using Inyoka
Stopwatch Statistics
Replication: 50
Mean Time: 1.516 secs
Mean Time (1 dec place): 1.5 secs
Min Time: 0.922 secs, Max Time: 2.171 secs


NOTE: That average time on the Talisman test would be alot lower if I hadn't spiked a couple times with latency. Probably running closer to 2.3 - 2.4 seconds.
Gregori2005-10-30 21:23:53
Nature Talisman/Sickle - Using a clean slate. No triggers/aliases/settings other than my stop watch script.
Stopwatch Statistics
Replication: 50
Mean Time: 2.618 secs
Mean Time (1 dec place): 2.6 secs
Min Time: 1.984 secs, Max Time: 3.188 secs

NOTE: Given that the Mean time matches my full settings tests I will assume that with or without triggers the iterations will come out the same on average.

Added Stopwatch script just in case others may want it.

StopWatch Script
CODE

#ALIAS setstop {stoptrig={%-1}} "General|Stopwatch"
#ALIAS stopwatchon {#ECHO Stopwatch ON;#STATE stopwatch 1} "General|Stopwatch"
#ALIAS viewstats {totalval=0;#FORALL @timerec {#ADD totalval %float( %i)};#ECHO %ansi( 12) Stopwatch Statistics;#ECHO Replication: %numitems( @timerec);#ECHO Mean Time: %leftback( %eval( @totalval/%numitems( @timerec)/1000.0), %eval( %pos( ".", %eval( @totalval/%numitems( @timerec)/1000.0))+9)) secs;#ECHO Mean Time "(1 dec place)": %leftback( %eval( @totalval/%numitems( @timerec)/1000.0), %eval( %pos( ".", %eval( @totalval/%numitems( @timerec)/1000.0))+11)) secs;#ECHO Min Time: %min( %replace( @timerec, "|", ",")) secs, Max Time: %max( %replace( @timerec, "|", ",")) secs} "General|Stopwatch"
#ALIAS stopwatchoff {#STATE stopwatch 0;#ECHO Stopwatch OFF} "General|Stopwatch"
#ALIAS setstart {starttrig={%-1};timerec=%null} "General|Stopwatch"
#VAR starttime {42114286} {_nodef} "General|Stopwatch"
#VAR timerec {15843|2274|28251|2193} {_nodef} "General|Stopwatch"
#TRIGGER "stopwatch" {This is a Stopwatch Trigger} {} "General|Stopwatch" {manual}
#COND {@starttrig} {starttime=%secs}
#COND {@stoptrig} {timerec=%additem( %eval( %secs-@starttime), @timerec);#ECHO Time: %eval( %secs-@starttime) Reps: %numitems( @timerec);#STATE stopwatch 1} {manual}


Instructions:

setstart start trigger here; setstart Making a slashing motion
setstop stop trigger here; setstop You have recovered equlibrium.

viewstats to see results

stopwatchon to start processing
stopwatchoff to stop processing
Gregori2005-10-30 22:01:36
Using an altered script to discard outliers (times that are 300 milliseconds over the average times), and find the resulting average from the remainder. This is the result for shielding.

Invoke Circle
---- Stopwatch Statistics ----
Replication: 27
Mean Time: 2.375 secs
Mean Time (1 dec place): 2.3 secs
Min Time: 2079 secs, Max Time: 2563 secs
Number of Outliers: 23
Total Replications: 50
Asarnil2005-10-31 02:52:48
Just for a quick comparison as a furrikin (+1 eq) since there are no +2 eq races around.
QUOTE
Evoke Pentagram
Stopwatch Statistics
Replication: 100
Mean Time: 3.585 secs
Mean Time (1 dec place): 3.5 secs
Min Time: 2906 secs, Max Time: 4453 secs

The ONLY time where I got that 2906 was a once off early in the testing, other than that it didn't drop below 3500.
Morik2005-10-31 03:02:15
Can someone run this stuff, without the outlier removing Gregori has done (just so I can compare!), with eq-penalty and eq-neutral races? I'd like to find the percentage speedup/speeddowns and compare them to eq levels.
Morik2005-10-31 03:03:02
QUOTE(Asarnil @ Oct 31 2005, 10:52 AM)
Just for a quick comparison as a furrikin (+1 eq) since there are no +2 eq races around.

The ONLY time where I got that 2906 was a once off early in the testing, other than that it didn't drop below 3500.
214769



Can you re-run the test again? I have a feeling these occasional 'onceoffs' happen relatively frequenty (one in twentyish..)
Morik2005-10-31 03:04:17
QUOTE(Gregori @ Oct 31 2005, 05:23 AM)
Nature Talisman/Sickle - Using a clean slate. No triggers/aliases/settings other than my stop watch script.
Stopwatch Statistics
Replication: 50
Mean Time: 2.618 secs
Mean Time (1 dec place): 2.6 secs
Min Time: 1.984 secs, Max Time: 3.188 secs

NOTE: Given that the Mean time matches my full settings tests I will assume that with or without triggers the iterations will come out the same on average.

Added Stopwatch script just in case others may want it.

StopWatch Script
CODE

#ALIAS setstop {stoptrig={%-1}} "General|Stopwatch"
#ALIAS stopwatchon {#ECHO Stopwatch ON;#STATE stopwatch 1} "General|Stopwatch"
#ALIAS viewstats {totalval=0;#FORALL @timerec {#ADD totalval %float( %i)};#ECHO %ansi( 12) Stopwatch Statistics;#ECHO Replication: %numitems( @timerec);#ECHO Mean Time: %leftback( %eval( @totalval/%numitems( @timerec)/1000.0), %eval( %pos( ".", %eval( @totalval/%numitems( @timerec)/1000.0))+9)) secs;#ECHO Mean Time "(1 dec place)": %leftback( %eval( @totalval/%numitems( @timerec)/1000.0), %eval( %pos( ".", %eval( @totalval/%numitems( @timerec)/1000.0))+11)) secs;#ECHO Min Time: %min( %replace( @timerec, "|", ",")) secs, Max Time: %max( %replace( @timerec, "|", ",")) secs} "General|Stopwatch"
#ALIAS stopwatchoff {#STATE stopwatch 0;#ECHO Stopwatch OFF} "General|Stopwatch"
#ALIAS setstart {starttrig={%-1};timerec=%null} "General|Stopwatch"
#VAR starttime {42114286} {_nodef} "General|Stopwatch"
#VAR timerec {15843|2274|28251|2193} {_nodef} "General|Stopwatch"
#TRIGGER "stopwatch" {This is a Stopwatch Trigger} {} "General|Stopwatch" {manual}
#COND {@starttrig} {starttime=%secs}
#COND {@stoptrig} {timerec=%additem( %eval( %secs-@starttime), @timerec);#ECHO Time: %eval( %secs-@starttime) Reps: %numitems( @timerec);#STATE stopwatch 1} {manual}


Instructions:

setstart start trigger here; setstart Making a slashing motion
setstop stop trigger here; setstop You have recovered equlibrium.

viewstats to see results

stopwatchon to start processing
stopwatchoff to stop processing
214567



You forgot to divide by 1000.0 for both min/max. Other than that, and a little squinting at the results, nifty. And someone else has used it too! How cool.
Asarnil2005-11-03 12:24:53
I just conducted these ones after Hajamin's changes.
-Evoke Pentagram-
Stopwatch Statistics
Replication: 372
Mean Time: 3.796 secs
Mean Time (1 dec place): 3.7 secs
Min Time: 1641 secs, Max Time: 5219 secs

The <3 second and <4.5 ones were fairly rare, but they were there, I was hitting between 3 and 3.4 seconds on a semi-regular basis as with the 4.2-4.5 second ones. On average though it hit 3.6-3.8 seconds.