ok, so you guys want this mod application (by: Logik), to start a "new thread" in a forum of your choice, after a user has submited the application, correct? Here it tis.
In mod.php
FIND:
PHP Code:
$subject = "$bbuserinfo[username] applying for mod/admin";
ADD BELOW THAT:
PHP Code:
$modforum="110"; // type in your forum id number here
$DB_site->query("INSERT INTO thread (threadid,title,lastpost,forumid,open,replycount,postusername,postuserid,lastposter,dateline,iconid,visible,attach) VALUES (NULL,'".addslashes(htmlspecialchars($subject))."','".time()."','$modforum','1','0','".addslashes($bbuserinfo[username])."','$bbuserinfo[userid]','".addslashes($bbuserinfo[username])."','".time()."','$iconid','1','0')");
$threadid=$DB_site->insert_id();
$DB_site->query("INSERT INTO post (postid,threadid,title,username,userid,dateline,pagetext,allowsmilie,showsignature,ipaddress,iconid,visible) VALUES (NULL,'$threadid','Post Alert - $postinfo[username]','$bbuserinfo[username]','$bbuserinfo[userid]','".time()."','".addslashes(parseurl($email))."','$allowsmilie','$signature','$ipaddress','$iconid','1')");
$DB_site->query("UPDATE forum SET replycount=replycount+1,lastpost='".time()."',lastposter='$bbuserinfo[username]' WHERE forumid='$modforum'");
Now, just make ( $modforum ="110" ; ) the forum id number of your choice, and your done! I have forum id 110 as one of my private forums to use.

Anyway, let me know if you have any problems with, and how that comes out. All the credit must be handed out to Logik though, I was not the one that created this hack, so please do not thank me, but him. !

Thanks Logik!!!
cheers,
-Metro.