If the notices you want to check are not marked "persistent" then you can check for the id in the array $vbulletin->np_notices_displayed like:
Code:
<if condition="!empty($vbulletin->np_notices_displayed[3])">
Notice 3 displayed<br />
</if>
That doesn't work for persistent notices. Also, the ids aren't really displayed anywhere but you can see them in the url (if your browser displays it when you hover over a link) by going to the Notice manage and hovering over the notice name.
It might be a better idea (depending on exactly what you want to do of course) to check the conditions yourself. For instance, if a notice is guests only you could check for <if condition="!$show['member']">.