### PLUG IN CONFIGURATION
# NO PLUG INS FOR CHAT ROOMS YET!
# IT IS COMING
# - is a special screen name. it means all.
# to add plugins as a default look at this example
#
# syntax:
# $plug(in|out){"screenname"} = "plugin";
#
# explanation
# $plugin <- that means you want incoming plugin
#            ie. for text you receive
# $plugout <- that means you want outgoing plugin
#             ie. for text you output
#
# screenname: the screen name to apply this to,
#             "-" means all.
#
# plugin: a plugin in the plugins directory
#
# let's say you are spanish, and everyone you talk to
# is english, so you want to use the spanish plugin
# to translate your outgoing text to english, and                           
# then translate your incoming text to spanish.
#
# $plugin{"-"} = "toenglish";
# $plugout{"-"} = "tospanish";
#
# another example
# let's say that you have one buddy that is french
# and you don't know french, so you want his
# incoming to be translated to english
# and your outgoing to french.
#
# $plugin{"frenchguy3"} = "toenglish";
# $plugout{"frenchguy3"} = "tofrench";
#
# neat, huh?
# plus, you can make your own plugins
# check out the dox.
# by the way, any changes you make inside the client aren't saved yet.
# maybe later.
### END OF PLUG IN CONFIGURATION
print "plug-in configuration loaded.\n";







