Hey! Version 0.9.4 is out (finally :P). Sorry it took me so long for an update, I was really swamped with homework at the end of the year.
Anyways, here is a list of updates:
- Script now only works if the vBulletin database and the phpBB database are on the same server (caused too much trouble and bugs)
- Fixed bug with database switching (script would try to read phpBB data from the vBulletin database or vice-versa)
- Fixed poll import bug (Thanks CodeDawg)
- Fixed thread sticky bug
- Improved BBdecode routine
- Many other things I've forgotten about
I also tried the official vBulletin importer, and I must say, I don't like it

Mine's a lot more user friendly, and it importes much, much more

Sorry about the sticky bug...I feel really stupid, here's what was wrong (for you PHP Guru's):
PHP Code:
// What it was
if ($threadData[topic_type] == 1) {
$thread[sticky] = 1;
}
// What it should be (and is now)
if ($threadData[topic_type] == 1) {
$thread[sticky] = 1;
} else {
$thread[sticky] = 0;
}
Basicially, if one thread was sticky, every other thread was made sticky after that until a new page loaded. I think I was asleep when I coded that ^^;;;;
Anyways, enjoy. I ran this a lot this morning, and believe it to be bug free with every DB I've ran it on so far. Hehe. If you have a problem with your DB, send it to me, and I'll fix it up in a jiffy
EDIT #1: I renamed the actual importer filename, so that you could store both the official and unofficial script in the same directory (the vBulletin one is stupid, and doens't like being renamed, yet mine doesn't care if it's renamed. Another reason mine is better

).
EDIT #2: I moved the attachment to the first post. I forgot that's where I put them, lol