Advertisement
Guest User

Untitled

a guest
Apr 20th, 2015
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //【登録場所】 "V2C\script\system\post.js"
  2. //【パーミッション】A
  3. function checkBeforeCreateThread(wp){
  4.   return true
  5. };
  6.  
  7. function checkBeforePost(wp){
  8.     return true
  9.     && replaceNGWord(wp);
  10. };
  11. function replaceNGWord(wp) {
  12.     var post = true;
  13.     var ngwords = [
  14.     "nicovideo.jp"
  15.     ,"2ch.sc"
  16.     ];
  17.     if (wp.thread.bbs.is2ch) {
  18.         ngwords.forEach(function (ngword) {
  19.             var num = wp.message.text.toLowerCase().indexOf(ngword);
  20.             if (num>-1) {
  21.                 ngword = wp.message.text.substr(num, ngword.length);
  22.                 repngword = (wp.thread.board.settingMap.get("BBS_UNICODE")=="pass") ? '&#' + ngword.charCodeAt(0) + ngword.slice(1) : ngword.slice(0, 1) + " " + ngword.slice(1);
  23.                 wp.message.text = wp.message.text.split(ngword).join(repngword);
  24.             };
  25.         });
  26.     };
  27.     return post;
  28. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement