imlvl127
10-01-2008, 09:52 PM
Ok, So when I auto I like to watch movies on my pc. The problem is runescape's sound. I can't seem to get rid of it for good. When I set all of the option to off when I log in, when scar logs off and then back in the music starts all over again. No matter what options I set I always end up hearing that fruity B.S music.
Is their anyway I can permanently mute it? Is their a program I can download that will do this?
noidea
10-01-2008, 09:57 PM
Yes, there are programs,but in your script you could put
SetAudio(0,0,0,'mono');
Thats SRL's one, but it never works for me. It just opens it and closes it.
Here's mine if SRL's does not work for you.
Function noidea_Set_Sound(Music, Bass, Treb, Speaker : String) : Boolean;
begin
if not loggedin then exit;
GameTab(11);
MouseBox(632,232,658,266,1)
repeat
wait(200)
until(GetColor(250,53)=2070753)
Wait(200+random(200))
case Music of
'0': MouseBox(190,114,203,124,1);
'1': MouseBox(218,116,231,125,1);
'3': MouseBox(272,115,286,125,1);
'2': MouseBox(274,116,258,126,1);
'4': MouseBox(305,115,314,125,1);
end;
Wait(200+random(200))
Case Bass of
'0': MouseBox(190,114+55,203,124+55,1);
'1': MouseBox(218,116+55,231,125+55,1);
'3': MouseBox(272,115+55,286,125+55,1);
'2': MouseBox(274,116+55,258,126+55,1);
'4': MouseBox(305,115+55,314,125+55,1);
end;
Wait(200+random(200))
Case Treb of
'0': MouseBox(190,114+114,203,124+114,1);
'1': MouseBox(218,116+114,231,125+114,1);
'3': MouseBox(272,115+114,286,125+114,1);
'2': MouseBox(274,116+114,258,126+114,1);
'4': MouseBox(305,115+114,314,125+114,1);
end;
Case Speaker of
'Mono': MouseBox(230,262,244,273,1);
'Stereo': MouseBox(297,262,312,273,1);
end;
wait(100+random(100))
MouseBox(322,48,332,60,1);
wait(500+random(500));
end;
Just use like, noidea_Set_Sound('0','0','0','Mono'); every time your character logs in.
Hope I helped.
Shuttleu
10-01-2008, 10:21 PM
if your using vista then right click on the little speaker icon in the bottom right (next to the time) and choose open volume mixer then mute the program from there :)
~shut
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.