OK: I have the following problem. I made a script that if you type !order blah, it brings you that, and if you type !order blah for blah, it brings it to them. And for some reason it is not working:
on 1:TEXT:!order*:#avatarrp,#mirc:{ if (%mood == 3)
/msg $chan * ADZ's Robot is too tired (Yeah ROBOTS GET TIRED TOO!)...No ordering today!
}
else { /msg $chan * ADZ's Robot brings $nick $2-
}
on 1:TEXT:!order*for*:#avatarrp,#mirc:{ if (%mood == 3)
/msg $chan * ADZ's Robot is too tired (Yeah ROBOTS GET TIRED TOO!)...No ordering today!
}
if ($3 == for) {
/msg $chan * ADZ's Robot brings $2 for $4 from $nick | halt
}
if ($4 == for) {
msg $chan * ADZ's Robot brings $2 for $5 from $nick | halt
}
if ($5 == for) {
msg $chan * ADZ's Robot brings $2 for $6 from $nick | halt
}
else {
msg $chan * ADZ's Robot only delivers orders to other people that are under 4 words long. Bad memory

}