The Reflex Tester.

Status
Not open for further replies.

Lord AnthraX

Fully Optimized
Messages
2,992
Simple Game.

Go here


Post your time, with a screenshot and thumbnail it.


Let's see who has the best reflex time. Choose any color you like.
 
mehyo1.jpg


eh I guess it's ok. :)
 
kfc469 said:
YEAH!! I beat the super moderbot!!!! guess you dont have robot like reflexes huh? :):)

I dunno. I know I have pretty good reflexes when It comes to banning. I bet I can make a post in the mods forum containing the spammer's pertinent information, ban them, delete/move/post my banned picture in their thread in less than a minute:D
 
well your really getting to practice those skills here lately with all of the spam that has been coming TF's way. OK. enough hijacking of this thread, im going to stop now.
 
screenshot2ci8.png





Mine's better, anyway :D
Code:
#!/bin/bash
#Script must be named 'reflex'
TIMEFORMAT=$'%3R Seconds'
clear
echo "Press the Enter key when you hear the tone."
sleep $((($RANDOM % 10) + 1))
echo -e "\a"
time read KEY
echo -e "\n"
echo -n "Would you like to try again? (y/n) --> "
read AGAIN
if [ $AGAIN == 'y' ] || [ $AGAIN == ];
then ./reflex
else clear && exit
fi
Once in a while I do a lame little BASH script, just to try and learn something
 
Status
Not open for further replies.
Back
Top Bottom