Results 1 to 4 of 4

Thread: SMART Client By Default plays startup music

  1. #1
    Join Date
    Feb 2013
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    42 Post(s)

    Default SMART Client By Default plays startup music

    How do you change it from blaring the old log-in screen music? I'm not sure if there is some sort of settings within a Jagex folder to set this, or if I can set it inside SMART - but I'm tired of clicking a script to run and it playing across my entire house with my speaker system. :|
    Yes, I am from HackForums/BlackHatWorld/Fileice.

  2. #2
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    In the windows sound settings you can mute SMART

  3. #3
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Simba Code:
    (*
    SetAudioOff
    ~~~~~~~~~~~

    .. code-block:: pascal

        function SetAudioOff(): boolean;

    Turns offs the music on the login screen.
    Should default turn off, upon loading old school RS.

    .. note::

        by Ashaman88/Le Jingle

    Example:

    .. code-block:: pascal

        SetAudioOff;

    *)


    function SetAudioOff(): boolean;
    var
      c : integer;
    begin
      c := CountColor(65536, 725, 463, 760, 498);
      // 346 = Turned Off Already
      // 284 = Turned On...

      result := inrange(c, 340, 350);
      if result then
        exit
      else
        Mouse(742, 481, 10, 10, mouse_left);
    end;

    Just call
    Simba Code:
    SetAudioOff;
    after you have
    Simba Code:
    SetupSRL;

    Forum account issues? Please send me a PM

  4. #4
    Join Date
    Feb 2013
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    42 Post(s)

    Default

    Thanks guys, it worked!

    Now I don't have to play the glorious music. My keyboard's toggle switch for audio on and off is broken, and so is the volume settings - what an annoyance. xD
    Yes, I am from HackForums/BlackHatWorld/Fileice.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •