Okay I posted this again... but I lost my script agian and Im doing auto away again... now I am having problem with it again... What i would like for it to set it to away after 45 mins of idle and for the message to repeat once.. not every 45 mins.. here is the code i created..


Code here:
Code:
On *:Connect: { 
  .timer(autoaway) -io 0 10 scon -at1 awaychk 
}
alias awaychk { 
  If ($idle > 2700) && ( $away == $null ) {
    nick %away.nick
    ns identify %away.system.nick.pass
    ame is away, auto-away after 45 minutes
    .timer(autoaway) off
  }
}