Jump to content
Screech

mIRC ghost script

Recommended Posts

Posted

this is a article about my ghost script for mirc

its for all thse ppl who are to stupid or so lazzy to make it them selfes.

its realy simple it consists out of 1 on join command and 1 on nick command

<code>

on *:join:#: {

if ($me != <nick>) && ($nick == <nick>) { msg nickserv ghost <nick> <password> | halt }

else { halt }

}

on *:nick: {

if ($me == $nick) || ($me == $newnick) { halt }

else {

if ($newnick == <nick>) { msg nickserv ghost <nick> <password> | halt }

else { halt }

}

}

</code>



isn't that simple?



the bad part is if you are not on the channel where that persone changes his nick or if he doesn't join a channel where your on then it doesn't work

you can also use it for several nicks

<code>

on *:join:#: {

if ($me != <nick>) && ($nick == <nick>) { msg nickserv ghost <nick> <password> | halt }

if ($me != <nick2>) && ($nick == <nick2>) { msg nickserv ghost <nick2> <password> | halt }

else { halt }

}

on *:nick: {

if ($me == $nick) || ($me == $newnick) { halt }

else {

if ($newnick == <nick>) { msg nickserv ghost <nick> <password> | halt }

if ($newnick == <nick2>) { msg nickserv ghost <nick2> <password> | halt }

else { halt }

}

}

</code>



and also for several servers





<code>

on *:join:#: {

if ($serverip == 65.110.54.117) {
;begin stuff for HTS server

if ($me != <nick>) && ($nick == <nick>) { msg nickserv ghost <nick> <password> }

if ($me != <nick2>) && ($nick == <nick2>) { msg nickserv ghost <nick2> <password> }

halt

}
;end stuff for HTS server

if ($serverip == 81.96.242.132) {
;begin stuff other server

if ($me != <nick3>) && ($nick == <nick3>) { msg nickserv ghost <nick3> <password> }

halt
;end stuff other server

}

else { halt }

}

on *:nick: {

if ($me == $nick) || ($me == $newnick) { halt }

else {

if ($serverip == 65.110.54.117) {
;begin stuff for HTS server

if ($newnick == <nick>) { msg nickserv ghost <nick> <password> }

if ($newnick == <nick2>) { msg nickserv ghost <nick2> <password> }

halt }
;end stuff for HTS server

if ($serverip == 81.96.242.132) {
;begin stuff for other server

if ($newnick == <nick3>) { msg nickserv ghost <nick3> <password> }

halt }
;end stuff for other server

else { halt }

}

}

</code>

Gata, nu mai am, acum le-am gasit si eu si le-am citit, mi s-au parut interesante si le-am postat.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...