Project Name: BCServ Forward
Creator: vloktboky
Last Compiled Date: May 30th, 2004

---

Instructions: BCF (BCServ Foward) will send the data written to the renlog files through a DDE channel.  DDE Servers, such as mIRC, can retrieve this data if they are set to listen to the channel.  This allows for streaming communication between the FDS output and server side bots.  BCF does not have to be ran from the same directory as your server side bot or the FDS; it will look for the renlog file in the directory that you set in the INI file.  Be sure to go over the settings in the BCServ_Forward_settings.ini file before starting this program.

Note: If you are going to use this program to coincide with mIRC, I suggest you set up a custom alias and define the name of this alias in the BCServ_Forward_settings.ini file. (AliasName=)  If you plan to use this data in many other remote files, it is best to signal the data you receive in this custom alias.  An example on how this would work is shown below:

In BCServ_Forward_settings.ini:
 AliasName=logparse

In file remote1.ini:
 alias logparse {
   /signal FDS $1-
 }

In file remote2.ini:
 on *:signal:FDS:{
    if (Level loaded OK isin $1-) {
      /msg #mychan The level loaded OK!
    }
 }