mIRC Home    About    Download    Register    News    Help

Print Thread
#171966 03/03/07 11:49 AM
Joined: Mar 2007
Posts: 9
B
br0nx Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
B
Joined: Mar 2007
Posts: 9
Code:
alias jm { dialog -m jm jm } 
dialog jm { 
  title "Join Message" 
  size -1 -1 200 90 
  option dbu 
  edit "", 1, 76 51 50 10, autohs 
  edit "", 2, 11 24 180 10, autohs 
  text "Channel", 3, 90 39 21 9 
  text "Message", 4, 90 7 21 9 
  button "On", 5, 11 50 33 12 
  button "Off", 6, 156 50 33 12 
  button "Ok", 7, 85 70 33 12, ok 
} 
alias jma { dialog -m jma jma } 
dialog jma { 
  title "About" 
  size -1 -1 120 135 
  option dbu 
  box "About", 1, 5 4 109 39 
  text "Addon : Join Message", 2, 11 15 97 8 
  text "Version : v3 Beta", 3, 11 28 97 8 
  box "About Author", 4, 5 44 109 84 
  text "Author : br0nx", 5, 11 54 97 8 
  text "Author Chan : #scr1pt1ng", 6, 11 70 97 8 
  text "Author Serv : irc.krstarica.com", 7, 11 85 97 8 
  text "Author Email : br0nx.20@inbox.com", 8, 11 100 97 8 
  text "Addon Address : br0nx.20.forumer.com", 9, 11 115 97 8 
} 
on *:dialog:jm:init:*: { 
  did -a jm 1 %chan.join 
  did -a jm 2 %join.msg 
} 
alias chan.join { 
  set %chan.join $did(1) 
  %chan.join 
} 
alias join.msg { 
  set %join.msg $did(2) 
  %join.msg 
} 
on *:dialog:jm:sclick:5: { 
  set %chan.join $did(1) 
  set %join.msg $did(2) 
} 
on *:dialog:jm:sclick:6: { 
  unset %chan.join $did(1) 
  unset %join.msg $did(2) 
} 
on *:dialog:jm:sclick:7: { 
} 
on *:join:%chan.join: { 
  if ($nick == $me) { halt } { 
    notice $nick Send Message -= %join.msg =- Join Message By br0nx 
  } 
} 
menu * { 
  - 
  .Join Message:jm 
  .Join Message About:jma 
  - 
} 

Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
This isn't a forum to share your scripts, it's for helping others with their questions and asking your own questions.

If you wish to share your scripts, try submitting them to some scripting websites like http://www.mirc.net (currently not allowing logins), http://www.mircscripts.org or http://www.hawkee.com

Joined: Mar 2007
Posts: 9
B
br0nx Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
B
Joined: Mar 2007
Posts: 9
I know .Alert me for my mistakes in addons .


Link Copied to Clipboard