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.

Request for a Nickreg Script

Old posts that have not been replied to for several years.
Locked
S
S
Voice
Posts: 13
Joined: Fri Nov 05, 2004 1:05 pm
Location: Bosnia (RS) / Switzerland

Request for a Nickreg Script

Post by S »

Hello!

I want to make a Nickregistartions Script that work with NickServ...

I don't know how to release it!

Can anyone help me?

Code: Select all

on *:TEXT:!nreg*:#test:{ 
  set %nreg_nick $2
  set %nreg_pw $3 
  set %nreg_email $4 
  .ns info %nreg_nick 
} 
on *:NOTICE:*:?:{ 
  if (($nick == NickServ) && (is isin $3)) { /msg #test The Nickname " $+ %nreg_nick $+ " is already registered, please take another Nickname! } 
}
on *:NOTICE:*:?:{ 
  if (($nick == NickServ) && (is not registered isin $1-)) { 
    .timer 1 1 /qline %nreg_nick nick registering
    .timer 1 2 /nick %nreg_nick 
    .timer 1 3 /ns REGISTER %nreg_pw %nreg_email 
    .timer 1 4 /ns set protect on 
    .timer 1 5 /nick RegServ 
    .timer 1 6 /unqline %nreg_nick 
  } 
} 
on ^*:NOTICE:*The nickname*has now been registered to you*:*:{ 
  set %registered_nick $3 
  /globops NickServ: The Nickname  $+ %registered_nick $+  has now been registered! 
  unset %registered_nick 
}
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

why are you double-posting?

I already converted part of this script for you, why don't you just sit down, learn some TCL - it is easy and very nice language, definitely nicer and way more elegant than that clumsy mIRC scripting - and help yourself?
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

demond wrote:learn some TCL - it is easy and very nice language, definitely nicer and way more elegant than that clumsy mIRC scripting - and help yourself?
:mrgreen: /me bookmarks this page......
:mrgreen:
S
S
Voice
Posts: 13
Joined: Fri Nov 05, 2004 1:05 pm
Location: Bosnia (RS) / Switzerland

Post by S »

I don't have time to learn TCL! that is the problem!

Do you can help me?
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

I can but I won't; I don't have time for a whole mIRC script conversion
S
S
Voice
Posts: 13
Joined: Fri Nov 05, 2004 1:05 pm
Location: Bosnia (RS) / Switzerland

Post by S »

:cry: Sorry for asking you
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

IMHO, this forum should be a place to help with, and exchange scriptlets (not whole scripts); a place for helping those who want to learn by themselves, not those who don't have a clue about eggdrop/TCL and all they want is someone to write a script for them because they're too lazy/busy to at least make *some* effort to help themselves
S
S
Voice
Posts: 13
Joined: Fri Nov 05, 2004 1:05 pm
Location: Bosnia (RS) / Switzerland

Post by S »

I want learn TCL! The problem is, I don't have time at the moment to learn that script-language!
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

There are presently 68 services-related scripts in the egghelp tcl archives. Try there first.
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

S i think you made more than 1 topic asking us to convert an mirc script into a tcl script now, and i also think you were already told to stop asking us to convert your every single mirc script....

If you don't have time to learn tcl, don't use it as we won't write all your scripts for you.. :-?
Locked