mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jul 2006
Posts: 6
R
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
R
Joined: Jul 2006
Posts: 6
On the server I frequent, there are several chatters who come in to my channel using Mibbit and their default username is new_user. Is there something I can script that would trigger and tell them how to change their nickname? What I have in mind is something to put in the remotes that would look similar to: on:join Unregistered!Mibbit@* "You may change your nickname by typing /nick (your new nickname)" or something close to that. I know I've got the verbage wrong, so I need somebody who's a whiz to help me out. Pretty please?
---
Here is an edit to make a point clearer. I am using mIRC and the scripting help is for my own client so that *it* will automatically give the above message to the un-nicked users who join via the Mibbit interface. I wasn't asking how to alter Mibbit.

RainbowDragon

Last edited by RainbowDragon; 26/08/08 04:08 PM.
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Try this, although it may get people that are using methods other than Mibbit.
Code:
on *:join:#my_channel:{
  if new_user* iswm $nick {
    .msg $nick Please change your nick using /nick <newnick>
    .msg $nick Replacing <newnick> with the nick you wish to use
  }
}
on *:nick:{
  if new_user* iswm $newnick {
    .msg $nick Please change your nick using /nick <newnick>
    .msg $nick Replacing <newnick> with the nick you wish to use
  }
}

I also included code that gives the same message if they change their nick to another new_user nick, or if they try to use a registered nick that isn't there's and the network/nick service, changes it.


Link Copied to Clipboard