PHP Code:
if(created) {
timeout = 0.05;
}
if(timeout) {
if(keydown2(keycode(f), false) || keydown2(keycode(F), false)) {
// Play Animation One
} else {
// Play Animation Two
}
timeout = 0.05;
}
Something like that? Not sure if that's the correct usage of keycode() though.