Script Name:
IPStatus
Version: 1.1
Author: BLaCkShaDoW
Script Date: 14/11/2017
Category: Not specified
Downloads: 340
File Name:
IpStatus.tcl.zip
Short Description:
Pings a given destination (IPv4, IPv6 or website) and replies ping time and if is up or down. Multi-Language (RO/EN/IT). ATTENTION!!! IPv6 reply works only for those who have IPv6 active on their machine!!!
Extended Description File
#####################################################################
# IPStatus 1.1
# - pings a given destination (IPv4, IPv6 or website) and
# replies ping time and if is up or down.
#
# ATTENTION!!! IPv6 reply works only for those who have
# IPv6 active on their machine!!
#
# USAGE: !iping <ip> / <host> / <website>
#
# UPDATES/CHANGES:
# - Supports IPv6
# (only for those who have ipv6 active on their machine!!)
# - Multi-language support
#
# To activate : .chanset #channel +ipstatus
# or BlackTools : .set +ipstatus
#
# To chose a different language .set ipslang <RO> / <EN> / <IT>
#
# BLaCkShaDoW ProductionS
# _ _ _ _ _ _ _ _ _ _ _ _ _ _
# / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \
# ( t | c | l | s | c | r | i | p | t | s | . | n | e | t )
# \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
# #TCL-HELP @ Undernet.org
#
#####################################################################
###
# Set here who can execute the command (-|- for all)
###
set iping_flags "mno|M"
###
# Cmdchar trigger
# +++ change cmdchar to the trigger you want to use.
###
set iping(cmdchar) "!"
###
# Bindings
# - using commands
###
bind pub $iping_flags $iping(cmdchar)iping ipstatus
###
# Language setting
# - what language you want to receive the info data ( RO / EN / IT )
#
# - to set script language:
# .set ipslang <ro/en/it> or .chanset #channel ipslang <ro/en/it>
#
###
set ipstatus(default_lang) "RO"
###
# Channel flags
# - to activate the script:
# .set +ipstatus or .chanset #channel +ipstatus
#
###
setudef flag ipstatus
setudef str ipslang
#####################################################################