CursedFlames

Untitled

Apr 24th, 2020
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.setInterval(() => {
  2.   let log = document.getElementsByClassName("insideLog")[1];
  3.   for (let i = 0; i < log.children.length; i++) {
  4.     let child = log.children[i];
  5.     if (child.innerText.includes("gets up and wanders into the darkness again.") || child.innerText.includes("appears out of the darkness and sits near the fire.")) {
  6.       child.style.display = "none";
  7.     }
  8.   }
  9. }, 100);
Advertisement
Add Comment
Please, Sign In to add comment