So i have this script running:
Code:
on *:action:$($+(*,slap,*,$me,*)):*:{
  do something
}


I need to edit this based on my nickname.
Since i run mirc through my webserver and i change my nick if i'm connected to it or not, i need a check routine for my nickname to do something different.
Code:
on *:action:$($+(*,slap,*,$me,*)):*:{
  if ($me.nick == away_nickname){
    do something
  } else {
   do something else
  }


Could someone help me on this since i'm new on this ? crazy