mIRC Homepage
Posted By: captain_obvious hope you can help? - 28/07/03 02:28 AM
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?
Posted By: Jerk Re: hope you can help? - 28/07/03 04:20 AM
Click
Posted By: captain_obvious Re: hope you can help? - 28/07/03 04:25 AM
awww shucks

thanks for the link man
Posted By: captain_obvious Re: hope you can help? - 28/07/03 04:58 AM
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?
Posted By: KingTomato Re: hope you can help? - 28/07/03 07:36 AM
ON RAWMOD, or ON MODE
Posted By: captain_obvious Re: hope you can help? - 28/07/03 08:13 AM
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
Posted By: gaui Re: hope you can help? - 28/07/03 08:21 AM
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-
}
Posted By: LocutusofBorg Re: hope you can help? - 28/07/03 08:33 AM
$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.
Posted By: captain_obvious Re: hope you can help? - 28/07/03 08:33 AM
nope still went into the status window
frown
Posted By: LocutusofBorg Re: hope you can help? - 28/07/03 08:38 AM
[deleted]
Posted By: captain_obvious Re: hope you can help? - 28/07/03 08:40 AM
YAY, thanks smile you own.
Posted By: neophyte Re: hope you can help? - 29/07/03 09:28 AM
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 Discussion Forums