Jump to content

Lafy BAR

BAR
  • Posts

    505
  • Joined

  • Last visited

Community Answers

  1. Lafy BAR's post in Resolved - Networking my house was marked as the answer   
    The boards are an old security panel and a telephone line splitter, he and I talked about it and he's just going to buy a new switch and disconnect all that junk.  I think it's all resolved.
  2. Lafy BAR's post in Resolved - i need some help on enabling, disabling a script was marked as the answer   
    I'm not entirely sure what you mean by enabling and disabling a script. If you want to change settings and then change them back, you could make two files, that that has the "on" settings and one with the "off" settings. disabling a setting doesn't really mean anything to me. Here's a sample that would switch your mouse sensitivity between 12 and 2. all the files go in your dods/cfg folder.
    on.cfg

    sensitivity 12
    off.cfg

    sensitivity 2
    in your autoexec.cfg you would add 1 of the following options
    on and off buttons

    // k to enable, j to disable
    bind "k" "exec on.cfg"
    bind "j" "exec off.cfg"
    you can also have 1 button toggle

    // k to toggle
    bind "k" "cfgon"
    alias "cfgon" "exec on.cfg;bind k cfgoff"
    alias "cfgoff" "exec off.cfg bind k cfgon"
    or you can hold a button

    // hold k
    bind k "+cfghold"
    alias "+cfghold" "exec on.cfg"
    alias "-cfghold" "exec off.cfg"
    I haven't tested any of these, but they should work.
  3. Lafy BAR's post in Resolved - Skins both weps an mini maps was marked as the answer   
    I believe each minimap requires 3 files
    dod/custom/any_folder/resource/overviews/map_name.txt
    dod/custom/any_folder/materials/overviews/map_name.vmt
    dod/custom/any_folder/materials/overviews/map_name.vtf
    Are do you have all 3 files in the right locations?
    I don't use custom weapon skins/models, but you should be creating files in these folders
    .vmt and .vtf files in
    dod/custom/any_folder/materials/models/v_models/weapon_name/
    dod/custom/any_folder/materials/models/w_models/weapon_name/
    .vtx, .mdl, .phy, .vvd in
    dod/custom/any_folder/models/weapons
    .wav in
    dod/custom/any_folder/sound/weapons
    and possibly some .vtf files in
    dod/custom/any_folder/materials/sprites/scopes if it's a sniper riffle.
    Obviously whatever you're downloading should already have the whole folder structure and you should just be extracting it into dod/custom/any_folder/ maybe your download already has the custom folder and you're accidentally putting the files into dod/custom/any_folder/custom/folder_from_zip or dod/custom/any_folder/folder_from_zip
×
×
  • Create New...