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.
Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
edu
Voice
Posts: 31 Joined: Sun Oct 29, 2006 2:10 pm
Post
by edu » Wed May 16, 2007 1:37 am
Hi guys, I need a lil help here ... If may possible I need a login script to X @ undernet (putquick "PRIVMSG
X@channels.undernet.org :login %username %password", then if the bot is NOT logged in I want it to "halt" the joining on the channels, only when he's logged in he'll join the channels, thanks.
PS: sorry for my bad english
Seek the truth
Alchera
Revered One
Posts: 3344 Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:
Post
by Alchera » Wed May 16, 2007 8:30 am
Been written from memory. Try
Search .
I think it actually may be written by caesar.
Add [SOLVED] to the thread title if your issue has been.
Search |
FAQ |
RTM
iamdeath
Master
Posts: 323 Joined: Fri Feb 11, 2005 2:32 pm
Location: *HeLL*
Contact:
Post
by iamdeath » Wed May 16, 2007 9:00 pm
|AmDeAtH @ Undernet
Death is only the *Beginning*...
mavericku
Halfop
Posts: 62 Joined: Sun Jun 12, 2005 11:32 pm
Location: somewhere in the world
Contact:
Post
by mavericku » Sun May 20, 2007 2:23 pm
mavericku
xU
Voice
Posts: 7 Joined: Thu May 24, 2007 4:04 pm
Post
by xU » Thu May 24, 2007 5:42 pm
Code: Select all
############################################## Date: 25May06 ############################
## xU (Qadsia@hotmail.com WeArab: #Qadsia ######## login.tcl #
#########################################################################################
#########################################################################################
# # Note: #
# Name: MeShari # #
# Nickname: xU # None #
# IRC: Irc.WeArab.Net: -j #qadsia # #
# Email: Qadsia@hotmail.com # #
# # #
# ###########################
#########################################################################################
## sets ##
##########
# write username
set usernameX "xU"
# write yourpassword
set passusernameX "mypass"
## bind ##
##########
bind init-server - * proc:connect
## proc ##
##########
proc proc:connect { type } {
global usernameX passusernameX
putquick "PRIVMSG X@channels.undernet.org :login $usernameX $passusernameX"
}