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.

Chatspace Identifier {Help Me}

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
z
zaibi
Voice
Posts: 4
Joined: Thu Jan 26, 2006 6:28 am

Chatspace Identifier {Help Me}

Post by zaibi »

Hello ALl

THere is a big problem with me :(.. Sir i want to Run Eggdrop On Chatspace server.. where password identification needs before logging in to server ... its not like Dalnet that we have to identify after logging..
and just due to this i can't run my eggdrop... bcoz there is no TCL file for chatspace server. Kindly give me a Chatspace Identifier TCL Script. i will be thankful to u all.

In wait of ur reply

Zaibi
User avatar
Sir_Fz
Revered One
Posts: 3793
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

You mean your server needs a password to connect to?
set servers {
server:port:pass
}
m
minted
Halfop
Posts: 64
Joined: Wed Jul 20, 2005 9:58 am

Post by minted »

i have such a code, but dont want to post it on here, email me if u want it scottish_insanity@yahoo.com

chatspace has an odd setup, and its snotices/ raw outputs, nick identifying are all different from other servers.
User avatar
Sir_Fz
Revered One
Posts: 3793
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

minted wrote:i have such a code, but dont want to post it on here, email me if u want it scottish_insanity@yahoo.com

chatspace has an odd setup, and its snotices/ raw outputs, nick identifying are all different from other servers.
How is their identifying system?
m
minted
Halfop
Posts: 64
Joined: Wed Jul 20, 2005 9:58 am

Post by minted »

Code: Select all

raw 512:*:{
  pass password
}
this is the raw mirc code i use on chatspace servers.
my identifying tcl is somewhat different and reads from the snotice that the nickpass is required

Code: Select all

(SNotice) Nickname john is registered. You must provide the password (type /PASS password) to use it
my tcl appears somewhat bloated, i'd probably use any code u gave on my bot.
z
zaibi
Voice
Posts: 4
Joined: Thu Jan 26, 2006 6:28 am

Post by zaibi »

Hi dears


I need a TCL file for eggdrop in which it auto identify my register nick on server of Chatspace.
as you know in Chatspace server is very different from dalnet server. In Dalnet we have to identify our nick after logging in the server .. but in chatspace server Eggdrop nick have to identify before Logging in to server first we have to give Password of our nick then it will be logged in the server. and in Eggdrop every work is auto and done by TCL file so i need a TCL file which helps me to auto identify my nick on Chatspace server.
Because i want to run a BOT by egdrop on server .. and it need auto identify before logging for a register nick.. hope you all can understand what i want to SAY....
or guide me how can i do this on Eggdrop.

if you have or u can make that file kindly send me i will be thankful to u ..

In wait of your kind response
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

zaibi a solution was given to you by minted re-READ his post!
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
z
zaibi
Voice
Posts: 4
Joined: Thu Jan 26, 2006 6:28 am

Post by zaibi »

But he asked me to mail and i emailed him not yet get reply :(
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

zaibi wrote:But he asked me to mail and i emailed him not yet get reply :(
Ever heard of being patient? It might be that minted has a life outside of the Internet.

Also, do not make any further posts regarding this matter in other forums; it is here that it will be dealt with. Double posts get moved to the Junkyard.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
m
minted
Halfop
Posts: 64
Joined: Wed Jul 20, 2005 9:58 am

Post by minted »

replied, file sent
m
minted
Halfop
Posts: 64
Joined: Wed Jul 20, 2005 9:58 am

Post by minted »

is this best done using the raw prompt for password, or by reading the snotice saying to enter nickpass?

at the moment the code i use uses

Code: Select all

if {[string match "*type /pass password*" $bnc_notice]} {
reading from the snotice

raw 512 shows as

Code: Select all

Authorization required to use Registered Nickname minted
could u make a simple, clean little code that will simply send nickpass when asked by raw 512, on chatspace its /pass password to identify yourself
User avatar
Sir_Fz
Revered One
Posts: 3793
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Why? What complications have you done in yours?
m
minted
Halfop
Posts: 64
Joined: Wed Jul 20, 2005 9:58 am

Post by minted »

it just appears rather bloated, its about 10 lines long.
all i want is it to respond to raw 512 with /pass mypass, with no other factors being taken into account.
User avatar
Sir_Fz
Revered One
Posts: 3793
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

minted wrote:it just appears rather bloated, its about 10 lines long.
all i want is it to respond to raw 512 with /pass mypass, with no other factors being taken into account.
Paste your code.
m
minted
Halfop
Posts: 64
Joined: Wed Jul 20, 2005 9:58 am

Post by minted »

Code: Select all

set password ""

bind raw - NOTICE notice_bnc

proc notice_bnc {from keyword arg} {
 global password
 if {([string tolower [join [lrange [split $arg] 0 0]]] == "auth") ||
([string tolower $from] == "my.server.here")} {
  set bnc_notice [string tolower [join [lrange [split $arg] 1 end]]]
  if {[string match "*type /pass password*" $bnc_notice]} {
    putserv "PASS $password"
  }
 }
}
this is some nickserv auth script, it works, just seems a bit long?
and in my conf in proc evnt:init_server i set the bot to ignore our services (chatspace services runs most things, all it does is notice a bunch of pointless crap to the bot, my bot simply runs your allprotection script)

i prefer to work from raws in mirc, although i know little about tcl.
Post Reply