Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3767867
D1932.id4882.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D1932.id4882.diff
View Options
diff --git a/Core.tcl b/Core.tcl
--- a/Core.tcl
+++ b/Core.tcl
@@ -46,6 +46,11 @@
expr ![catch {package present $package}]
}
+
+proc has_no_args {args} {
+ expr {$args == "" || $args == "{}" || $args == "{{}}"}
+}
+
#
# Loop constructs
#
diff --git a/Daeghrefn/Help.tcl b/Daeghrefn/Help.tcl
new file mode 100644
--- /dev/null
+++ b/Daeghrefn/Help.tcl
@@ -0,0 +1,44 @@
+bind dcc - help dcc:help
+
+set help {
+ quux {
+ quux print available quux categories
+ quux tag add a tag - e.g. .quux tag 17 prime
+ quux <cat> print quuxes in this category
+ quux * print all quuxes
+ quux <cat> <content> publish quux
+ }
+ "+db" {
+ .+db lyrics add artist, title, excerpt
+ .+db rainbow add the date of an observed rainbow
+ }
+}
+
+proc dcc:help {handle idx arg} {
+ global help
+
+ if {[has_no_args $arg]} {
+ global version
+
+ putdcc $idx "
+ _____ __ ___
+ | \.---.-.-----.-----.| |--.----.-----.' _|.-----.
+ | -- | _ | -__| _ || | _| -__| _|| |
+ |_____/|___._|_____|___ ||__|__|__| |_____|__| |__|__|
+ |_____| eggdrop $version (ViperServ distribution)
+
+ \[ Bureautique ] antidater postdater days paypal quux +db
+ \[ Channel ] botnet
+ \[ Communication ] sms mail twitter
+ \[ GIS ] fantoir
+ \[ Server ] phpfpm
+ \[ Tools ] genpass strlen unixtime
+ \[ Wikimedia ] config +surname +givenname
+
+"
+ } elseif {[dict exists $help $arg]} {
+ putdcc $idx [dict get $help $arg]
+ } else {
+ *dcc:help $handle $idx $arg
+ }
+}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 24, 03:57 (4 h, 25 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2259490
Default Alt Text
D1932.id4882.diff (1 KB)
Attached To
Mode
D1932: Offer more partyline help
Attached
Detach File
Event Timeline
Log In to Comment