Hlamp

twoflowtwoflow Singing Drunk Join Date: 2002-11-01 Member: 1950Members, Constellation
<div class="IPBDescription">How do you get it working in NS?</div> I'm pretty new to Half Life mods, and it seems that to get <a href='http://www.cscentral.com/disk2/hlamp/' target='_blank'>HLamp</a> working, I need to edit some config files. What do I do, exactly?

Thanks in advance.

Comments

  • IronShirtTomIronShirtTom Join Date: 2002-11-20 Member: 9412Members
    Allow me to introduce you to my friend, <a href='http://my.execpc.com/~zor/SneakyAmp/' target='_blank'>Sneaky Amp</a>.

    This plugin is infinitely better than HLamp because it works outside of Halflife. It just monitors your keyboard for set key patterns, (user-defined), and controls WinAMP that way. You can use Sneaky Amp from inside <b>any program</b>, and there's no chance it will be accidentally flagged by anti-cheat programs because it's not a Half-Life hook- just a WinAMP plugin.

    I orignally found it back when I played EverQuest, (which you can't Alt+Tab out of). Currently only works with WinAMP 2, but HLamp also has problems with WinAMP 3, apparently.

    <!--QuoteBegin--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> </td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->winamp add Wrecks N Effect"" winamp play""<!--QuoteEnd--></td></tr></table><span class='postcolor'><!--QuoteEEnd-->

    All I wanna do is zooma zoom zoom zoom anda BOOM BOOM! Just shake ya rump! <!--emo&:p--><img src='http://www.unknownworlds.com/forums/html/emoticons/tounge.gif' border='0' valign='absmiddle' alt='tounge.gif'><!--endemo-->
  • FireStormFireStorm Join Date: 2002-11-06 Member: 7390Members
    buy a multimedia keyboard, it just rocks <!--emo&:)--><img src='http://www.unknownworlds.com/forums/html/emoticons/smile.gif' border='0' valign='absmiddle' alt='smile.gif'><!--endemo-->
  • twoflowtwoflow Singing Drunk Join Date: 2002-11-01 Member: 1950Members, Constellation
    Sneaky Amp works perfectly, thanks for your help.
  • twoflowtwoflow Singing Drunk Join Date: 2002-11-01 Member: 1950Members, Constellation
    Sorry, but Sneaky Amp just ended up eating my system resources. Does anyone else know of a good MP3 plugin, or how to get HLamp working?
  • twoflowtwoflow Singing Drunk Join Date: 2002-11-01 Member: 1950Members, Constellation
  • TalesinTalesin Our own little well of hate Join Date: 2002-11-08 Member: 7710NS1 Playtester, Forum Moderators
    I've gotten it working no problem.. here's the contents of my WAcontrol.cfg file. Make one yourself, toss it in \ns, and 'exec WAcontrol.cfg' when you get into the game.
    Controls are as follows:
    <b>KP 0 = Previous Track
    KP . = Next Track
    KP 1 = Play
    KP 2 = Pause
    KP 3 = Stop
    KP 4 = Toggle Shuffle play-mode
    KP 5 = Echo current track name
    KP 6 = Toggle Repeat play-mode
    UP ARROW = Volume increase
    DOWN ARROW = Volume decrease
    RIGHT ARROW = Fast Forward
    LEFT ARROW = Rewind</b>
    (Note: Binds assume you are not using the keypad for anything, nor the arrow keys)

    WAcontrol.cfg -------VVV------- WAcontrol.cfg

    bind "kp_5" "exec HLamp.cfg; wait; HLamp_EchoDisplayName"

    bind "kp_ins" "HLamp PreviousTrack"

    bind "kp_del" "HLamp NextTrack"

    alias play1 "HLamp play; developer 1; echo *PLAY*; developer 0"
    bind "kp_end" "play1"

    alias pause1 "developer 1; echo *PAUSE*; developer 0; HLamp Pause"
    bind "kp_downarrow" "pause1"

    alias stop1 "; developer 1; echo *STOP*; developer 0; HLamp Stop"
    bind "kp_pgdn" "stop1"


    alias forward "HLamp FastForward 15; wait; developer 1; echo *FAST FORWARD*; developer 0"
    bind "rightarrow" "forward"

    alias rewind "HLamp FastRewind 15; wait; developer 1; echo *REWIND*; developer 0"
    bind "leftarrow" "rewind"

    alias repeattoggle "repeaton"
    alias repeaton "alias repeattoggle repeatoff; HLamp ToggleRepeat 1; developer 1; echo Repeat On; developer 0"
    alias repeatoff "alias repeattoggle repeaton; HLamp ToggleRepeat 0; developer 1; echo Repeat Off; developer 0"
    bind "kp_rightarrow" "repeattoggle"

    alias shuffletoggle "shuffleon"
    alias shuffleon "alias shuffletoggle shuffleoff; HLamp ToggleShuffle 1; developer 1; echo Shuffle On; developer 0"
    alias shuffleoff "alias shuffletoggle shuffleon; HLamp ToggleShuffle 0; developer 1; echo Shuffle Off; developer 0"
    bind "kp_leftarrow" "shuffletoggle"

    alias soundtoggleup "sound1"
    alias "sound1" "alias soundtoggleup sound1; alias soundtoggledown sound2a; HLamp SetVolume 255; developer 1; echo VOLUME: 100%; developer 0"
    alias "sound2" "alias soundtoggleup sound1; alias soundtoggledown sound3a; HLamp SetVolume 192; developer 1; echo VOLUME: 75%; developer 0"
    alias "sound3" "alias soundtoggleup sound2; alias soundtoggledown sound4a; HLamp SetVolume 128; developer 1; echo VOLUME: 50%; developer 0"
    alias "sound4" "alias soundtoggleup sound3; alias soundtoggledown sound5a; HLamp SetVolume 64; developer 1; echo VOLUME: 25%; developer 0"
    alias "sound5" "alias soundtoggleup sound4; alias soundtoggledown mutea; HLamp SetVolume 25; developer 1; echo VOLUME: 10%; developer 0"
    alias "mute" "alias soundtoggleup sound5; alias soundtoggledown sound1a; HLamp SetVolume 0; developer 1; echo MUTE; developer 0"
    bind "uparrow" "soundtoggleup"

    alias soundtoggledown "sound1a"
    alias "sound1a" "alias soundtoggledown sound2a; alias soundtoggleup sound1; HLamp SetVolume 255; developer 1; echo VOLUME: 100%; developer 0"
    alias "sound2a" "alias soundtoggledown sound3a; alias soundtoggleup sound1; HLamp SetVolume 192; developer 1; echo VOLUME: 75%; developer 0"
    alias "sound3a" "alias soundtoggledown sound4a; alias soundtoggleup sound2; HLamp SetVolume 128; developer 1; echo VOLUME: 50%; developer 0"
    alias "sound4a" "alias soundtoggledown sound5a; alias soundtoggleup sound3; HLamp SetVolume 64; developer 1; echo VOLUME: 25%; developer 0"
    alias "sound5a" "alias soundtoggledown mutea; alias soundtoggleup sound4; HLamp SetVolume 25; developer 1; echo VOLUME: 10%; developer 0"
    alias "mutea" "alias soundtoggledown mutea; alias soundtoggleup sound5;HLamp SetVolume 0; developer 1; echo MUTE; developer 0"
    bind "downarrow" "soundtoggledown"

    WAcontrol.cfg ------------^^^-------------- WAcontrol.cfg
  • twoflowtwoflow Singing Drunk Join Date: 2002-11-01 Member: 1950Members, Constellation
    Awesome, thanks a lot Talesin.
Sign In or Register to comment.