Advertisement
dragonfree97

Untitled

Oct 4th, 2015
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. importScriptPage("MediaWiki:JacobsLadderSuite.js","d97");
  2.  
  3. var safetyPattern = /\!say/i;
  4.  
  5. mainRoom.model.chats.bind("afteradd", function() {
  6. if(JLAPI.mostRecentMessage.message().slice(0,4) == "!say") {
  7. if(JLAPI.mostRecentMessage.message().slice(5).indexOf("!say") != -1) {
  8. JLAPI.message.send("No");
  9. } else {
  10. JLAPI.message.send(JLAPI.mostRecentMessage.message().slice(5).replace(safetyPattern, "!­say"));
  11. }
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement