Top

How fast can you type A-Z?


mIRC Code
+ 7 likes
Please Register to submit score.
Bookmark and Share
Average Score  8.4 (of 5 scores)
Date Added  Aug 01, 2009
Last Updated  Aug 28, 2009
Tags  44  a  alias  command  expressions  fast  faster  file  help  ini  irc  jonesy  jonesy44  menu  mirc  regex  regular  snippet  text  type  z 

Introduction

How fast can you get from A-Z on your keyboard?
Take this test & find out :)

Simple snippet for when you're bored, hammer those keys & try for a new record. Post your records here! =D



Grab the Code

menu * {
  -
  A-Z Speed Test:azspd
}
alias azspd dialog $iif($dialog(azspd),-v,-m azspd) azspd
alias azspd.upd did -ra azspd 2 $+($round($calc(($ticks - %azspd.sta) /1000),2),s)
alias azspd.currchr noop $regex($did(azspd,3),/\[(.)\]/) | return $regml(1)
alias azspd.currloc noop $regex($did(azspd,3),/(.*)\[.\]/) | return $len($regml(1))
dialog azspd {
  title A-Z Speed Test
  size -1 -1 200 90
  option pixels
  text Time --, 1, 10 10 40 20
  text 0.00s, 2, 50 10 40 20
  text [A]BCDEFGHIJKLMNOPQRSTUVWXYZ, 3, 10 30 200 20
  edit "", 4, 10 60 40 20, center
  button Exit, 5, 90 59 100 21, cancel
}
on *:dialog:azspd:*:*: {
  if $devent == init { did -f $dname 4 | unset %azspd.* }
  elseif $devent == edit && $did == 4 {
    if !%azspd.sta && $did(4) == A { set %azspd.sta $ticks | .timerazspd 0 0 azspd.upd }
    elseif $did(4) == Z && $azspd.currloc == 25 { .timerazspd* off | dialog -x $dname | noop $input(Test completed in -- $+($round($calc(($ticks - %azspd.sta) /1000),2),s!),oi,A-Z Info) | halt }
    if $did(4) == $azspd.currchr { var %yx = ABCDEFGHIJKLMNOPQRSTUVWXYZ | did -ra $dname 3 $left(%yx,$calc($azspd.currloc +1)) $+ $+([,$mid(%yx,$calc($azspd.currloc +2),1),]) $+ $right(%yx,$calc(24- $azspd.currloc)) }
    did -r $dname 4
  }
  elseif $devent == close { unset %azspd.* | .timerazspd* off }
}

Comments

  (23)  RSS
jonesy44
Comments: 1,856
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 1, 2009 7:44 pm
7.07s (H)
tv3636
Comments: 84
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 1, 2009 9:42 pm
5.39s And there seems to be bugs with the timer and the exit button. The exit button doesn't work at all:
Code:
button Exit, 5, 90 59 100 21, cancel
perhaps?

The timer kept going after I finished, and I had to exit out (with the window's X button) and start it up again to reset it.

Otherwise neat script
p0d
Comments: 9
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 1, 2009 10:01 pm
10.04 neat script =)
blitzz
Comments: 122
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 1, 2009 10:13 pm
4.32s the best i can do..

7/10
BlueThen
Comments: 391
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 12:19 am
3.95 :)
jonesy44
Comments: 1,856
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 2:37 am
lol! i was meant to add that exit button in after! oops -- sorted it now :)
Which exit method are you using where timers continue -- i thought i'd covered them all.

You liee BT! :P

Thanks for the +Like :)
tv3636
Comments: 84
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 3:24 am
If I finish typing the alphabet and then hit ok the timer continues to run, and the next time I play it doesn't update at all. I have to exit out for it to reset.
Freckle
Comments: 38
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 6:46 am
awesome script!

You're still missing the exit button though :P
Code:
elseif $devent == sclick && $did == 5 { .dialog -x $dname }


Also you need to unset the variables and timer on $devent == init as well because sometimes it's just not doing it when the dialog closes
Code:
if $devent == init { unset %azspd.* | .timerazspd* off | did -f $dname 4 }


I'm really enjoying this xD
jonesy44
Comments: 1,856
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 8:04 am
Ahh that would explain the reset problem! Sorry -- didn't update before. All done now :)
sk68
Comments: 61
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 9:42 am
9.23s cool script
Calyp5o
Comments: 10
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 9:54 am
7.5 seconds ... hehe, works fine. well done.
asakura
Comments: 66
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 11:41 am
i know a kid who can do it in 2.17s on msn :D but he is ACTUALLY A NO LIFER :d but lol yeh its true :D
HeatedHeart
Comments: 52
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 12:02 pm
23 mins 7 seconds.... do i have the fastest time :D
Atr
Comments: 60
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 1:56 pm
Ctrl-V ftw!
PATX
Comments: 390
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 2:55 pm
woot 3.48

@asakura lol thats kids fast... n i thought mine was good, however i do peck instead of typing properly... cud be a reason... oh well.
jonesy44
Comments: 1,856
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 6:40 pm
i know someone who managed a 3.04! Thanks for the positive feedback :)
blitzz
Comments: 122
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 2, 2009 9:33 pm
after trying so hard i just able to reach 3.87s...y just 6?
Dodge
Comments: 26
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 3, 2009 4:15 am
9.69s :$ /me wins the boobie prize (.)(.)

+ like 7/10
b0sse
Comments: 16
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 3, 2009 4:18 am
very nice script :)
i remember having a game like this in school way back, like 10 years ago.

btw, is it possible to make it so that the entire channel can play it as a game?
like with a trigger such as: !azspd or something?
jonesy44
Comments: 1,856
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 3, 2009 5:38 am
Since it's a dialog, that might make it a bit tricky, with time-lag etc.. it's probably best kept as a local script. If you /really/ wanted something that multiple users could use, you could make them go "a" "b" "c" .. etc in the channel with a timer :)

Thankyou for the +Likes & Ratings :)
PATX
Comments: 390
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 3, 2009 1:09 pm
woot! .06

lol, just remeber i have this keyboard for a game i have and its ABC not QWERTY! lolol just have to run ur finge across it.

/me likes to cheat :P
actrez4eva
Comments: 1
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 4, 2009 1:42 pm
where do u put da code
jonesy44
Comments: 1,856
 
mIRC Snippet:  How fast can you type A-Z?
Posted on Aug 4, 2009 6:33 pm
mIRC's remotes -- ALT+R

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom