Jump to content

Copy of a concealed carry weapon (GECK)


yuriyuser

Recommended Posts

I created a copy of the weapon in geck with my own characteristics, tried to make it concealed, but it didn't work out. In GECK, I found something similar to this list of hidden weapons "TheProfessionalWeaponsList". Added to this list, but alas, the weapon did not become stealthy. I'll tell you right away that I copied a concealed weapon.

Where is the list of concealed weapons in GECK and what is it called?

 

 

Безымянный123.png

Edited by yuriyuser
Link to comment
Share on other sites

If by "stealthy" and "concealed" you mean weapons that you can sneak into casinos, there are two lists, NVHoldoutWeapons and NVImprovedHoldoutWeapons.

Do not edit the form lists directly. That will break compatibility with any other mod that edits the form lists. Instead, use a quest with a quest script to add your weapon to the lists.

The quest can just be a placeholder quest. It doesn't need to have anything in it other than the quest script. Make sure to check the box so that the quest starts the game enabled.

This is the quest script from a mod I made for my own use. It adds several weapons to the form lists.

scn zzMongoWeaponsModQuestScript

int MongoWeapModStartupDone

begin GameMode
    if MongoWeapModStartupDone != 1
        AddFormToFormList NVHoldoutWeapons zzCompact9mmPistol
        AddFormToFormList NVImprovedHoldoutWeapons zzCompact9mmPistol
        AddFormToFormList NVHoldoutWeapons zzWeap22Revolver
        AddFormToFormList NVImprovedHoldoutWeapons zzWeap22Revolver
        AddFormToFormList NVHoldoutWeapons zz38Revolver
        AddFormToFormList NVImprovedHoldoutWeapons zz38Revolver
        AddFormToFormList NVHoldoutWeapons zzWeapFN1905
        AddFormToFormList NVImprovedHoldoutWeapons zzWeapFN1905

        set MongoWeapModStartupDone to 1

        StopQuest zzMongoWeaponsModQuest
    endif
end

  • Like 1
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...