This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

[Req] TCL script that will tell me server load and status

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
G
GoldenVPS
Voice
Posts: 1
Joined: Sun Jan 07, 2007 3:37 pm

[Req] TCL script that will tell me server load and status

Post by GoldenVPS »

Hey guys,
We are a hosting provider company and need something like this.

We will use the tcl script. Bots will be connected to our IRC server and
* from time to time (adjusted on conf file)
AND
* when I ask with a command (for example, "tellmeuptime")
will tell us server's uptime records and cpu loads..


Need advise. Free or paid script writers please contact. I can give you a dedicated server for this service to you :)

goldenvps@gmail.com

Thanks
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

Code: Select all

bind pub -|- tellmeuptime pub:uptime

proc pub:uptime {nick host hand chan arg} {
  putserv "PRIVMSG $chan :[exec uptime]"
}
This should do what you want, you shouldn't be offering someone a dedicated server for something as simple as this :)
Post Reply