im trying to make a script that when u type !find word it searches the bot and gives u the result not like @find that searches the fserves
i tried changeing the script that this guy gave me to auto hop the bots with version thanks for that btw
so heres what i did:

On @*:TEXT:!find:#: {
if $hget(ctcp_version,0).item > 10 { return }
.ctcp $chan version
hadd -mu20 ctcp_version $chan 1
}

on !*:ctcpreply:version *:{
if $hget(ctcp_version,$chan) {
if iroffer isin $2- && $nick isreg $chan {
ctcp $nick xdcc list
}

on !*:ctcpreply:xdcc list *: {
if $hget(ctcp_xdcc_list,$nick) {
if $2 isin $2- && $nick isreg $chan {
msg $chan $2-
ELSE msg $chan sorry couldnt find what you were looking for! } }

this didnt work so can u plase help me out here?