I noticed the abbreviated commands script a while down in the script list here, and I decided to share this little marvel..
Code:
;Quick Listing Script by Silivrenion
;Works with both ' and `
;Used to provide easier access to commands needing to be issued rapidly
;Syntax :: ['`]l [-kopw] <user>
{
"" chatstr =
data global
"$1" grepsub data =
{data global "'list" data & say } {data global "'list" data & whotarget privatemsg} whotarget 0 == ifelse
}chatstr "^['`]l(.*)$" grepstr chatstr "list" substr not and if
;End Script
all the script does is convert 'l in a charstr to 'list ... this could however be modified to work with so many other commands too, making it completely scalable for your needs, for example..
Code:
;Quick NameGagging Script by Silivrenion
;Works with both ' and `
;Used to provide easier access to commands needing to be issued rapidly
;Syntax :: ['`]ng <user>
{
"" chatstr =
data global
"$1" grepsub data =
{data global "'namegag" data & say } {data global "'namegag" data & whotarget privatemsg} whotarget 0 == ifelse
}chatstr "^['`]ng(.*)$" grepstr chatstr "namegag" substr not and if
;End Script
Only a few entries and you can completely change the function of it to do anything you want... a definite improvement over heavily using globals and complete on alarm events to something so easy.. :D
another Digital Distillation Studios product thingy