mIRC Home    About    Download    Register    News    Help

Print Thread
#155411 06/08/06 08:22 AM
Joined: Jul 2006
Posts: 5
R
rizou Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
R
Joined: Jul 2006
Posts: 5
hi all

i just asked the forum about a command for pushmode with

server -m [serveradress] [portnumber] [serverpass] -i [nick] [altnick] [email] [fullname]

i need know if i can change mode user on connect with a flag of this command line? still one perform

thanx

#155412 06/08/06 05:28 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Not in that line, but it could be done using an ON CONNECT event
Example:
Code:
 on *:connect:{
.mode $me +i
}
 


The above example would set +i (invisible) in your usermodes for all connections.

#155413 06/08/06 10:00 PM
Joined: Jul 2006
Posts: 5
R
rizou Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
R
Joined: Jul 2006
Posts: 5
yeah that i see but i have create one for each server frown

#155414 06/08/06 10:05 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
The ON CONNECT event is not server specific. It will activate no matter what server you connect to.
If you want specific commands done on specific servers/networks, then you can use the base ON CONNECT event, with if/elseif/else statements.

Alternatively, there is the Perform button/dialog in mIRC Options - Connect - Options - Perform, which can be set to work on a network by network basis.


Link Copied to Clipboard