If it didn't ask you to identify then it probably did work.
However, please note that if it did it was a bit of a fluke as this line
Code:
if ($istok(DroidLife) && ($nick == nickserv) { .msg $v2 identify xxxx }
is misconfigured.
It should look like
Code:
if ($istok(DroidLife,$network,32) && ($nick == nickserv)) { .msg $v2 identify xxxx }


If you only deal with one network, then you could replace $istok(DroidLife,$network,32) with ($network == DroidLife)