The simplest method is to run the bot using a sepearte instance of mirc, that only it has the scripts of the bot in.
if u must run both users using the same mirc you well need to code in whcih nick is ment to respond to the command
on *:TEXT:cookie:#:{
if ($me == FDBot) {
describe $chan *Gives you a cookie*
}
}
***
if yoiu are going to do that may i suggest this, you have located in one remote script a alias called BOTNAME as follows
alias botname return FDBot
then any commands only the bot should function can have this...
on *:TEXT:cookie:#:{
if ($me == $botname) {
describe $chan *Gives you a cookie*
}
}
This well allow you to change the name of the bot (if u wished to) in one place, and that well effect all scripts for the bot only.