Online Sequencer Make music online
  • Sequences
  • Members
  • Chat
  • Forum
  • Wiki

Existing user? Sign In Create account
Login at Online Sequencer Forums

Online Sequencer Forums › Online Sequencer › Bug Reports
« Previous 1 2 3 4 5 … 21 Next »

CANT OPEN CHAT WHILE IN FORUMS

Poll: fix?
You do not have permission to vote in this poll.
true
50.00%
2 50.00%
and i agree
50.00%
2 50.00%
Total 4 vote(s) 100%
* You voted for this item. [Show Results]

Thread tools
CANT OPEN CHAT WHILE IN FORUMS
tbyunomi Offline
trapbeat349
1,400 Posts:
   
#1
Bug  02-03-2026, 04:50 PM
when ever i press the chat button in the /forums page it dont open GODAMMIT


TB


My Instagram below
[Image: IG-LOGO.png]
Reply
spira. Offline
Not Toby Fox
176 Posts:
 
#2
02-03-2026, 04:50 PM
Deal with it


(Website to make custom instruments Here.)  

  • x1
  • x2
    • x1
    • tbyunomi
    • x2
    • tbyunomi
    • ewrruewc
Reply
Lastie Online
Learning Developer
80 Posts:
   
#3
02-03-2026, 04:51 PM
thats already a known bug, and has been reported in #bug-reports


Reply
tbyunomi Offline
trapbeat349
1,400 Posts:
   
#4
02-03-2026, 04:51 PM
(02-03-2026, 04:51 PM)Lastie Wrote: thats already a known bug, and has been reported in #bug-reports

Its been a bug since like 2021


TB


My Instagram below
[Image: IG-LOGO.png]
Reply
Lastie Online
Learning Developer
80 Posts:
   
#5
02-04-2026, 06:18 PM (This post was last modified: 02-04-2026, 06:19 PM by Lastie.)
im not able to fix it directly, but i have finished a script for it

Code:
// ==UserScript==
// @name         OS Forum Chat Fix
// @icon         https://github.com/Lastie-OS/os-userscripts/blob/main/icon.png?raw=true
// @namespace    https://lastie-os.github.io/os-userscripts/
// @version      2.3.2026
// @description  Fixes forum chat
// @author       Lastie
// @match        https://*.onlinesequencer.net/forum/*
// @grant        GM_addStyle
// @run-at       document-end
// @downloadURL  https://github.com/Lastie-OS/os-userscripts/raw/refs/heads/main/osForumChatFix.user.js
// @updateURL    https://github.com/Lastie-OS/os-userscripts/raw/refs/heads/main/osForumChatFix.user.js
// ==/UserScript==

(function() {
    'use strict';

    function createForumChat() {
        try {
            const chatPlaceholder = document.getElementById('chatplaceholder');

            if (!chatPlaceholder) {
                console.error("Chat placeholder not found in the DOM.");
                return;
            }

            chatPlaceholder.innerHTML = `
            <div id="chatbox">
              <div id="chatbox_inner">
                <div id="chatbox_left">
                  Please follow the <a href="https://onlinesequencer.net/rules" target="_blank">rules</a> while using chat.
                  <a href="javascript:reportChat()">Report abuse</a>
                </div>
                <div id="chatbox_right">
                  <a href="/playlist/1" target="_blank">Recently Shared</a>
                  &middot; <a href="/logs?page=last" target="_blank">Chat Logs</a>
                  &middot; <a href="/chat/" target="_blank">Mobile-friendly</a>
                  &middot; <span class="sidebar_chat_link"><a href="javascript:sidebarChat()">Move to sidebar</a></span>
                  <a href="javascript:hideChat()" class="close_chat"><i class="far fa-times"></i></a>
                </div>
                <iframe id="chat_frame" allowTransparency="true" scrolling="no" src="/forum/chat_frame.php" frameborder="0"></iframe>
              </div>
            </div>`;

            $('#chatbox').draggable();
        } catch (err) {
            console.error("Error creating chat:", err);
        }
    }

    const addChatFunction = setInterval(() => {
        const chatButton = document.querySelector('.chat_link');

        if (chatButton) {
            chatButton.onclick = createForumChat;
            console.log("Chat function successfully attached to .chat_link");

            let chatBar = document.querySelector('#chatbar').remove();
            clearInterval(addChatFunction);
        }
    }, 500);
})();


Reply



Users browsing this thread:  


  •  Return to Top
  •  Contact Us
  •   Home
  •  Lite mode
© Rush Crafted with ❤ by iAndrew
Powered By MyBB, © 2002-2026 MyBB Group.
Linear Mode
Threaded Mode
View a Printable Version
Subscribe to this thread
Add Poll to this thread
Send thread to a friend