This script might be a good start-point for you:
- alias ask {
; Usage: /ask <question>
if $hget(quiz) { hfree quiz }
hmake quiz
hadd quiz @ $ticks
.raw privmsg #quiz $+(:,$chr(1),PING 0,$ticks,$chr(1))
msg #quiz $1-
}
On *:ctcpreply:PING 0*:{
hadd quiz $nick $calc($ticks - $mid($2,@))
haltdef
}
On *:text:@*:#quiz:{
var %lag = $hget(quiz,$nick)
if !%lag {
notice $nick Sorry, but you can't participate until your client properly responds to PINGs.
return
}
msg # $nick answered within $calc(($ticks - $hget(quiz,@) - %lag) / 1000) secs.
}
To ask a question, type
/ask <question>, and the channel (#quiz) will be pinged as well as messaged the question you specify. Also, a hash table will be initiated.
The lag of everyone will be stored in the hash table "quiz".
The answers must start with a trigger -
@. For example, you type:
/ask What's my favorite color? and a user replies:
@green. You can change @ to anything else by modifying the matchtext area of the "on text" event.
When an answer is received, your script will automatically subtract the lag time from the time it took to the user to answer, allowing a fair game.
I'm not good at explaining scripts, especially mine, so if you have any further questions feel free to reply below.