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.

Help with sysinfo1.08.tcl / sysinfo278.10.pl

Old posts that have not been replied to for several years.
Locked
K
Kev1n
Voice
Posts: 11
Joined: Thu Jun 02, 2005 7:38 pm
Location: Canada, BC

Help with sysinfo1.08.tcl / sysinfo278.10.pl

Post by Kev1n »

Hi, I downloaded and properly put the files in my script folder, but my question is, with sysinfo1.08.tcl, comes sysinfo278.10.pl
And in sysinfo278.10.pl, I don't understand what this part means. What nicks should I be using here? Or does it matter?
My IRC nick is: Kevin
My bots nick is: AdBot

Code: Select all

# Specify your NIC interface name (eth0, rl0, fxp0, etc) and a name for it.
#
# Example: @nic     = ('eth0', 'eth1');
#          @nicname = ('External', 'Internal');
#
# NOTE: If you set one then you HAVE to set the other.
@nic		= ('');
@nicname	= ('');
Thanks in advance.
User avatar
caesar
Mint Rubber
Posts: 3776
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

The 'example' clearly states what you should use, NIC means Network Interface Card (PC Ethernet network card) and has nothing to do with nicknames on IRC.
Once the game is over, the king and the pawn go back in the same box.
K
Kev1n
Voice
Posts: 11
Joined: Thu Jun 02, 2005 7:38 pm
Location: Canada, BC

Post by Kev1n »

Im using the Eggdrop off my shell providers shell.

I have ftp and ssh access.

How would I find or what would I put in here? Everything else I am fine with.
User avatar
Sir_Fz
Revered One
Posts: 3793
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

In the note it says IF you specify, so it maybe isn't necessary.
K
Kev1n
Voice
Posts: 11
Joined: Thu Jun 02, 2005 7:38 pm
Location: Canada, BC

Post by Kev1n »

Yeah im pretty sure I filled out everything perfect, but I get this.

Code: Select all

[3:01:pm] <Kevin> .sysinfo
[3:01:pm] <AdBot> Perl script is not executable or doesn't exist.
Or if anyone knows another script that shows the system uptime of the shell.
User avatar
caesar
Mint Rubber
Posts: 3776
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Here is a lil code:

Code: Select all

bind pub !uptime shell:uptime

proc shell:uptime {nick uhost hand chan text} {
catch {exec uptime} result
putserv "PRIVMSG $chan :$result"
}
Once the game is over, the king and the pawn go back in the same box.
K
Kev1n
Voice
Posts: 11
Joined: Thu Jun 02, 2005 7:38 pm
Location: Canada, BC

Post by Kev1n »

ty :)
Locked