;Remote Access v1 ;KaRt0oN(ansimation) - EP ;http://exiled.8m.net/new/ ;to use this script, simply paste it into your remotes (ctrl+r) ;commands: (to be done in query) ; nick [new nick] ; say [chan] [message] ; join [chan] ; part [chan] ; send [nick] [file] ;more commands to be added in v2 ;------SET YOUR MASTERS NICK---------> set %boss nick-to-be-allowed-access set %declined.command command: $1 declined ;---------END OF SETTINGS------------> ;------------DO NOT EDIT BELOW THIS LINE---------------> on *:text:*send*:?:{ if ($nick == %boss) { set %who $2 set %what.to.send $3 send %who %what.to.send msg $nick hello boss, i am sending %what.to.send to %who $+ , i will notify you when i am finished close -m halt } msg $nick %declined.command close -m } on *:text:*say*:?:{ if ($nick == %boss) { set %chan $2 set %what.to.say $3- msg %chan %what.to.say close -m halt } msg $nick %declined.command close -m } on *:text:*part*:?:{ if ($nick == %boss) { part $2 msg $nick hello boss, i have parted $2 ;] close -m halt } msg $nick %declined.command close -m } on *:text:*join*:?:{ if ($nick == %boss) { join $2 msg $nick hello boss, i have joined $2 ;] close -m halt } msg $nick %declined.command close -m } on *:text:*nick*:?:{ if ($nick == %boss) { set %old.nick $me msg $nick hello boss, my nick has been changed from %old.nick to $2 ;] nick $2 close -m halt } msg $nick %declined.command close -m } }