Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.setInterval(() => {
- let log = document.getElementsByClassName("insideLog")[1];
- for (let i = 0; i < log.children.length; i++) {
- let child = log.children[i];
- 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.")) {
- child.style.display = "none";
- }
- }
- }, 100);
Advertisement
Add Comment
Please, Sign In to add comment