dIRC chat   Download dIRC 2.2.0.1  
Dynamic DNS from DNS Max  
   downloads   ·   purchase   ·   about   ·   scripts & addons   ·   developer
The ddn is coming soon.

Scripting Errata

Working with dIRC's Variables object

Timer Documentation

 

Perl and Python Errata

Until the ddn is fully functional, here are some errata about perl and python since these languages were not explained in the current 2.2 help file.

The main thing to remember when using perl script is that you must reference dIRC objects using references such as $application, $event, etc.

such as
$Application->SendCommand()
$Application->Echo()
or
$Event->nick
$Event->param

The same concepts apply in Python, except you use the Application object with "Application." instead of "$Application->".

such as
Application.SendCommand("string here");

 

I hope this helps get you started.  The complete documentation will be here once ddn is finished, and will coincide with the next release which has many changes.