Ok, Here it is...
>How will it display the info in main chat,
>how will it posted in main chat so anyone can see it,
Code: Select all
# Enter the URL for !server info here
set infoserv "Infohere"
# Enter the URL for !site info here
set infosite "Sitehere"
bind pub - !site pub:site
proc pub:site {nick uhost hand chan text} {
global infosite
puthelp "PRIVMSG $chan :Here's the info... $infosite"
putlog "$nick message me for !site"
}
bind pub - !server pub:server
proc pub:server {nick uhost hand chan text} {
global infoserv
puthelp "PRIVMSG $chan :Here's the server info... $infoserv"
putlog "$nick messaged me for !server"
}
>why can't i use ] and [,
To use ] [, you need to put a before the brackets.
Example:
[
http://www.something.net]
Get the idea?
>how can i get the colors like 4mIRC
Simply put a 03(follow by the colour code)
Example:
034Colour
As for multiline, I'll try coding it for you asap
Hope it works