Skip to content
MSN

Theme

A TG007 community discussion started by X-Fusion.

Discussion 10 posts
Page 1 of 1
Open
Topic #6084 · 10 published posts · 941 views

Bleh, I feel like such a noob. But since I havent dont themes in a while, here i go. I made an alligned theme, it all works fine n dandy except for one thing. It double talks. I'll show you what I mean.

<.X-Fusion -> test

ó04:55/pò ³ .: test

Where do I go to tick the default mIRC text off?

**EDIT..This shows up on the channel screen, it doesnt show up in the main room**

Edited Feb 22, 2006 9:59 PM by X-Fusion

Try using .msg and a .haltdef

"If you don't risk anything you risk even more." - Erica Jong

I've already tried haltdef. Thats why i posted cuz that wasnt workin.

is that on input or on text?

if it's

on *:INPUT:#: {

should just take a simple haltdef to stop mirc text.

on *:input:#: {
  if ($left($1-,1) != $chr(47)) { 
    var %talker = 0,0 $+ $replace($1-,a,0a0,c,7c0,h,0h0,i,7i0,m,0m0,o,7o0,r,0r0,s,7s0,u,0u0,x,7x0,y,0y0,z,0z0)
    echo $chan $tyme 7 $+ $chr(179) $str( ,$calc(15 - $len($nick($chan,$nick).pnick))) 7 $p $+ 99 $+ $convert($me) $+ 7:99 $iif(%talk == on,%talker,$1-)
    privmsg $chan $iif(%talk == on,%talker,$1-)
    haltdef
  }
}

already had haltdef.

try this

on &*:INPUT:*:{
  if ($0) && ((/* !iswm $1) || ($ctrlenter)) && (($active ischan) || ($query($active)) || (=* iswm $active)) && ($window($active, 0) = 1) {
    .!msg $active $iif(%talk == on,%talker,$1-) | halt
  }
}

that what i used anyway, near enough

Edited Feb 23, 2006 12:13 AM by Angelia

People are like slinkies; they're generally boring until you push them down stairs

change this

 

privmsg $chan $iif(%talk == on,%talker,$1-)

 

to this

 

.privmsg $chan $iif(%talk == on,%talker,$1-)

 

note the dot before the code

My code does NOT have bugs. It just develops random features.

Hm, that didnt work either. If your as puzzled as I am, I'm glad im not alone :\

<%#G_-------> Welcome to ---. Before you start chatting, be sure to read the rules @ ---

ó11:24/pò ³ Welcome Msg: Welcome to ---. Before you start chatting, be sure to read the rules @ ---

ó11:24/pò ³ : Welcome to ----. Before you start chatting, be sure to read the rules @ ---

* black bawx sets mode: +v black bawx

ó11:24/pò ³ Mode: ó+v black bawxò

so it does it for everything.

do you have any other on input commands? they usually conflict

People are like slinkies; they're generally boring until you push them down stairs

no, but I think I found the problem. Will report back.