well a very basic code might look like this:
on 100:text:*:?:{
if (~add isin $strip($1)) {
writeini -n commands.ini ul100commands $2 $3-
}
}
it sees the level 100 user typing for example
~add kick kick #chan $2
in private message. it then writes to the ul100commands section of the commands.ini file
kick kick #chan $2
you would then use $readini to get this information from the .ini file for use later ( $readini(commands.ini,ul100comands, kick) )
so perhaps an expansion of the script would be something like:
on 100:text:*:?:{
if (~add isin $strip($1)) {
writeini -n commands.ini ul100commands $2 $3-
}
elseif ( $ini(commands.ini,ul100commands,$strip($1)) ) {
$readini(commands.ini,ul100comands, $1)
}
}
(elseif the first word exists as an item under ul100commands perform the command)
hope that gets you started...
btk
(all above untested so no doubt wrong, but the idea is there, lol!)