should go something like this:
alias mta.kill {
if ($mta.kills($1,$3) == 10) && ($mta.deaths($1,$3) == 0) {
mta.msg $1 $3 You are suspected to be cheating (Youd have 10 kills and no deaths)
mta.kick $1 $3
}
}
Just paste that into a script file and load it in mtama
BTW: I don't think this is really a good way to find cheaters - there's no substitute for a good admin...
Also this may work, not sure though (works out whether the kills = 10 more than the deaths)
alias mta.kill {
if ($calc($mta.kills($1,$3) - $mta.deaths($1,$3)) >= 10 {
mta.msg $1 $3 You are suspected to be cheating!
mta.kick $1 $3
}
}