how to time events

Posted by Jemini on Sat 11 Oct 2003 10:21 AM — 4 posts, 17,162 views.

#0
how do i. . time how long an event takes?
eg. frm the time i request a quest from the questor

Komrad Administrator Petroski tells you 'Good luck <name>. Return safely!'

until

Komrad Administrator Petroski tells you 'As a reward, I am giving you * quest points and * gold.'

how do i do it?
Australia Forum Administrator #1
The general idea is shown in the "level timer" plugin. See this page:

http://www.gammon.com.au/forum/?bbsubject_id=3102
#2
i get what u mean. how then do i use 2 triggers instead of one? and how do i report this? report being, recalling this information.
Amended on Sun 12 Oct 2003 11:34 PM by Jemini
Australia Forum Administrator #3
Using the general technique shown in that plugin, you would have two triggers. One matches on:

Komrad Administrator Petroski tells you 'Good luck *. Return safely!'

The other on:

Komrad Administrator Petroski tells you 'As a reward, I am giving you * quest points and * gold.'


The first one saves the current time (using the VB function "Now") and the second one also gets the current time and does a DateDiff to find the difference between them.