What it do?
It generates how much %male and %female a user is.
Credits
Codeninja
bind pub - !gender rand:pub
proc rand:pub {nick uhost hand chan text} {
set male [rand 100]
set female [expr 100 - $male]
puthelp "PRIVMSG $chan :$nick: You are $male% Male and $female% Female"
}