Top

popup Greeters


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  1.0
Scores Submitted  1
Date Added  Nov 05, 2007
Last Updated  Nov 05, 2007
Tags  channel  colorful  colors  greets  people 
  Bookmark and Share

Introduction

Well made an popup greeters.

Grab the Code

Comments

  (6)  RSS
SpotRedDog
Comments: 81
 
mIRC Snippet:  popup Greeters
Posted on Nov 5, 2007 6:36 pm
said it once I'll say it again you should combine these and they go in the POPUPS Section not the Snippets
Noa Destiny
Comments: 29
 
mIRC Snippet:  popup Greeters
Posted on Nov 5, 2007 6:44 pm
Eh.. o well
Korvin
Comments: 238
 
mIRC Snippet:  popup Greeters
Posted on Nov 5, 2007 8:19 pm
alot of time has gone into this, good job =] try sorting by single colored/multicolored, concider making a dialog =]
Korvin
Comments: 238
 
mIRC Snippet:  popup Greeters
Posted on Nov 5, 2007 8:38 pm
here is a dialog setup, thats from the dialogs ive made, and abit of the ones my sister has made.<code>dialog randdialog {
tab set 1, 1, 4 0 456 359
tab Set 2,2
tab Set 3,3
tab Set 4,4
title "IRC Help"
size -1 -1 456 356
option pixels
list 707, 100 25 350 308
button "Clear Chat", 47, 363 332 88 20
button "New Chan", 45, 5 25 88 20
edit "#", 46, 5 45 88 20, autohs
text This is Tab 4, 55, 5 75 88 20, tab 4
text This is set by, 56, 6 90 88 20, tab 4
text the "tab 4", 57, 6 105 88 20, tab 4
text in the code, 58, 6 120 88 20, tab 4
text This is Tab 2, 255, 5 75 88 20, tab 2
text This is set by, 256, 6 90 88 20, tab 2
text the "tab 2", 257, 6 105 88 20, tab 2
text in the code, 258, 6 120 88 20, tab 2
text This is Tab 3, 355, 5 75 88 20, tab 3
text This is set by, 356, 6 90 88 20, tab 3
text the "tab 3", 357, 6 105 88 20, tab 3
text in the code, 358, 6 120 88 20, tab 3
text This is Tab 1, 155, 5 75 88 20, tab 1
text This is set by, 156, 6 90 88 20, tab 1
text the "tab 1", 157, 6 105 88 20, tab 1
text in the code, 158, 6 120 88 20, tab 1
}

on *:TEXT:*:%setchan: {
if ($dialog(randdialog)) {
inc %ircdia
if (%ircdia == 25) {
did -r randdialog 707
unset %ircdia
}
if ($nick ishop $active) {
did -az randdialog 707 $time(hh:nn:ss) <% $+ $nick $+ > $strip($1-)
}
if ($nick isvoice $active) {
did -az randdialog 707 $time(hh:nn:ss) <+ $+ $nick $+ > $strip($1-)
}
if ($nick isop $active) {
did -az randdialog 707 $time(hh:nn:ss) <@ $+ $nick $+ > $strip($1-)
}
if ($nick isreg $active) {
did -az randdialog 707 $time(hh:nn:ss) < $+ $nick $+ > $strip($1-)
}
}
}
menu * {
.Random Dialog:/dialog -md randdialog randdialog | set %setchan $active
}
on *:JOIN:%setchan: {
if ($dialog(randdialog)) {
inc %ircdia
if (%ircdia == 25) {

did -r randdialog 707
unset %ircdia
}
did -az randdialog 707 * $nick Has Joined %setchan
}
}
on *:PART:%setchan: {
if ($dialog(randdialog)) {
inc %ircdia
if (%ircdia == 25) {
did -r randdialog 707
unset %ircdia
}
did -az randdialog 707 * $nick Has Left %setchan
}
}
on *:NICK:%setchan: { if ($dialog(randdialog)) { did -az randdialog 707 $nick is now known as $newnick } }
on *:DIALOG:randdialog:sclick:45: {
if ($did($dname,46)) { did -a randdialog 46 # | did -r randdialog 707 | set %chan $did($dname,46) | did -az randdialog 707 ----NOW TALKING IN $$did($dname,46) $+ ---- }
}
</code>
Korvin
Comments: 238
 
mIRC Snippet:  popup Greeters
Posted on Nov 5, 2007 8:38 pm
is it
Code:
hi
Noa Destiny
Comments: 29
 
mIRC Snippet:  popup Greeters
Posted on Nov 6, 2007 7:35 pm
Ok.. Ty Korvin

Please Register or Login to start posting comments.
Bottom