Jaxel
04-25-2009, 09:58 AM
Okay, I have the following table...
CREATE TABLE IF NOT EXISTS ".TABLE_PREFIX."conquest_comments (
commentID int(10) unsigned NOT NULL auto_increment,
nationID int(10) unsigned NOT NULL default '0',
playerID int(10) unsigned NOT NULL default '0',
cDate int(10) unsigned NOT NULL default '0',
cState enum('visible', 'moderation', 'deleted') NOT NULL default 'visible',
cText mediumtext NOT NULL,
cIPAdd int(10) unsigned NOT NULL default '0',
PRIMARY KEY (commendID)
)
How would I go about adding a comment system to my mod? Its a comment system, so smiles should allow whatever is allowed in comments. I know how I could easily add a text box to a comment page, and paginate it, but how do I use the vBulletin message box with it? As well as add ajax support to edit comments.
--------------- Added 1240659924 at 1240659924 ---------------
I found this post, but I dont know how accurate it is...
https://vborg.vbsupport.ru/showthread.php?t=135708&highlight=message
The video directory mod has a comment system and its a bit different... Not to mention the forum tournament & ladders script doesnt even have ANYTHING about ANYTHING in the mod, and it still has a comment system. Is the work involved in that thread even needed?
CREATE TABLE IF NOT EXISTS ".TABLE_PREFIX."conquest_comments (
commentID int(10) unsigned NOT NULL auto_increment,
nationID int(10) unsigned NOT NULL default '0',
playerID int(10) unsigned NOT NULL default '0',
cDate int(10) unsigned NOT NULL default '0',
cState enum('visible', 'moderation', 'deleted') NOT NULL default 'visible',
cText mediumtext NOT NULL,
cIPAdd int(10) unsigned NOT NULL default '0',
PRIMARY KEY (commendID)
)
How would I go about adding a comment system to my mod? Its a comment system, so smiles should allow whatever is allowed in comments. I know how I could easily add a text box to a comment page, and paginate it, but how do I use the vBulletin message box with it? As well as add ajax support to edit comments.
--------------- Added 1240659924 at 1240659924 ---------------
I found this post, but I dont know how accurate it is...
https://vborg.vbsupport.ru/showthread.php?t=135708&highlight=message
The video directory mod has a comment system and its a bit different... Not to mention the forum tournament & ladders script doesnt even have ANYTHING about ANYTHING in the mod, and it still has a comment system. Is the work involved in that thread even needed?