| View previous topic :: View next topic |
| Author |
Message |
ghostscript Voice
Joined: 08 Feb 2006 Posts: 13 Location: unknown
|
Posted: Wed Feb 08, 2006 6:17 pm Post subject: PRIVMSG,Query,Msg all dump into channel |
|
|
I am running Eggdrop 1.4 and am trying to design a simple script that when a person executes "!iMac 543456" or another number following iMac they bot will open a new window to the client with the response "$nick requests consult for #" where # represents the user input. Everything is working the way it is suppose to except for one thing - it will not open a new window - it either PRIVMSG to the chan (I know no one else can see it, i need a new window) or the same will happen with the Msg and Query commands. Any help is appreciated.
| Code: |
[bind pub - !imac pub_imac
proc pub_imac {nick mask hand channel args} {
putquick "PRIVMSG $channel :$nick requests consult for $args"
putquick "PRIVMSG $nick :\001QUERY $nick requests consult"
}
set channel #mac_tier2]
|
If possible please also e-mail reply to ghost_script@mac.com Thanks you guys |
|
| Back to top |
|
 |
Sir_Fz Revered One

Joined: 27 Apr 2003 Posts: 3793 Location: Lebanon
|
Posted: Wed Feb 08, 2006 6:39 pm Post subject: |
|
|
| Code: | | putquick "privmsg $nick :bla bla" |
is enough to open a query. _________________ Follow me on GitHub
- Opposing
Public Tcl scripts |
|
| Back to top |
|
 |
ghostscript Voice
Joined: 08 Feb 2006 Posts: 13 Location: unknown
|
Posted: Wed Feb 08, 2006 7:05 pm Post subject: |
|
|
| Thanks! It seemed to be a specific client error, For any furture people who have issues, make sure they aren't using "ircle" - Thanks again |
|
| Back to top |
|
 |
|