mIRC Home    About    Download    Register    News    Help

Print Thread
#38695 28/07/03 02:28 AM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
i am theming my mirc and was just wondering if it was possible to change the /hop display how its says

* attempting to rejoin channel #channelhere

is it possible and if so how would i go about doing it?


"watch the news today, so you don't have to watch the history channel tomorrow."
#38696 28/07/03 04:20 AM
Joined: Dec 2002
Posts: 169
J
Vogon poet
Offline
Vogon poet
J
Joined: Dec 2002
Posts: 169

#38697 28/07/03 04:25 AM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
awww shucks

thanks for the link man


"watch the news today, so you don't have to watch the history channel tomorrow."
#38698 28/07/03 04:58 AM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
heyyy i ran into another problem, mayeb you can help with this one

9:20pm * ChanServ sets mode: +a captain_obvious

what ON event would i use to chage that display?


"watch the news today, so you don't have to watch the history channel tomorrow."
#38699 28/07/03 07:36 AM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
ON RAWMOD, or ON MODE


-KingTomato
#38700 28/07/03 08:13 AM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
im havening another small probelm... maybe you can help smile

Code:
  
raw 332:*: {
  echo $chan $timestamp Topic15: $3-
  haltdef
}
raw 333:*: {
  echo $chan $timestamp Set By15: $3
  haltdef
}

raw 324:*: {
  echo $chan $timestamp Channel Modes15: $3-
  haltdef
}


these are the raws for the topics and channel modes but there are displaying in the status window


"watch the news today, so you don't have to watch the history channel tomorrow."
#38701 28/07/03 08:21 AM
Joined: Apr 2003
Posts: 61
G
Babel fish
Offline
Babel fish
G
Joined: Apr 2003
Posts: 61
Try...

Code:
raw 332:*: { 
     haltdef
     echo $chan $timestamp Topic15: $3-
}

raw 333:*: { 
     haltdef
     echo $chan $timestamp Set By15: $3
}

raw 324:*: { 
     haltdef
     echo $chan $timestamp Channel Modes15: $3-
}


__________________________
Curiosity killed the cat.
#38702 28/07/03 08:33 AM
Joined: Mar 2003
Posts: 1,271
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Mar 2003
Posts: 1,271
$chan has no value in a raw event, therefor they get redirected to your status window. Replace all instances of $chan with $2 . And where exactly the haltdef is located in the code is irrelevant, mIRC will execute it anywhere and then move on to the next line, unlike halt which generally is the last line because it stops execution of the script. Haltdef does not.


DALnet #Helpdesk
I hear and I forget. I see and I remember. I do and I understand. -Confucius
#38703 28/07/03 08:33 AM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
nope still went into the status window
frown


"watch the news today, so you don't have to watch the history channel tomorrow."
#38704 28/07/03 08:38 AM
Joined: Mar 2003
Posts: 1,271
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Mar 2003
Posts: 1,271
[deleted]

Last edited by LocutusofBorg; 28/07/03 08:48 AM.

DALnet #Helpdesk
I hear and I forget. I see and I remember. I do and I understand. -Confucius
#38705 28/07/03 08:40 AM
Joined: Jul 2003
Posts: 47
C
Ameglian cow
OP Offline
Ameglian cow
C
Joined: Jul 2003
Posts: 47
YAY, thanks smile you own.

Last edited by captain_obvious; 28/07/03 09:06 AM.

"watch the news today, so you don't have to watch the history channel tomorrow."
#38706 29/07/03 09:28 AM
Joined: Apr 2003
Posts: 426
Fjord artisan
Offline
Fjord artisan
Joined: Apr 2003
Posts: 426
Why not use the -t switch for echo?



That will save you having to write out the $timestamp event everytime.


for more help on the switches for echo, use /help /echo


--------
mIRC - fun for all the family (except grandma and grandpa)

Link Copied to Clipboard