0 of 0

File information

Last updated

Original upload

Created by

BasedBebs

Uploaded by

BasedBebs

Virus scan

Safe to use

Tags for this mod

15 comments

  1. Padaria2011
    Padaria2011
    • supporter
    • 16 kudos
    Would it be possible for you to make a version for the Plasma Rifle and the Q-35 so that they only use 1 cell?
  2. youmgsammiche
    youmgsammiche
    • member
    • 0 kudos
    Did this buff the damage of the weapon? I can't tell if it did, or if it just keeps doing so much better cause I'm using better ammo. Either way, really like this, always wished the Survivalist's rifle used a better ammo type
    1. BasedBebs
      BasedBebs
      • member
      • 6 kudos
      Didn't change the base damage of the rifle, though using .308 AP, HP, & JSP will affect the DPS, thanks for the download! 
  3. alan893
    alan893
    • member
    • 3 kudos
    You don't know how to implement an ini I presume? Well im'a help you out. Here's how to check what number an ini setting is: https://geckwiki.com/index.php?title=GetINIFloat and an ini should be in config.

    Explanation for smoother brains below:
    Spoiler:  
    Show

    This may seem confusing to you 
    GetINIFloat keystring:string filename:stringKeystring is divided into :
    the first section is the, well INI section essentialy the [NameOfSection] and the second is the INI setting name

    Filename is more obvious
    it checks the path to the folder which ini is stored in and then the ini's name with the .ini (relative to config folder)

    so eg: command is GetINIFloat "Setting:fAmmoUseCheck" "MyFolder\MyFile.ini"
    The ini in this case looks like this[Setting]
    fAmmoUseCheck=1
    This will return 1


    and it's location (relative to Config (essentialy checking from the config folder)) MyFolder\MyFile.ini
    the MyFolder should be replaced with the name of your mods INI folder and then the ini's file name

    so the code could be combined into a single file which the codes looks like thisSetWeaponAmmo AmmoList308 NVDLC02WeapServiceRifleUnique

    ;If basically checks if an condition is true hence the name
    ;Presuming it is. It does the chunk which ends at Endif.
    ;Otherwise it does not do that if chunk

    If GetINIFloat "Setting:fAmmoUseCheck" "MyFolder\MyFile.ini" == 0
    SetWeaponClipRounds 10 NVDLC02WeapServiceRifleUnique
    Endif

    If GetINIFloat "Setting:fAmmoUseCheck" "MyFolder\MyFile.ini" == 1
    SetWeaponClipRounds 15 NVDLC02WeapServiceRifleUnique
    Endif

    If GetINIFloat "Setting:fAmmoUseCheck" "MyFolder\MyFile.ini" == 2
    SetWeaponClipRounds 20 NVDLC02WeapServiceRifleUnique
    Endif
    NOTE: 
    is read as EQUALS TO:
    =
    is read as IS EQUAL TO:
    ==

    this ini thing could cut this mod into a single file with all the functionality
    1. BasedBebs
      BasedBebs
      • member
      • 6 kudos
      I had to use 110% of my brain power to figure this out but I finally understand enough of it to get it working. Mind if I upload a version using your code? You'll be credited ofc
    2. alan893
      alan893
      • member
      • 3 kudos
      Of course pal. Whatever you think is best.
      Sorry, was watching a meme compilation
    3. BasedBebs
      BasedBebs
      • member
      • 6 kudos
      TYSM ❤️ My brain is now very wrinkled and definitely not smooth at all
    4. fsafsdafe
      fsafsdafe
      • member
      • 3 kudos
      so nvse functions work with jip?
    5. alan893
      alan893
      • member
      • 3 kudos
      They all do from personal experience or atleast most do. Also as second evidence BasedBebs stated he got it working.
    6. fsafsdafe
      fsafsdafe
      • member
      • 3 kudos
      ok
  4. fsafsdafe
    fsafsdafe
    • member
    • 3 kudos
    espless right?
    1. BasedBebs
      BasedBebs
      • member
      • 6 kudos
      It is now 👀
    2. fsafsdafe
      fsafsdafe
      • member
      • 3 kudos
      Didn't say to make it espless but okay
  5. kazbar37
    kazbar37
    • member
    • 1 kudos
    yesterday I was just moding this gun to day I find the final solution
    thank you!
  6. B4llsAndB4y0n3ts
    B4llsAndB4y0n3ts
    • member
    • 19 kudos
    This has always made way more sense to me: that the Survivalist's Rifle is basically an AR-10, rather than a Beowulf AR-15.