Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //【登録場所】 "V2C\script\system\post.js"
- //【パーミッション】A
- function checkBeforeCreateThread(wp){
- return true
- };
- function checkBeforePost(wp){
- return true
- && replaceNGWord(wp);
- };
- function replaceNGWord(wp) {
- var post = true;
- var ngwords = [
- "nicovideo.jp"
- ,"2ch.sc"
- ];
- if (wp.thread.bbs.is2ch) {
- ngwords.forEach(function (ngword) {
- var num = wp.message.text.toLowerCase().indexOf(ngword);
- if (num>-1) {
- ngword = wp.message.text.substr(num, ngword.length);
- repngword = (wp.thread.board.settingMap.get("BBS_UNICODE")=="pass") ? '&#' + ngword.charCodeAt(0) + ngword.slice(1) : ngword.slice(0, 1) + " " + ngword.slice(1);
- wp.message.text = wp.message.text.split(ngword).join(repngword);
- };
- });
- };
- return post;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement