This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Away

Old posts that have not been replied to for several years.
Locked
User avatar
CooLB0Y
Voice
Posts: 29
Joined: Fri Mar 26, 2004 2:06 pm
Location: Australia

Away

Post by CooLB0Y »

is it possible to do an away tcl for an eggdrop soon as the eggdrop connect to a server i want it to set it self away?
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

Use this script. BitchX Poser Script It sets your eggdrop away and also hides the fact that it is an eggdrop bot. Usefull for when your bot is on a server which disallows bots. ;)
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
CooLB0Y
Voice
Posts: 29
Joined: Fri Mar 26, 2004 2:06 pm
Location: Australia

Post by CooLB0Y »

thanks,but is it possible to do a tcl i can choose my own away msg?
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

Code: Select all

bind msg n !away setaway

proc setaway {nick uhost hand arg} {
   set atext "------set your away message here------"
   putserv "away :$atext"
   putserv "PRIVMSG $nick :Marked myself away" 
}
This should do what you asked. just message your bot !away and it will set it away. Only bot owners can use this command.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

Here's what I use, randomly changes away messages every 30 minutes:

Code: Select all

#########################
## ------------------- ##
## 15. Bot-Away Script ##
## ------------------- ##
#########################


set awaymsgs {
{Auto-Away since 10 mins. - [BX-MsgLog Off]}
{Auto-Away since 15 mins. - [BX-MsgLog Off]}
{Auto-Away since 30 mins. - [BX-MsgLog Off]}
{Automatically set away. - [BX-MsgLog Off]}
{Shaving. - [BX-MsgLog Off]}
{Doing laundry. - [BX-MsgLog Off]}
{Out of town. - [BX-MsgLog Off]}
{Cooking dinner. - [BX-MsgLog Off]}
{Recharging. - [BX-MsgLog Off]}
{Doing homework. - [BX-MsgLog Off]}
{Busy with the wife. - [BX-MsgLog Off]}
{Gone shopping. - [BX-MsgLog Off]}
{Groceries. - [BX-MsgLog Off]}
{On vacation. - [BX-MsgLog Off]}
}

proc make:away {} {
 putquick "AWAY :[lindex $::awaymsgs [rand [llength $::awaymsgs]]]"
 timer 30 make:away
}

timer 30 make:away
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Busy with the wife? Oh how rude. lol
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

Alchera wrote:Busy with the wife? Oh how rude. lol
haha you have a dirty mind :P she could be making him decorate :lol:
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

BUSY - could be anything.

But we all know what I was talking about. :)
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
User avatar
CooLB0Y
Voice
Posts: 29
Joined: Fri Mar 26, 2004 2:06 pm
Location: Australia

Post by CooLB0Y »

thanks i tried it and it works pretty well :D.
Locked