mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2002
Posts: 99
M
MDA Offline OP
Babel fish
OP Offline
Babel fish
M
Joined: Dec 2002
Posts: 99
Greetings,

Could someone help me in our being able to have a remote host enable one of our addon scripts.

Either thru a remote host issuing a command for a addon to load in which is already enabled ON. Or for a remote host to issue a command to already loaded addon script which is turned OFF which turns on and enables that addon scipt.

Either or both methods or examples would be greatly appreciated.

Thanks for your time and consideration,

MDA

Joined: Dec 2002
Posts: 99
M
MDA Offline OP
Babel fish
OP Offline
Babel fish
M
Joined: Dec 2002
Posts: 99
Greetings,

It looks like this might work, I'll plug this in and see if a remote host can issue the load of our emergency hosting script which would be already enabled.

on *:TEXT:ehoston:#: {
if ($nick isop $chan) {
.msg $chan Emergency Hosting ON
.load -rs ehost.txt
}

on *:TEXT:ehostoff:#: {
if ($nick isop $chan) {
.msg $chan Emergency Hosting OFF
.unload -rs ehost.txt
}

MDA


Link Copied to Clipboard