Advertisement
Guest User

Untitled

a guest
Apr 4th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function replaceNGWord(wp) {
  2.     var post = true;
  3.     var ngwords = [
  4.     "nicovideo.jp"
  5.     ];
  6.     if (wp.thread.bbs.is2ch) {
  7.         if (wp.thread.board.settingMap.get("BBS_UNICODE")=="pass") {
  8.             ngwords.forEach(function (ngword) {
  9.                 var num = wp.message.text.toLowerCase().indexOf(ngword);
  10.                 if (num>-1) {
  11.                     ngword = wp.message.text.substr(num, ngword.length);
  12.                     wp.message.text = wp.message.text.split(ngword).join('&#' + ngword.charCodeAt(0) + ngword.slice(1));
  13.                 };
  14.             });
  15.         } else {
  16.             if (ngwords.some(function (ngword) {return wp.message.text.indexOf(ngword)>-1})) {
  17.                 v2c.alert("文字参照が許可されてない板にNGワードを書き込もうとしています!");
  18.                 post = false;
  19.             };
  20.            
  21.         };
  22.     };
  23.     return post;
  24. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement