Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Name:
Email:
Subject:
Message icon:

Verification:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Hamo
« on: February 11, 2011, 06:23:33 pm »

like it :D
Posted by: Jane
« on: February 11, 2011, 06:17:51 pm »

You Mean idle bots King ?
Posted by: King_Hual
« on: February 11, 2011, 03:21:21 pm »

First, If you use my owner system:
Code: [Select]
on owner:TEXT:!connecth*:#:{
  if ($2 == $null || $3 == $null) {
    notice $nick Syntax: !connecth < Name of bot > < Channel to join >
  }
  else {
    server -m $server -i $me $+ ` $+ $$2 -j $$3
    notice $nick Bot $$2 Connected and joined $$3
  }
}

Or if you don't use my owner system:
Code: [Select]
on *:TEXT:!connecth*:#:{
  if ($nick == yournamehere) {
    if ($2 == $null || $3 == $null) {
      notice $nick Syntax: !connecth < Name of bot > < Channel to join >
    }
    else {
      server -m $server -i $me $+ ` $+ $$2 -j $$3
      notice $nick Bot $$2 Connected and joined $$3
    }
  }
}