Now I know this is simple
Code:
$readini(derp.ini, herps, $2/$nick)
However I know you can search for $null but how do you search if there IS a name IE return if there is a name there but else continue, Here is the code I am working on.

Code:
/////////////////
///Head Admin///
///////////////
on *:text:!hadmin:#: {
var %permstat = $readini(adminlist.ini, HeadAdmin)
  if (%permstat == $null) {
    msg $chan No Head Admin is set!
  }
  elseif (%permstat =)


As you can see I am stuck at that last part, How do I set it so that it's the opposite of null, IE not caring if his name is timmy or bob, if there is a HeadAdmin it will not continue, Any help?