Hey no prob,
First you have to create a module:
So, create a folder in /core/modules called "ForumRegister"
Then create a file: ForumRegister.php
Inside that, paste:
<?php
class ForumRegister extends CodonModule
{
public function __construct()
{
CodonEvent::addListener('ForumRegister');
}
public function EventListener($eventinfo)
{
if($eventinfo[0] == 'registration_complete')
{
// Place your forum registration code here
// You'll need their user information, so
$userinfo = $eventinfo[2];
$userinfo->firstname;
$userinfo->lastname;
//etc
// do :
print_r($userinfo);
// to show all the options
}
}
}
?>
This creates the module and sets up the event listener, and then when the registration_complete event is fired, that bit of code will run.
Now, I think you're running the latest beta build, which fixes a bug where that user info wasn't passed.
I hope that helps!