.:: !Say & !Me ::.

By Hackemate on Nov 11, 2004

This two codes are very easy one is !say and the other !me .
Have fun!

;============Eazy Commands===
on *:text:!say *:#: { msg $chan $2- }
on *:text:!me *:#: { describe $chan $2- }

Comments

Sign in to comment.
Jethro   -  Dec 27, 2009
on $*:TEXT:/^[.!@](\w+)/Si:#: {
  if (!%f) { inc -z %f 5 | $iif($regml(1) = me,.msg # $$2-,$iif($regml(1) = say,.describe # $$2-)) }
}

DarkCoder, is there a reason why you want to make it if $wildsite = $address($me,2)? ($address($nick,2) is the same as $wildsite) Also, you need a double $$ so you won't get an insufficient parameter error when someone accidentally types !say or !me without the $2-. A flood protection should be needed in case of abuse.

 Respond  
DarkCoder   -  Dec 27, 2009

No one ever pulled a napa on this yet? Let me plawx?

on $*:TEXT:/^[.!@](me|say)/Si:#: {
if ($address($nick,2) == $address($me,2)) {
if ($regml(1) == me) { describe $chan $2- }
else { msg $chan $2- }
}
 Respond  
disabledacc   -  Dec 27, 2009
 Respond  
Basillisk   -  Dec 03, 2008

well, if its your bot it would work :p

 Respond  
Blitzjager   -  Dec 03, 2008

Basillisk the bot would have to have the same address as you. But using queries would be better.

 Respond  
Basillisk   -  Dec 02, 2008

anyway, I'll say something for the hell of it

try this:
on :text:!say :#: {
if ($nick == ash) {
msg $chan $2-
}
}
on :text:!me :#: {
if ($nick == ash)
describe $chan $2-
}
}

its would be better this way:
try this:

on *:text:!say *:#: {
if ($address($nick,2) == $address($me,2)) {
msg $chan $2-
}
}
on *:text:!me *:#: {
if ($address($nick,2) == $address($me,2))
describe $chan $2-
}
}

or even better

on *:text:!say *:?: {
if ($address($nick,2) == $address($me,2)) {
msg $chan $2-
}
}
on *:text:!me *:?: {
if ($address($nick,2) == $address($me,2))
describe $chan $2-
}
}

so it would be done in a query and look like the bot is talking rather than you telling it to

 Respond  
Basillisk   -  Dec 02, 2008

whoa it is old O_O

 Respond  
Eugenio   -  Nov 25, 2008

rofl
[size=20]SMH[/size]

 Respond  
a careful warchild   -  Nov 25, 2008

or do it for ausers

on 10:text:*:#:{
if ($strip($1) == !say) {
.msg $chan $2-
}
}
on 10:text:*:#:{
if ($strip($1) == !me) {
.describe $chan $2-
}
}
 Respond  
irchainscriptz   -  Nov 25, 2008

‹^›_‹(Òo)›‹^›

 Respond  
NIGathan   -  Nov 25, 2008

mIRC Snippet: .:: !Say & !Me ::.
Posted on Jul 23, 2007 1:08 am
wow this is an old Snippet

mIRC Snippet: .:: !Say & !Me ::.
Posted on Aug 30, 2008 2:24 pm
ya

rofl, now we must do this every year

 Respond  
gaara0123456789   -  Nov 25, 2008

o,o why dont you just type /me its the same crap dude

 Respond  
Eugenio   -  Aug 30, 2008

rofl FAIL

 Respond  
napa182   -  Aug 30, 2008

AlexHopper no it's fine the way it is. all you are doing is adding 2 extra closing brackets for no reason.

 Respond  
AlexHopper   -  Aug 30, 2008

and it needs to be

on :text:!say :#: { msg $chan $2- }
}
on :text:!me :#: { describe $chan $2- }
}

 Respond  
AlexHopper   -  Aug 30, 2008

ya

 Respond  
napa182   -  Jul 23, 2007

wow this is an old Snippet

 Respond  
Dizzlenub   -  Jul 23, 2007

Replace ash with your nick, though. :P

 Respond  
Dizzlenub   -  Jul 23, 2007

try this:
on :text:!say :#: {
if ($nick == ash) {
msg $chan $2-
}
}
on :text:!me :#: {
if ($nick == ash)
describe $chan $2-
}
}

 Respond  
Dizzlenub   -  Jul 23, 2007

try this:
on :text:!say :#: {
if ($nick == ash) {
msg $chan $2-
}
}
on :text:!me :#: {
if ($nick == ash)
describe $chan $2-
}
}

 Respond  
Hackemate   -  Nov 28, 2004

its cool for newbies :)

 Respond  
Ryodox   -  Nov 12, 2004

Dumb

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.