>>368
\V2C\script\system\post.js

function checkBeforePost(wp){最後に↓この一行追加}
&& DoublePost(wp) //二重書き込み防止

これをコピペ

function DoublePost(wp) {
var post = true;
var LastPostText = v2c.getProperty('DoublePostText');
var LastPostUrl = v2c.getProperty('DoublePostUrl');
if(LastPostText+'' == wp.message.text+'' && LastPostUrl+'' == wp.thread.url+'') {
post = v2c.confirm('前回と同じ内容の書き込みです。\n書き込みを行いますか?');
if(post == false) {
return post;
}
}
v2c.putProperty('DoublePostText', wp.message.text);
v2c.putProperty('DoublePostUrl', wp.thread.url);
return post;
}