Bodega Bot

For The Bodega Room On TC

Verze ze dne 01. 10. 2024. Zobrazit nejnovější verzi.

Seznam verzí skriptu, při kterých došlo ke změnám v kódu. Zobrazit všechny verze.

  • v10.0 01. 10. 2024
  • v9.9 30. 09. 2024
  • v9.8 20. 09. 2024
  • v9.7 19. 09. 2024
  • v9.5 19. 09. 2024
  • v9.3 13. 09. 2024
  • v9.3 13. 09. 2024
  • v9.2 12. 09. 2024
  • v9.1 12. 09. 2024
  • v9.0 25. 08. 2024

    new ad blocker

  • v5.6 14. 08. 2024
  • v5.5 14. 08. 2024
  • v5.4 14. 08. 2024
  • v5.4 14. 08. 2024
  • v5.3 13. 08. 2024
  • v5.3 13. 08. 2024
  • v5.2 13. 08. 2024
  • v5.3 13. 08. 2024
  • v5.2 12. 08. 2024

    🚀 Bodega Bot v5.2 Update 🚀

    Unleash the power of next-level greetings! 🎉

    🌟 What's New? 🌟

    • 👋 Supercharged Greeting System
    • 🎨 Greeting Customization
    • 🧠 Smarter Greeting Logic
    • 🐞 Bug Squashing

    👋 New Feature: Improved Greeting System

    • 🔁 Welcome Back messages for returning heroes!
    • 💬 Witty follow-up messages to keep the conversation flowing
    • 🔧 Toggle greetings on/off with !greetmodetoggle command

    🎨 Enhancement: Greeting Customization

    Make your chat uniquely yours!

    ✏️ Customize Everything

    • Greetings
    • Welcome Backs
    • Follow-ups

    🎲 Random Selection

    Keep it fresh with variety from your custom message pools!

    🧠 Improvement: Greeting Logic

    • ⏱️ Cooldown system to prevent spam
    • 🚫 No more accidental guest greetings
    • 🌐 Respects the global greet mode setting

    🐞 Bug Fix

    Squashed that pesky greet mode toggle bug! 🔨

    🔍 How It Works

    1. User joins the chat party 🎉
    2. Bot checks if they're VIP enough for a greeting 🕵️
    3. Picks a random greeting or welcome back 🎭
    4. Might throw in a cheeky follow-up 😉
    5. Voila! Greeting delivered with style 💌

    ⚙️ Customization is Key! ⚙️

    Tailor your greetings, welcome backs, and follow-ups in the script settings. Make your chat truly yours! 🎨

    Need a break? Use !greetmodetoggle to turn the charm on or off! 🔌


    🎉 Welcome to the future of chat greetings! 🎉


    👋🤖🚀💬🎭

    Bodega Bot: Making every entrance unforgettable! 🌟

  • v5.2 11. 08. 2024
  • v5.2 11. 08. 2024
  • v5.1 11. 08. 2024
  • v5.0 11. 08. 2024
  • v5.0 08. 08. 2024
  • v4.0 07. 08. 2024
  • v3.2 06. 08. 2024
  • v3.2 06. 08. 2024
  • v3.1 05. 08. 2024

    Modal Hide Script Changelog


    Changelog: Modal Hide Script

    Version 1.0.0

    • Initial release of the Modal Hide Script
    • Features:
      • Automatically hides the modal window with ID 'modal-window' on page load
      • Uses event listener for 'DOMContentLoaded' to ensure the DOM is fully loaded before execution
      • Checks for the existence of the modal window before attempting to hide it, preventing potential errors
    • Compatible with all modern web browsers


    For future updates and feature requests, please contact the development team.



  • v3.0 04. 08. 2024
  • v3.0 04. 08. 2024
  • v2.1.8 04. 08. 2024
  • v2.1.7 01. 08. 2024
  • v2.1.6 31. 07. 2024
  • v2.1.6 31. 07. 2024
  • v2.1.6 31. 07. 2024
  • v2.1.5 29. 07. 2024
  • v2.1.5 26. 07. 2024
  • v2.1.5 26. 07. 2024

    Hopefully fixed the fatal load error

  • v2.1.4 26. 07. 2024
  • v2.1.4 26. 07. 2024

    [1.1.0] - 2024-07-26

    Changed

    • Updated CSS for video.large class to center the video element
      • Modified left property from 0% to 50%
      • Changed top property from 0 to 50%
      • Added transform: translate(-50%, -50%) for perfect centering

    Added

    • Initial release of the script
    • CSS styling for video.large class
  • v2.1.3 26. 07. 2024
  • v2.1.3 26. 07. 2024

    Fallback Configuration Mechanism

    We've introduced a robust fallback configuration mechanism to enhance the script's reliability and flexibility. This update ensures seamless operation even when the alternate configuration script fails to load.

    Key Changes:

    • Implemented a fallback configuration system within the CTSRoomInject() function.
    • Added a check for the existence of window.CFG before applying default settings.
    • Introduced comprehensive default configurations for various features including greetings, follow-ups, and background images.

    Benefits:

    • Enhanced Reliability: The script now functions correctly even if the external configuration fails to load.
    • Improved Modularity: Easier testing and development with built-in default settings.
    • Greater Flexibility: Users can easily override default settings by setting window.CFG before this script runs.

    Technical Details:

    function CTSRoomInject() {
        if(window.CFG == null) {
            // Backup config initialization
            var CFG = {
                // ... (default configuration settings)
            };
            window.CFG = CFG;
        }
    }

    This update significantly improves the script's robustness and user experience. Users should notice improved stability and consistent behavior across different environments.

  • v2.1.2 26. 07. 2024

    Differences are:

    Block 1:
    javascriptCopy519 }
    521 if (err_out == 50) {
    522 clearInterval(CTS.ScriptLoading);

    Block 2:
    javascriptCopy520 }
    521 if (err_out == 50) {
    522 clearInterval(CTS.ScriptLoading);
    523- clearInterval(CTS.FullLoad);
    524 }



    The additional clearInterval(CTS.FullLoad); Block 2's version of the code is clearing an additional interval timer. This has been modified to handle an extra process.

    Block 2 extends the functionality by clearing CTS.FullLoad.

  • v2.1.1 25. 07. 2024
  • v2.1 25. 07. 2024
  • v2.1 25. 07. 2024
  • v2.0 25. 07. 2024
  • v2.0 25. 07. 2024
  • v2.0 25. 07. 2024
  • v1.8.55 24. 07. 2024

Zobrazit všechny verze skriptu