Buy a random PS2 Taiko game + PS2 -> PC adapter, get drum, throw away game, play osu!. You haven't tried Taiko Mode until you've tried it with a real drum.
This script is written for GlovePIE, BTW. Get the program here: http://carl.kenner.googlepages.com/glovepie_download
This script is written for GlovePIE, BTW. Get the program here: http://carl.kenner.googlepages.com/glovepie_download
//osu! Taiko Drum Script v1.1 by Loginer
//Designed for used with PS2 Taiko Drum and adapter of choice
//Controls:
//Middle = Left mouse button (Red)
//Side = Right mouse button (Blue)
key.a = joystick1.button2
key.z = joystick1.pov1left
key.s = joystick1.button8
key.x = joystick1.button7
//Unnecessary debug script to make script seem more complex than it is
if joystick.button2 = true or joystick.pov1left = true
var.1 = "don"
end if
if joystick.button2 = true and joystick.pov1left = true
var.1 = "DON"
end if
if joystick.button2 = false and joystick.pov1left = false
var.1 = ""
end if
if joystick.button8 = true or joystick.button7 = true
var.2 = "kat"
end if
if joystick.button8 = true and joystick.button7 = true
var.2 = "KAT"
end if
if joystick.button8 = false and joystick.button7 = false
var.2 = ""
end if
if (var.1 = "don" or "DON") and (var.2 = "kat" or "KAT")
var.0 = "+"
else
var.0 = ""
end if
debug = var.1 and var.0 and var.2